Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Xvmount wont see usb stick -SUCCESS

New to Debian (Or Linux in general)? Ask your questions here!
Post Reply
Message
Author
gerry
Posts: 325
Joined: 2007-09-13 07:23
Location: England

Xvmount wont see usb stick -SUCCESS

#1 Post by gerry »

EDIT: Uninstalled xvmount, and learnt to use the command line. For an interesting twist, read end message.
EDIT: Having got command line sorted, was able to edit fstab correctly.

How do I get XVmount to see a usb stick? It only sees the floppy and cdrom devices.

System is minimal install Lenny- no desktop environment.

gerry
Last edited by gerry on 2009-12-02 08:21, edited 2 times in total.
gerry
Age 80- and still learning!

User avatar
Pick2
Posts: 790
Joined: 2007-07-07 13:31
Location: Decatur Il

Re: Xvmount wont see usb stick

#2 Post by Pick2 »

Plug in your USB stick , and after a minute , type:

Code: Select all

dmesg | grep -i "SCSI"
( or dmesg | tail might work also )
you should then see something like this:

Code: Select all

SCSI device sda: 64512 512-byte hdwr sectors (33 MB)
SCSI device sda: 64512 512-byte hdwr sectors (33 MB)
Then you need a place to mount the drive , I just mount mine at home:

Code: Select all

mkdir ~/Flash
Then mount it something like this: ( might need to change the path )

Code: Select all

mount -t vfat -o uid=pluto,gid=users /dev/sda1 /home/pluto/Flash
and then to unmount it:

Code: Select all

umount /home/pluto/Flash
As always ,the man(ual) page might help , or post back

Code: Select all

man mount

gerry
Posts: 325
Joined: 2007-09-13 07:23
Location: England

Re: Xvmount wont see usb stick

#3 Post by gerry »

Thanks, Pick2, but I'd already found a number of variations on that. What I asked was "How do I get Xvmount to see a usb stick". It only sees cdrom and floppy drives, not usb sticks, though documentation suggests that it should.

(Xvmount is an app that opens a gui with a button for each drive that it has detected, so you just click on the appropriate button to mount the device. It won't work with a usb stick.)

gerry
gerry
Age 80- and still learning!

gerry
Posts: 325
Joined: 2007-09-13 07:23
Location: England

Re: Xvmount wont see usb stick

#4 Post by gerry »

OK- looks like I have to learn how to edit /etc/fstab, because Xvmount gets it's list of drives from there. Pity, really- I expected something a bit more automatic.

ah well.... back to the manuals.

gerry
gerry
Age 80- and still learning!

User avatar
bugsbunny
Posts: 5354
Joined: 2008-07-06 17:04
Been thanked: 1 time

Re: Xvmount wont see usb stick

#5 Post by bugsbunny »

The description for xvmount seems to imply that the device needs to be defined in fstab. Also note that xvmount is currently orphaned, and there's a chance it may be dropped in the future (especially since it has no 64 bit support).

You may be better off using pmount. There is apparently a graphical front end for pmount (mount-gtk), although it's not currently in Debian. There has, however, been an ITP (intent to package) filed for it.
http://mount-gtk.sourceforge.net/
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=547475

User avatar
Pick2
Posts: 790
Joined: 2007-07-07 13:31
Location: Decatur Il

Re: Xvmount wont see usb stick

#6 Post by Pick2 »

gerry wrote:... System is minimal install Lenny- no desktop environment.
gerry
I was a little confused because of "no desktop environment" and my google of xvmount said: "Small graphical utility"
I don't use xvmount ... or a desktop environment much either 8)

gerry
Posts: 325
Joined: 2007-09-13 07:23
Location: England

Re: Xvmount wont see usb stick

#7 Post by gerry »

Thanks Pick2- I did need what you posted, to find out what the usb stick device name is, so that I can set up fstab for xvmount to use. Not with any success yet..... but I'll get there.

gerry
gerry
Age 80- and still learning!

gerry
Posts: 325
Joined: 2007-09-13 07:23
Location: England

Re: Xvmount wont see usb stick

#8 Post by gerry »

I uninstalled xvmount- and got to grips doing it at the command line. Big problem was finding out what the device name is. How I did it was: open file manager (I use ROX) and then open /dev/. Plug in the usb stick, and refresh the file manager display. There should be one (or two) new items- in my case sda and sda1. Having created a mount point (I used /home/gerry/usb) I then had all I needed to type: mount -t vfat /dev/sda /home/gerry/usb

which didn't work, so I tried sda1, which did. Hurrah!!

gerry
gerry
Age 80- and still learning!

gerry
Posts: 325
Joined: 2007-09-13 07:23
Location: England

Re: Xvmount wont see usb stick -Used command line

#9 Post by gerry »

Having got all my ducks in a row, I was now able to edit fstab correctly. I reinstalled xvmount, and it works.

gerry
gerry
Age 80- and still learning!

Post Reply