Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free.
The devices are mounted there. The filesystem that is on your flash drive is not. In order to copy files to/from your flash drive, you need to find out what device it is (use (as root) fdisk -l (that is a lowercase L) to find out) and mount that. If you have no other USB storage devices, or any other SCSI devices, then you should be safe with mount -t vfat /dev/sda1 /mnt/usbdrive (please ensure the directory /mnt/usbdrive exists before issuing this command).
once you have created the /mnt/usbdrive directory you could place a line at the end of your fstab file, which is in the /etc directory. (do all this stuff as root!)
/dev/sda1 /mnt/usbdrive vfat noauto,user 0 0
this alows you to place an icon on your dektop. i use KDE. right click on the desktop, add new drive. choose /dev/sda1 from the dropdown list, choose the icons and away you go. put your usb device in the slot, then double click on the icon and its mounted. you should see a folder open in the browser with all your files in. dont forget to right click on the icon and unmount when finished.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.