Results 11 to 15 of 15
9.0....
I will try again tonight....but in the event it doesn't work...is there an alternative way I can do it?...
- 10-30-2003 #11Just Joined!
- Join Date
- Oct 2003
- Posts
- 37
9.0....
I will try again tonight....but in the event it doesn't work...is there an alternative way I can do it?
- 10-30-2003 #12Linux Engineer
- Join Date
- Mar 2003
- Location
- U.S.A.
- Posts
- 1,025
Also who are you logged in as? If a reg. user then try logging in as "root" with roots profile and give another whirl. i.e "su - " after logging in as a user.
Dan
\"Keep your friends close and your enemies even closer\" from The Art of War by Sun Tzu\"
- 10-31-2003 #13Who you callin' funny?
Originally Posted by Dfyant 
Dog with a Jerseyish accent.
Originally Posted by Dfyant
"Time is an illusion. Lunchtime, doubly so."
~Douglas Adams, The Hitchhiker's Guide to the Galaxy
- 11-01-2003 #14Just Joined!
- Join Date
- Oct 2003
- Posts
- 37
Ok, I got it!
Here's what I had to do:
in the /mnt dir I created a folder called hdb1 and hda5 (represents each hdd and/or partition) and then edited the fstab with the following entry:
/dev/hda5 /dev/hda5 vfat defaults 0 0
/dev/hdb1 /dev/hdb1 vfat defaults 0 0
then, in a terminal session, mount these two with this command:
mount -a /dev/hda5
mount -a /dev/hdb1
...and it works!
I have created a "New Launch" on my desktop to be able to access those drives easily!
Thanks for all your help!!
Chris
- 11-03-2003 #15Just Joined!
- Join Date
- Aug 2003
- Location
- Sydney, Australia
- Posts
- 52
Howdy Dfyant,
The -a switch will mount all drives of
type, which may not be always required.
man mount and man fstab will provide a
lot of usefull info on the topic, as
mount can take a number of switches as
can the lines in fstab, ie;
<dev> /home ext2 errors=remount-ro 0 2
Good for a fs to be mounted at boot on
the root fs.
<dev> /mnt/dosc vfat
users,exec,dev,rw,noauto 0 0
Also good for a manual mount as needed,
ie; mount -t vfat <dev> <mount>
or from my user accout...
mount /mnt/dosc
The 'users' cmd line para allows for
quick mounting by users, as long as
there's a mention in the fstab file.
The two man pages are well worth a read

jm


Reply With Quote
