Mount USB Flash Drive on Linux

Create directory /mnt/usbstick:

    mkdir /mnt/usbstick

Mount the usb device, in my case: it's /dev/sda1:

    mount -t vfat /dev/sda1 /mnt/usbstick

 And it's ready!!!

 

Sometimes when it is replugged, it needs to be remounted:

    umount /mnt/usbstick

     mount -t vfat /dev/sda1 /mnt/usbstick

Or add an alias in the .bashrc file in home directory (use ';' to combine two command lines). 

[@more@]

This entry was posted in Technical. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

ERROR: si-captcha.php plugin: GD image support not detected in PHP!

Contact your web host and ask them to enable GD image support for PHP.

ERROR: si-captcha.php plugin: imagepng function not detected in PHP!

Contact your web host and ask them to enable imagepng for PHP.

This site uses Akismet to reduce spam. Learn how your comment data is processed.