Go Back   Dallas Cowboys Forum - CowboysZone.com > Main Forums > Off-topic Zone

Cowboys Chat: 0 user(s) online


Home  |  Fan Zone  |  News Zone  |  Draft Zone  |  Off-topic Zone  |  Forum Rules  |  Chat  |  ** Change Graphics **

Reply
 
Display Modes Thread Tools
Old 01-19-2013   #1
jobberone
Save the Snow Leopard
 
jobberone's Avatar
Years Donated
2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013
 
Joined:
Apr 2004
Location:
US
Posts:
26,085
Default Need help with Mac terminal

Installed two SATA drives in enclosure connected via firewire to iMac. Will only read. Want to share drives with Windows based so formatted NTFS. Have tried a downloaded utility that's supposed to make them RW but doesn't work. Running Mountain Lion BTW.

In terminal now and typed sudo nano /etc/fstab to get to editor.

Have written in editor
UUID=C440781A-40A9-ACC4-60C4-ACD2ECACD2E4 none ntfs rw
UUID=7866522B-6663-4678-8778-46DA8C46DA86 none ntfs rw

I don't know how to write and save this then exit to restart machine. What do I do from here? Thanks.
Did you know there are only 5000 Snow Leopards in the wild now and they are confined to Central Asia? However, the effective global population (those likely to reproduce) is less than half that number.
jobberone is online now   Reply With Quote

Old 01-19-2013   #2
viman96
Thread Killer
 
viman96's Avatar
 
Joined:
Apr 2004
Posts:
5,411
Default

Quote:
Originally Posted by jobberone View Post
Installed two SATA drives in enclosure connected via firewire to iMac. Will only read. Want to share drives with Windows based so formatted NTFS. Have tried a downloaded utility that's supposed to make them RW but doesn't work. Running Mountain Lion BTW.

In terminal now and typed sudo nano /etc/fstab to get to editor.

Have written in editor
UUID=C440781A-40A9-ACC4-60C4-ACD2ECACD2E4 none ntfs rw
UUID=7866522B-6663-4678-8778-46DA8C46DA86 none ntfs rw

I don't know how to write and save this then exit to restart machine. What do I do from here? Thanks.
You want to write the below into /etc/fstab correct?

UUID=C440781A-40A9-ACC4-60C4-ACD2ECACD2E4 none ntfs rw
UUID=7866522B-6663-4678-8778-46DA8C46DA86 none ntfs rw

1. Make a backup copy of fstab (filesystem tab)
sudo cp /etc/fstab /etc/fstab-20130119

2. I am assuming you do not know VI. So use echo to update the file.

sudo echo "UUID=C440781A-40A9-ACC4-60C4-ACD2ECACD2E4 none ntfs rw" >> /etc/fstab
sudo echo "UUID=7866522B-6663-4678-8778-46DA8C46DA86 none ntfs rw" >> /etc/fstab

3. Check the file for the updates.

sudo cat /etc/fstab
viman96 is offline   Reply With Quote
Old 01-19-2013   #3
Kilyin
Senior Member
 
Kilyin's Avatar
Years Donated
2008, 2009, 2010, 2011, 2012
 
Joined:
May 2005
Location:
Chesterfield, VA
Posts:
7,937
Default

Quote:
Originally Posted by jobberone View Post
Installed two SATA drives in enclosure connected via firewire to iMac. Will only read. Want to share drives with Windows based so formatted NTFS. Have tried a downloaded utility that's supposed to make them RW but doesn't work. Running Mountain Lion BTW.

In terminal now and typed sudo nano /etc/fstab to get to editor.

Have written in editor
UUID=C440781A-40A9-ACC4-60C4-ACD2ECACD2E4 none ntfs rw
UUID=7866522B-6663-4678-8778-46DA8C46DA86 none ntfs rw

I don't know how to write and save this then exit to restart machine. What do I do from here? Thanks.
vi / vim always begins in command mode. You can press [Esc] key anytime to return to command mode. Press i to insert text. To save and exit from vi / vim, press [Esc] key and type ZZ
"I just kind of stopped in the middle of a route, which is the worst thing you can do," Ogletree said. "He just told me, 'What were you thinking?' I kind of mumbled something to him and he was like, 'You're stupid.' "

"If we can get the running game going early, that'll open up the passing game for Troy." - Jerry Jones, 11/12/12
Kilyin is online now   Reply With Quote
Old 01-19-2013   #4
viman96
Thread Killer
 
viman96's Avatar
 
Joined:
Apr 2004
Posts:
5,411
Default

If you are in a vi session then do this:

hit esc key
shift :
wq!
viman96 is offline   Reply With Quote
Old 01-19-2013   #5
jobberone
Save the Snow Leopard
 
jobberone's Avatar
Years Donated
2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013
 
Joined:
Apr 2004
Location:
US
Posts:
26,085
Default

Quote:
Originally Posted by viman96 View Post
You want to write the below into /etc/fstab correct?

UUID=C440781A-40A9-ACC4-60C4-ACD2ECACD2E4 none ntfs rw
UUID=7866522B-6663-4678-8778-46DA8C46DA86 none ntfs rw

1. Make a backup copy of fstab (filesystem tab)
sudo cp /etc/fstab /etc/fstab-20130119

2. I am assuming you do not know VI. So use echo to update the file.

sudo echo "UUID=C440781A-40A9-ACC4-60C4-ACD2ECACD2E4 none ntfs rw" >> /etc/fstab
sudo echo "UUID=7866522B-6663-4678-8778-46DA8C46DA86 none ntfs rw" >> /etc/fstab

3. Check the file for the updates.

sudo cat /etc/fstab
It will not give me permission to write that. I copied and pasted the above into terminal. I also tried doing it one at a time. I hate this ****.
Did you know there are only 5000 Snow Leopards in the wild now and they are confined to Central Asia? However, the effective global population (those likely to reproduce) is less than half that number.
jobberone is online now   Reply With Quote
Old 01-19-2013   #6
jobberone
Save the Snow Leopard
 
jobberone's Avatar
Years Donated
2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013
 
Joined:
Apr 2004
Location:
US
Posts:
26,085
Default

I am the administrator on the computer BTW but I know nothing.
Did you know there are only 5000 Snow Leopards in the wild now and they are confined to Central Asia? However, the effective global population (those likely to reproduce) is less than half that number.
jobberone is online now   Reply With Quote
Old 01-19-2013   #7
jobberone
Save the Snow Leopard
 
jobberone's Avatar
Years Donated
2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013
 
Joined:
Apr 2004
Location:
US
Posts:
26,085
Default

I don't have the slightest idea what the heck you guys are talking about.
Did you know there are only 5000 Snow Leopards in the wild now and they are confined to Central Asia? However, the effective global population (those likely to reproduce) is less than half that number.
jobberone is online now   Reply With Quote
Old 01-19-2013   #8
Kilyin
Senior Member
 
Kilyin's Avatar
Years Donated
2008, 2009, 2010, 2011, 2012
 
Joined:
May 2005
Location:
Chesterfield, VA
Posts:
7,937
Default

Quote:
Originally Posted by jobberone View Post
It will not give me permission to write that. I copied and pasted the above into terminal. I also tried doing it one at a time. I hate this ****.
Try apple key-o or ctrl-o to save.

I don't remember if Apple has a ctrl key.
"I just kind of stopped in the middle of a route, which is the worst thing you can do," Ogletree said. "He just told me, 'What were you thinking?' I kind of mumbled something to him and he was like, 'You're stupid.' "

"If we can get the running game going early, that'll open up the passing game for Troy." - Jerry Jones, 11/12/12
Kilyin is online now   Reply With Quote
Old 01-19-2013   #9
viman96
Thread Killer
 
viman96's Avatar
 
Joined:
Apr 2004
Posts:
5,411
Default

Using vi is not easy if you have never used it. Just type the keys in exact sequence we mentioned and you will be good.
viman96 is offline   Reply With Quote
Old 01-19-2013   #10
Kilyin
Senior Member
 
Kilyin's Avatar
Years Donated
2008, 2009, 2010, 2011, 2012
 
Joined:
May 2005
Location:
Chesterfield, VA
Posts:
7,937
Default

Quote:
Originally Posted by viman96 View Post
Using vi is not easy if you have never used it. Just type the keys in exact sequence we mentioned and you will be good.
if you do a sudo nano on a file though, I think it uses the Pico derivative text editor? I dunno, I've always hated linux text editors. They're so unnecessarily complicated and obtuse.

That's why I suggested ctrl-o.
"I just kind of stopped in the middle of a route, which is the worst thing you can do," Ogletree said. "He just told me, 'What were you thinking?' I kind of mumbled something to him and he was like, 'You're stupid.' "

"If we can get the running game going early, that'll open up the passing game for Troy." - Jerry Jones, 11/12/12
Kilyin is online now   Reply With Quote
Old 01-19-2013   #11
jobberone
Save the Snow Leopard
 
jobberone's Avatar
Years Donated
2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013
 
Joined:
Apr 2004
Location:
US
Posts:
26,085
Default

Quote:
Originally Posted by viman96 View Post
Using vi is not easy if you have never used it. Just type the keys in exact sequence we mentioned and you will be good.
It says permission denied.
Did you know there are only 5000 Snow Leopards in the wild now and they are confined to Central Asia? However, the effective global population (those likely to reproduce) is less than half that number.
jobberone is online now   Reply With Quote
Old 01-19-2013   #12
viman96
Thread Killer
 
viman96's Avatar
 
Joined:
Apr 2004
Posts:
5,411
Default

It definitely drops you in a different type of editor. I playing with it now to see how to use it.

jobber, give me a few minutes and will let you know what to do next.
viman96 is offline   Reply With Quote
Old 01-19-2013   #13
Kilyin
Senior Member
 
Kilyin's Avatar
Years Donated
2008, 2009, 2010, 2011, 2012
 
Joined:
May 2005
Location:
Chesterfield, VA
Posts:
7,937
Default

Quote:
Originally Posted by jobberone View Post
It says permission denied.
try doing a sudo vifs from the terminal

http://hints.macworld.com/comment.ph...iew&cid=128904
"I just kind of stopped in the middle of a route, which is the worst thing you can do," Ogletree said. "He just told me, 'What were you thinking?' I kind of mumbled something to him and he was like, 'You're stupid.' "

"If we can get the running game going early, that'll open up the passing game for Troy." - Jerry Jones, 11/12/12
Kilyin is online now   Reply With Quote
Old 01-19-2013   #14
viman96
Thread Killer
 
viman96's Avatar
 
Joined:
Apr 2004
Posts:
5,411
Default

OK first time using this editor but figured out how to save and exit.

Do you see ^X Exit at the bottom of your screen? Hit control+x keys. Then you should see Y yes and N no and ^C Cancel. Type Y to save and exit.
viman96 is offline   Reply With Quote
Old 01-19-2013   #15
jobberone
Save the Snow Leopard
 
jobberone's Avatar
Years Donated
2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013
 
Joined:
Apr 2004
Location:
US
Posts:
26,085
Default

Ok, thanks all. I figured out how to save and exit. I've done this twice and it still will not do anything but read the device when connected to my iMac.

I read some earlier and it stated there was a 'fix' when updating from earlier versions of Mountain Lion to 10.8.2 which I have. Now supposedly you can only read NTFS. If that is true then I'm going to be real pissed with Apple.
Did you know there are only 5000 Snow Leopards in the wild now and they are confined to Central Asia? However, the effective global population (those likely to reproduce) is less than half that number.
jobberone is online now   Reply With Quote

Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 10:51 AM.


Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
© 2004-2012 CowboysZone.com