Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
04-02-2006, 02:32 PM
|
#1
|
|
Member
Registered: Jan 2006
Location: NY
Distribution: Fedora 15 x64
Posts: 344
Rep:
|
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
/dev/hda7 /media/hda7 ext3 defaults 0 2
In both the cases I am able to read but not write. I am in ubuntu.
Can anyone help?
many thanks
Smiley
|
|
|
|
04-02-2006, 02:45 PM
|
#2
|
|
Senior Member
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 13.37
Posts: 4,084
Rep: 
|
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
chmod -R ug+w /media/hda6
I don't have a spare partition to test this at the moment - so back up first if you have a complicated ownership/permissions structure on those drives...
|
|
|
|
04-02-2006, 04:19 PM
|
#3
|
|
Member
Registered: Jan 2006
Location: NY
Distribution: Fedora 15 x64
Posts: 344
Original Poster
Rep:
|
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,
|
|
|
|
04-02-2006, 04:30 PM
|
#4
|
|
Senior Member
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 13.37
Posts: 4,084
Rep: 
|
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.
|
|
|
|
04-02-2006, 04:44 PM
|
#5
|
|
Member
Registered: Jan 2006
Location: NY
Distribution: Fedora 15 x64
Posts: 344
Original Poster
Rep:
|
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
Is this a complicated o/p structure? if not can I go ahead and try the code you gave me above? How do I make this happen each time aI boot, I am assuming I have to do this each time after I boot???? I may be wrong. Once again, many thanks,
Smiley
Last edited by smiley_lauf; 04-02-2006 at 04:48 PM.
|
|
|
|
04-02-2006, 06:13 PM
|
#6
|
|
Senior Member
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 13.37
Posts: 4,084
Rep: 
|
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.
|
|
|
|
04-02-2006, 06:32 PM
|
#7
|
|
Member
Registered: Jan 2006
Location: NY
Distribution: Fedora 15 x64
Posts: 344
Original Poster
Rep:
|
the | more option creates heaps of output, which part of the output shoudl I show you? Sorry, I am being very slow here?
|
|
|
|
04-02-2006, 06:58 PM
|
#8
|
|
Senior Member
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 13.37
Posts: 4,084
Rep: 
|
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
chmod -R ug+w /media/hda6
chown -R smiley:users /media/hda7
chmod -R ug+w /media/hda7
The risks here are:
- 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 
|
|
|
|
04-02-2006, 07:32 PM
|
#9
|
|
Member
Registered: Jan 2006
Location: NY
Distribution: Fedora 15 x64
Posts: 344
Original Poster
Rep:
|
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,
|
|
|
|
04-02-2006, 07:41 PM
|
#10
|
|
Senior Member
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 13.37
Posts: 4,084
Rep: 
|
Yep, you can certainly do that - if you use something like:
Code:
chown -R smiley:users /media/hda6/home/smiley
chmod -R ug+w /media/hda6/home/smiley
It should work just fine.
|
|
|
|
04-02-2006, 08:08 PM
|
#11
|
|
Member
Registered: Jan 2006
Location: NY
Distribution: Fedora 15 x64
Posts: 344
Original Poster
Rep:
|
ok, I will give it a tryright now, and report back asap
|
|
|
|
04-02-2006, 08:12 PM
|
#12
|
|
Member
Registered: Jan 2006
Location: NY
Distribution: Fedora 15 x64
Posts: 344
Original Poster
Rep:
|
Code:
chown: `smiley:users': invalid user
and I am sure of the spelling and case sensitivity. So what am I not doing right?
|
|
|
|
04-02-2006, 08:36 PM
|
#13
|
|
Senior Member
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 13.37
Posts: 4,084
Rep: 
|
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
|
|
|
|
04-02-2006, 08:56 PM
|
#14
|
|
Member
Registered: Jan 2006
Location: NY
Distribution: Fedora 15 x64
Posts: 344
Original Poster
Rep:
|
Code:
$ sudo chown -R smiley /media/hda6/home/smiley
chown: `smiley': invalid user
Sorry no luck.
|
|
|
|
04-02-2006, 09:43 PM
|
#15
|
|
Senior Member
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 13.37
Posts: 4,084
Rep: 
|
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
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 11:42 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|