LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-21-2003, 10:25 AM   #1
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Rep: Reputation: 30
Unhappy Filesystem Mounted Improperly?


I have NO idea what would have caused this! When I am looged in as root, I can see my mounted FAT32 Media partition and all of the files and directories just fine. When I am logged in as a user, all the directories show up as unknown files?



Here is my /etc/fstab file:
/dev/hda2 /boot ext3 noauto,noatime 1 1
/dev/hda3 / ext3 noatime 0 0
/dev/hda6 none swap sw 0 0
/dev/cdroms/cdrom0 /mnt/cdrom iso9660 noauto,ro 0 0
proc /proc proc defaults 0 0
/dev/hda1 /mnt/win98 vfat uid=500,gid=500,rw,auto 0 0
/dev/hda5 /mnt/media vfat uid=500,gid=500,rw,auto 0 0

Ideas?
 
Old 09-21-2003, 10:25 AM   #2
teval
Member
 
Registered: Jul 2003
Location: Toronto, Canada
Distribution: Gentoo
Posts: 720

Rep: Reputation: 30
/dev/hda1 /mnt/win98 vfat uid=500,gid=500,rw,auto 0 0
/dev/hda5 /mnt/media vfat uid=500,gid=500,rw,auto 0 0

Replace with

/dev/hda1 /mnt/win98 vfat rw,auto 0 0
/dev/hda5 /mnt/media vfat rw,auto 0 0

Try now
 
Old 09-21-2003, 10:37 AM   #3
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
No dice, still the same
 
Old 09-21-2003, 10:57 AM   #4
shanenin
Member
 
Registered: Aug 2003
Location: Rochester, MN, U.S.A
Distribution: Gentoo
Posts: 987

Rep: Reputation: 30
I think you have to run the command
#mount -a
after makong changes to /etc/fstab, or reboot
 
Old 09-21-2003, 11:04 AM   #5
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
I rebooted, changed were implemented. No dice. For good measure, I did it anyway, no dice.
 
Old 09-21-2003, 11:34 AM   #6
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
*whimper*

oh please, it has my perfectly-legal-ready-to-listen-to MP3's on it.....
 
Old 09-21-2003, 11:55 AM   #7
shanenin
Member
 
Registered: Aug 2003
Location: Rochester, MN, U.S.A
Distribution: Gentoo
Posts: 987

Rep: Reputation: 30
I would like to listen to "thin ice" by pink floyd now. But it is ripped using wma. So I need to get my mplayer working. BY the way nirvana kicks ass.
 
Old 09-21-2003, 12:24 PM   #8
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
Ummm.......wrong thread.......
 
Old 09-21-2003, 12:29 PM   #9
shanenin
Member
 
Registered: Aug 2003
Location: Rochester, MN, U.S.A
Distribution: Gentoo
Posts: 987

Rep: Reputation: 30
Sorry not tring to dilute your thread. You just mentioned not being able to access your music on your fat partiton, I was just relating to you I had a similar problem(not being able to play music from my fat partition). Nirvana kicks as was referring to your signature.
 
Old 09-21-2003, 12:37 PM   #10
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
ahhh, Nirvana does rule
 
Old 09-21-2003, 01:08 PM   #11
Skyline
Senior Member
 
Registered: Jun 2003
Distribution: Debian/other
Posts: 2,104

Rep: Reputation: 45
Try this:

/dev/hda5 /mnt/media vfat defaults,umask=000 0 0

if no luck try this:

/dev/hda5 /mnt/media vfat auto,rw,uid=500,umask=000 0 0
 
Old 09-21-2003, 01:11 PM   #12
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
I got it, the fstab paramaters are a little different in Gentoo.

I *did* have fstab setup like so:

/dev/hda5 /mnt/media vfat gid=500,uid=500,rw,auto 0 0

Now I've done it like so:

/dev/hda5 /mnt/media vfat gid=users,uid=bigun,rw,auto 0 0

Just a minor adjustment, thanks guys!

Last edited by Bigun; 09-21-2003 at 01:20 PM.
 
  


Reply



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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
mounted filesystem error.... Basslord1124 Linux - General 4 03-17-2005 01:29 PM
How to change permissions for Mounted Filesystem leroy27336 Linux - General 3 11-15-2003 03:08 AM
Changing ownership of mounted filesystem jhansman Red Hat 4 09-11-2003 12:38 AM
e2fsck on a mounted filesystem glock19 Linux - General 2 07-09-2003 07:12 PM
RH7.2-E2FSCK says Filesystem already mounted?!? AceKiller Linux - Newbie 4 05-08-2002 06:12 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 01:39 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration