Jun 10, 2005 #1 inq1 Technical User Apr 30, 2003 45 US I need to chnage the mode on the tape drive. Currently it is: crw-rw---- I want it to be: crw-rw-rw- Thank you
I need to chnage the mode on the tape drive. Currently it is: crw-rw---- I want it to be: crw-rw-rw- Thank you
Jun 10, 2005 #2 motoslide MIS Oct 30, 2002 764 US You can change the permissions with chmod in one of the following ways: # chmod 666 /dev/rStp0 # chmod o+rw /dev/rStp0 (This is assuming rStp0 to be your tape device. Modify as needed). Upvote 0 Downvote
You can change the permissions with chmod in one of the following ways: # chmod 666 /dev/rStp0 # chmod o+rw /dev/rStp0 (This is assuming rStp0 to be your tape device. Modify as needed).
Jun 10, 2005 Thread starter #3 inq1 Technical User Apr 30, 2003 45 US Thank you, that works. I just didn't know because it had the 'c' in front of it, hadn't done one like that before. Upvote 0 Downvote
Thank you, that works. I just didn't know because it had the 'c' in front of it, hadn't done one like that before.