LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
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


Reply
  Search this Thread
Old 06-20-2004, 06:45 AM   #1
LinuxDexx
LQ Newbie
 
Registered: Jun 2004
Location: Switzerland
Distribution: SuSE Pro 9.1
Posts: 7

Rep: Reputation: 0
Partitions


hi all !

i've got 2 hard drives, on the master device are my documents, sound etc...
on the slave drive is linux with his partitions... now i want to listen to
my sound which is on the master drive on a FAT32 partition, but my
suse linux doesnt see this partitions on my master drive ...
with file:/windows i should see these partitions, right?
what can i do?

sorry, my english is bad hope u all understand my problem

greetz
 
Old 06-20-2004, 07:17 AM   #2
a3Rogue
Member
 
Registered: Jun 2004
Location: Liverpool, UK
Distribution: Debian unstable
Posts: 56

Rep: Reputation: 15
You need to mount them and edit the fstab file i think, ud be better searching for 'mounting a fat32 partition' im sure its been covered on the forums several times already

Good luck
 
Old 06-20-2004, 07:18 AM   #3
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
you need to go through actually mounting the drives first before you can acces the data on them...

try this:

mount /dev/hda1 /windows

and IF hda1 contains data and IF /windows already exists, it should now be mounted. if you wish this to happen automatically, you'll need to make an entry in /etc/fstab:

Code:
/dev/hda1       /windows       vfat     defaults     0 0
 
Old 06-20-2004, 07:21 AM   #4
kbcnetau
Member
 
Registered: Dec 2003
Location: South Australia (ex-Devon, UK)
Distribution: SuSE, Slackware, Fedora, Debian, Knoppix
Posts: 141

Rep: Reputation: 15
Hi

It's possible that your Windows partition isn't mounted, bu there is something weird in 9.1 - there is no fstab entry for the Windows partition, neither does it show up using 'mount' as it used to in previous versions. But it is there!

If you use KDE, there should be a "My Compter" icon on the Desktop, under which you should find the Windows partition. See if you can access your files through this way rather than specifying the URI manually.

Cheers
 
Old 06-20-2004, 09:50 AM   #5
LinuxDexx
LQ Newbie
 
Registered: Jun 2004
Location: Switzerland
Distribution: SuSE Pro 9.1
Posts: 7

Original Poster
Rep: Reputation: 0
Yay, thank you guys it works!!

i mounted them with the partition tool in yast ...
now i see my folders /windows/e etc ...

they are also listed in /etc/fstab

greetz
 
Old 06-20-2004, 03:24 PM   #6
LinuxDexx
LQ Newbie
 
Registered: Jun 2004
Location: Switzerland
Distribution: SuSE Pro 9.1
Posts: 7

Original Poster
Rep: Reputation: 0
Unhappy

another problem ....

i can acces all data, thats great; but i dont can write on these drives

i mounted them on /home/username/data etc ......
i changed the ritghs with my root account; but it wont apply
only the user root can write; but i want that my user called deg also can write ...

you understand? *confused*

are there any german speaking people?
 
Old 06-20-2004, 03:54 PM   #7
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Read through the man page for the 'mount' command.
You can add a 'uid=<username>' option to the /etc/fstab entry. This will change the ownership of the fat32 partition.
If it were an ext3 partition, you would use the chown command on the mounted partition, however, since the fat32 system doesn't have the same permissions built into the filesystem, the owner and group permissions for the partition are located in the /etc/fstab.
 
Old 06-20-2004, 04:30 PM   #8
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
it'll be the umask= option that you want, probably umask=000
 
Old 06-20-2004, 07:05 PM   #9
John5788
Member
 
Registered: Feb 2004
Location: 127.0.0.1
Distribution: Gentoo
Posts: 129

Rep: Reputation: 16
maybe you need to add rw to ur fstab line. heres what my fstab looks like for my fat32 partition

Code:
/dev/hdd1               /shared         vfat            rw,user,umask=0,noatime 0 0
 
Old 06-21-2004, 03:18 PM   #10
LinuxDexx
LQ Newbie
 
Registered: Jun 2004
Location: Switzerland
Distribution: SuSE Pro 9.1
Posts: 7

Original Poster
Rep: Reputation: 0
sorry for this dumb question, but where can i edit the fstab file ?
what is the best way to edit it?
 
Old 06-21-2004, 04:02 PM   #11
boreo
Member
 
Registered: Feb 2003
Location: Dominican Republic
Distribution: Slackware, FreeBSD, RedHat
Posts: 326

Rep: Reputation: 30
Use any editor, Emacs, VI, whatever you want.
Example

$emacs /etc/fstab
 
Old 06-21-2004, 05:03 PM   #12
LinuxDexx
LQ Newbie
 
Registered: Jun 2004
Location: Switzerland
Distribution: SuSE Pro 9.1
Posts: 7

Original Poster
Rep: Reputation: 0
yes, yes, yes it works !!!

my /etc/fstab looks like this:

/dev/hda3 /home/deg/download vfat rw,uid=deg,umask=1000 0 0

should be correct i think; it works

thx guys for your support, great!!
 
  


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
/proc/partitions showing wrong partitions netstv Linux - General 1 07-10-2006 01:11 PM
How many partitions should I use? fishybawb Slackware - Installation 4 07-23-2004 02:53 AM
Create software RAID partitions first, then create filesystem partitions on top of th stefanlasiewski Linux - Software 1 04-28-2004 04:12 PM
Partitions twinkers Linux - General 26 08-24-2003 10:51 AM
How many partitions dark_light Linux - General 7 05-08-2002 04:37 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:55 PM.

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