Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux? |
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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
09-25-2004, 08:31 PM
|
#1
|
Member
Registered: Jul 2004
Location: New York, USA
Distribution: Fedora 2
Posts: 51
Rep:
|
Zip 250 USB Mount
I am fairly new to Linux and have tried different distro's but Suse 9.1 Pro seems to be the best for me. I do have one problem that I can't seem to figure out. My external Iomega Zip 250 (USB) is located in the hardware but I can not seem to write to it. I tried mounting it but must be doing something wrong. Could anyone help me out? My FSTAB file is as follows:
/dev/hdb2 / reiserfs acl,user_xattr 1 1
/dev/hda1 /windows/C ntfs ro,users,gid=users,umask=0002,nls=utf8 0 0
/dev/hdb1 swap swap pri=42 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
proc /proc proc defaults 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
sysfs /sys sysfs noauto 0 0
/dev/sda4 /media/zip auto noauto,user 0 0
/dev/cdrecorder /media/cdrecorder subfs fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
/dev/dvd /media/dvd subfs fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
/dev/fd0 /media/floppy subfs fs=floppyfss,procuid,nodev,nosuid,sync 0 0
Thanks,
Rick
|
|
|
09-25-2004, 08:37 PM
|
#2
|
Member
Registered: Sep 2003
Location: ky
Distribution: gentoo
Posts: 409
Rep:
|
change /dev/sda4 /media/zip auto noauto,user 0 0 to /dev/sda4 /media/zip vfat noauto,user 0 0
type mount is /media/zip mounted on /dev/sda4 if so type ls /media/zip
|
|
|
09-26-2004, 12:32 AM
|
#3
|
Senior Member
Registered: Nov 2002
Location: pikes peak
Distribution: Slackware, LFS
Posts: 2,577
Rep:
|
Re: Zip 250 USB Mount
Quote:
Originally posted by aclarion
/dev/sda4 /media/zip auto noauto,user 0 0
|
try adding ------- rw ---------after user............
Code:
/dev/sda4 /media/zip auto noauto,user,rw 0 0
rw= read,write
|
|
|
09-26-2004, 07:29 AM
|
#4
|
Member
Registered: Sep 2003
Location: ky
Distribution: gentoo
Posts: 409
Rep:
|
LQ Addict rw is auto unless ro is stated
|
|
|
09-26-2004, 08:36 AM
|
#5
|
Moderator
Registered: Aug 2002
Posts: 26,894
|
For vfat partitions the umask option is required for r/w. For all users to r/w use umask=000.
|
|
|
09-26-2004, 08:34 PM
|
#6
|
Member
Registered: Jul 2004
Location: New York, USA
Distribution: Fedora 2
Posts: 51
Original Poster
Rep:
|
Not Working
I tried all of the above and nothing seems to work. I know it is locating the ZIp Drive. In the "My Computer" folder it is now listing two extra floppy drives. This is what my Hardware Config is showing:
Zip 250
Bus" scsi
class (spec) Floppy Disk
Device Name: /dev/sda
further down it also says
dev name_2: /dev/sg1
It seems it is listing it as /dev/sda and /dev/sg1 and in the fstab as /dev/sda4
I am very confused! I can also see a Zip Folder in /media/zip
Help!!
Rick
|
|
|
09-26-2004, 08:56 PM
|
#7
|
Member
Registered: Sep 2003
Location: ky
Distribution: gentoo
Posts: 409
Rep:
|
type ls /mnt
if you do not see /mnt/zip type mkdir /mnt/zip
than type mount what do you see?
if it is not mounted type mount -t vfat /dev/sda4 /mntzip
if you are on irc in am on freenode in #WorldLUG
|
|
|
09-26-2004, 09:36 PM
|
#8
|
Member
Registered: Jul 2004
Location: New York, USA
Distribution: Fedora 2
Posts: 51
Original Poster
Rep:
|
Zip 250
Hello enyawix, thanks for replying. There is a /mnt/zip
This is what I get after typing what you told me:
linux:/home/aclarion # mount -t vfat /dev/sda4/mntzip
Usage: mount -V : print version
mount -h : print this help
mount : list mounted filesystems
mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory : mount known device here
mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
or move a subtree:
mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using -L label or by uuid, using -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say man 8 mount .
I hope this makes sense to you, because I don't know what it means!
Rick
PS. I am going to sleep now so if I don't reply tonight I'll reply tomorrow. Also, I will try the IRC. Thanks again.
|
|
|
09-26-2004, 09:40 PM
|
#9
|
Member
Registered: Jul 2004
Location: New York, USA
Distribution: Fedora 2
Posts: 51
Original Poster
Rep:
|
It worked!
I don't know what happened but it seems to work after doing the mount -t vfat /dev/sda4 /mntzip
The zip files show up under "My Computer" Floppy(3) I'll let you know if it gives me any trouble.
Thanks Again.
Rick
|
|
|
09-26-2004, 09:53 PM
|
#10
|
Member
Registered: Sep 2003
Location: ky
Distribution: gentoo
Posts: 409
Rep:
|
# mount -t vfat /dev/sda4 /mnt/zip
not # mount -t vfat /dev/sda4/mntzip sorry
|
|
|
All times are GMT -5. The time now is 06:01 PM.
|
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
|
|