S
Spanky Da Measekite
In Windows XP and Vista, USB devices just work. They show up and you can
write to them right away. In Ubuntu follow along and see if you can figure
out all the cryptic line commands. No wonder why Ubuntu is still a piece of
crap. NOBODY wants it. It's FREE and still NOBODY wants it.
I Can Read My USB Storage Device, but I Can't Write to It
If you are having trouble writing to a USB key or external USB hard drive,
there are a number of possible causes of the problem.
The first and most simple to diagnose is that you may not have permission to
write to the device. When you plug in the drive, right-click the icon that
appears on your desktop, and select Properties. In the window that appears,
click the Permissions tab and ensure that the Others line has the Write
checkbox selected. If this is not selected, you don't have permission to
access the drive.
Quick Tip
If you do have sufficient permissions but still can't write to the drive,
jump to the Filesystem Fun section below.
To change these permissions, fire up a terminal, and move to the /media
folder:
foo@bar:~$ cd /media
Now take a look at which drives are in there:
foo@bar:~$ ls -al
In the output that appears you should see "usbdisk" as one of the entries.
Now change the permissions so everyone can access it:
foo@bar:~$ sudo chmod a+w usbdisk
You should now be able to access the disk.
write to them right away. In Ubuntu follow along and see if you can figure
out all the cryptic line commands. No wonder why Ubuntu is still a piece of
crap. NOBODY wants it. It's FREE and still NOBODY wants it.
I Can Read My USB Storage Device, but I Can't Write to It
If you are having trouble writing to a USB key or external USB hard drive,
there are a number of possible causes of the problem.
The first and most simple to diagnose is that you may not have permission to
write to the device. When you plug in the drive, right-click the icon that
appears on your desktop, and select Properties. In the window that appears,
click the Permissions tab and ensure that the Others line has the Write
checkbox selected. If this is not selected, you don't have permission to
access the drive.
Quick Tip
If you do have sufficient permissions but still can't write to the drive,
jump to the Filesystem Fun section below.
To change these permissions, fire up a terminal, and move to the /media
folder:
foo@bar:~$ cd /media
Now take a look at which drives are in there:
foo@bar:~$ ls -al
In the output that appears you should see "usbdisk" as one of the entries.
Now change the permissions so everyone can access it:
foo@bar:~$ sudo chmod a+w usbdisk
You should now be able to access the disk.