Re: Anyone switch from Windows to Kubu in cold turkey fashion?
I haven't installed Kubuntu yet (backing up my current system's data), but when I tried out the Live CD, I had the exact same problem with my external drive. A friend sent me a note with an explanation on how to fix it. I'm including it below. Bits you need to type in are bolded.
-------------------- snip --------------------
1. Open terminal (Konsole), go to root (sudo -i) and move to your /mnt folder (cd /mnt).
2. Create a temporary folder the data should be mounted to (mkdir usbdrive)
3. Plug in the external drive and once it's detected (or you feel it's detected) type dmesg.
4. You should get something like this to indicate that your drive was detected and scanned:
Note here that my freshly inserted disk-on-key is /dev/sdb (SCSI drive 2) and it has two partitions: 1 and 2 that we can try mounting. This should be similar to your external drive.
5. Let's mount (or try at least): mount /dev/sdb1 /mnt/usbdrive -- if it complains that it can't find the type, try adding -t ntfs after the mount command.
-------------------- snap --------------------
Your drive will probably be called something different than sdb1, so you need to try and find it. There will be quite a bit of output, but once you find it, the above should work. You can then use cd usbdrive to access the data. If that works, you might need to change the permission of the drive(s) with chmod so that you can access the data from within KDE on your user account (or you can use kdesu). If you get this far, I can post the steps for this (also provided by said friend).
can't get my external storage drive to work. I get a message saying my drive is 'unmounted removable media' but no matter what option I choose nothing happens.
-------------------- snip --------------------
1. Open terminal (Konsole), go to root (sudo -i) and move to your /mnt folder (cd /mnt).
2. Create a temporary folder the data should be mounted to (mkdir usbdrive)
3. Plug in the external drive and once it's detected (or you feel it's detected) type dmesg.
4. You should get something like this to indicate that your drive was detected and scanned:
Code:
[ 9349.252000] usb-storage: device scan complete [ 9349.252000] scsi 2:0:0:0: Direct-Access SanDisk U3 Cruzer Micro 3.21 PQ: 0 ANSI: 2 [ 9349.256000] SCSI device sdb: 4001425 512-byte hdwr sectors (2049 MB) [ 9349.256000] sdb: Write Protect is off [ 9349.256000] sdb: Mode Sense: 03 00 00 00 [ 9349.256000] sdb: assuming drive cache: write through [ 9349.256000] SCSI device sdb: 4001425 512-byte hdwr sectors (2049 MB) [ 9349.256000] sdb: Write Protect is off [ 9349.256000] sdb: Mode Sense: 03 00 00 00 [ 9349.256000] sdb: assuming drive cache: write through [ 9349.256000] sdb: sdb1 sdb2 [ 9349.264000] sd 2:0:0:0: Attached scsi removable disk sdb [ 9349.264000] sd 2:0:0:0: Attached scsi generic sg2 type 0
5. Let's mount (or try at least): mount /dev/sdb1 /mnt/usbdrive -- if it complains that it can't find the type, try adding -t ntfs after the mount command.
-------------------- snap --------------------
Your drive will probably be called something different than sdb1, so you need to try and find it. There will be quite a bit of output, but once you find it, the above should work. You can then use cd usbdrive to access the data. If that works, you might need to change the permission of the drive(s) with chmod so that you can access the data from within KDE on your user account (or you can use kdesu). If you get this far, I can post the steps for this (also provided by said friend).
Comment