Linux Now Detects Gpdrive As A Usb Key!


damaki

Bored To Death
Joined
Jan 20, 2004
Messages
415
Age
42
Location
Calais, France
Website
Visit site
As many Linux users surely know, there have been issues for a long time with GPdrive and Linux OS. But I recently discovered, that with the 2.6.10 kernel and all USB mass storage drivers enabled at compilation time, it just works!
 
My only problem when using external drives in Linux (Mandrake 10.1) is my normal user can't access drives, but root can...

Really nice, tought, as it doesn't work in Windows 2000...


//Talyz Prower
 
Talyz posted on Feb 18 2005 at 04:56 PM said:
My only problem when using external drives in Linux (Mandrake 10.1) is my normal user can't access drives, but root can...

Really nice, tought, as it doesn't work in Windows 2000...


//Talyz Prower

If you have no SCSI peripherals you should create a /mnt/usb directory then put that in /etc/fstab
Code:
/dev/sda1               /mnt/usb        vfat           noauto,gid=85,rw,umask=007,fmask=007,dmask=007,users 0  0
The gid parameter in the line should be set to the number of the "usb" group or any other unix group that you belong to and that has the right accesses on usb peripherals. You can find this number with :
Code:
grep usb /etc/fstab
It should be the only number in the displayed line.
Yeah, the fstab line could be simpler but it is made to be secure.
By the way, don't forget to add yourself to the "usb" group if you're not already in it. You can verify with the "groups" command

With that line, you can mount the drive yourself, while not being root. If you don't want to go trough the pain of mounting/unmounting it yourself, like me (lazyness rocks) you can install submount, it's a kernel module. Then your fstab line should be :
Code:
/dev/sda1               /mnt/usb        subfs        fs=vfat,gid=85,rw,umask=007,fmask=007,dmask=007  0  0
 
Last edited by a moderator:
wow, great news.... too bad Mandrake 10.1 doesn't include the .10 kernel, and I am too stupid to update it manually (still a bit of a Linux n00b)... but I am planning to convert to Unbuntu Linux soon anyway (when the new release comes out.... much better Gnome support than Mandrake... ).... and then I can finally use gpdrive on Linux :)
 
too bad Mandrake 10.1 doesn't include the .10 kernel,

I think you can update it easily with urpmi.

Just update the mirrors: http://easyurpmi.zarb.org/

If I remember it right you can see all available kernels if you type "urpmi -y kernel" then and install it with "urpmi kernel-xx"...

Not sure so, I changed to Aurox...
 
Digitalrat posted on Feb 18 2005 at 07:18 PM said:
too bad Mandrake 10.1 doesn't include the .10 kernel,

I think you can update it easily with urpmi.

Just update the mirrors: http://easyurpmi.zarb.org/

If I remember it right you can see all available kernels if you type "urpmi -y kernel" then and install it with "urpmi kernel-xx"...

Not sure so, I changed to Aurox...

Naaa, I guessed so already, but the new kernel will be probably only availabe as a MDK cooker version, and I don't really want to use it on my community edition, since it might break all sort of programms and stuff.... but I can wait... so far the textbased linux link software did the job so far, so it will do it's job a few more weeks also :)
Anyways thanks for the hint.
 
Last edited by a moderator:
Back
Top