![]() |
Mount, READ and WRITE reiserfs and ext3 partitions
I have been unsuccessful in getting fstab to load, amd make the other linux partitions writable.
The closest reference I could get to what I needed to do was here http://www.tuxfiles.org/linuxhelp/fstab.html but would prefer some specific instructions on getting my hda6 reiserfs and hda7 ext3 partions writable. Cuurent fstab looka like this for hda6 and hda7: Code:
/dev/hda6 /media/hda6 reiserfs defaults 0 2 Can anyone help? many thanks Smiley |
If you look at your mount points you'll probably see ownership of root:root and permissions of drwxrwxr-x. Changing the ownership/permissions of the mount points before mounting won't work because when you mount the partitions, ownership will revert to root. The easiest way to make directories writable on the partitions is to change the ownership/permissions of the mount points or their top level directories after they are mounted.
For example, after mounting try the following, using a user:group from your system: Code:
chown -R smiley:users /media/hda6 |
sorry how do I check the ownership/permissions structure on those drives? I can them post this here and we ca take it from there?
Thanks Steve, |
Open a terminal window and type ls -ld /media/hda6 /media/hda7 - that should do it. The other commands are also for a terminal window.
|
Let's start with the hda6 drive reiserfs ofrmat (I have ext3 on another machine so am unable to chekc that right now)Here is the output. Thanks
Code:
drwxr-xr-x 23 root root 688 2006-03-30 12:19 /media/hda6 Smiley |
Sorry, I should have shown that as ls -lR /media/hda6 /media/hda7 | more to display all of the files. Because the entries are in /etc/fstab the file systems should already be mounted. If that's the case, the ls command should show the info.
|
the | more option creates heaps of output, which part of the output shoudl I show you? Sorry, I am being very slow here?
|
No problem - what I'm doing is trying to find out whether there is just one owner of the files on those partitions or whether there are many owners. If the file listings are showing the owner as root:root for everything then it's a reasonably simple situation.
Since your mount point is under media, I'm assuming that those are data files (documents, music, video etc.) and not system files (executables, libraries, etc.) so it won't be a problem to change the ownership to a user:group of your choosing. If they are system files (for another Linux distribution for example) DON'T DO THE FOLLOWING. If the files are data files, you can run the chown and chmod commands from earlier. It's a one-off step that won't need to be repeated. Just make sure you use a user/group that exists on your system: Code:
chown -R smiley:users /media/hda6 - If the files are not data files and in fact belong to another Linux system, changing ownership/permissions can break the normal operation of that system and is very bad; - If there are multiple owners of files (e.g. you own one directory, a friend owns another and the person who sold you the PC owns a third directory), that separation of ownership is lost and everything is owned by one person. This is inconvenient but only a "little" bad in the scheme of things :) |
Thanks, I am afraid they are system files (another linux OS), so I guess i am stuffed?? Can we not specify which directory on the partition say /home/smiley, ?
thanks, |
Yep, you can certainly do that - if you use something like:
Code:
chown -R smiley:users /media/hda6/home/smiley |
ok, I will give it a tryright now, and report back asap
|
Code:
chown: `smiley:users': invalid user |
You'll need to run the command as root - possibly it doesn't like the ':users' part (although it shouldn't matter). Although you've probably done this, can you confirm the username with grep smiley /etc/passwd and then try:
Code:
chown -R smiley /media/hda6/home/smiley |
Code:
$ sudo chown -R smiley /media/hda6/home/smiley |
It looks like a typo and that smiley doesn't exist in /etc/fstab. The way to confirm it is to combine the check for the username with the chown statement. If smiley exists in /etc/passwd the following will work:
Code:
chown -Rc $(grep smiley /etc/passwd | cut -d: -f1) /media/hda6/home/smiley |
Here is the next error:
Code:
$ sudo chown -Rc $(grep smiley /etc/passwd | cut -d: -f1) /media/hda6/home/smiley |
That's because the grep is not returning anything from /etc/passwd. Sorry, I should have left a fallback choice. The following changes the ownership to root if smiley isn't found:
Code:
ZUSER=$(grep -E '^smiley' /etc/passwd | cut -d: -f1); sudo chown -Rc ${ZUSER:=root} /media/hda6/home/smiley |
Code:
.....<whole lot of output with similar text>... Thanks, Smiley |
What it did was change the ownership to root because the smiley user does not exist in /etc/passwd - most likely the spelling is wrong. Once you have the same spelling for smiley as is used in /etc/passwd the command will change the ownership of the files under /media/hda6/home/smiley to smiley.
|
Ok, I have tried
$sudo chown -R smiley:users /media/hda6 and I am getting the same invalid user error. ALSO, note, that I tried logging into the partition hda6 (ubuntu breezy) with username 'smiley', and I was told that the /.<filename> have chnaged permission to root and I can't save sessions; will aloow me to log in for 10secs; and then logged me out. Am I royally screewed now? or can we revert to the previous permissions to allow smiley access to the drive? Alternatively, I may have to create a NEW user for that Breezy partition??? Please help. |
Please read what I posted earlier, you will not be able to chown to smiley until that user exists and has an entry in /etc/passwd. If that user should already exist then the spelling is wrong or chown would not give the invalid user error. Once the correct spelling is used, the chown command will work.
Is this a multi-boot system and hda6 contains the home partition for another distro? If so, you're not screwed - just boot that distro, login as root and chown back to whichever user should own the files. Is that the distro where the smiley user exists? If so, user accounts are not automatically created for the other distros and this may explain why you're getting the invalid user error for smiley - have you created the user smiley in the distro where your running the chown command? |
Steve
This is very helpful. Yes, I have created a suer by the name "smiley" and I am sure there is no spelling error. Smiley is a user on the hda6 Ubuntu Breezy, so yes, it is another distro. I will follow your instructions to reset the o/p back to smiley. Thanks, smiley |
All times are GMT -5. The time now is 01:37 AM. |