Monday, April 26, 2010

Mounting the pendrive � slackware: the hacker’s linux

for the records...-2501

mounting the pendrive � slackware: the hacker’s linux

mount -rw -t auto /dev/sda1 /mnt/pendrive

-rw: readable and writable
-t auto: filetype detected automatically
/dev/sda1: seems that this is the type of device for pendrives
/mnt/pendrive: i had to create the “pendrive” folder in the “/mnt” directory

after having done this, open the “/mnt/pendrive” folder to access its contents. After you are finished with it, close all related “/mnt/pendrive” folders and konsoles, and unmount it with the command:

umount /mnt/pendrive

if it gives an error message saying that it is busy, then give the command:

umount -l /mnt/pendrive

-l: “lazy” unmount which means, it will unmount as soon as the device stops being busy

No comments: