Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Mounting pen drive on RH7.2

Status
Not open for further replies.

carrot

Full Member level 3
Joined
Feb 23, 2004
Messages
182
Helped
9
Reputation
18
Reaction score
4
Trophy points
1,298
Location
Bangalore, India
Activity points
1,532
Hi,

I want to mount my pen drive on Linux 7.2 . How to do it? Can anyone who has knowledge on this help me.
 

i use slackware 10.2
i mount usb flash drive using following command
mount /dev/sda /mnt/usbstick
 

hello
plug ur drive in usb

after that run dmesg
you will get a long llist from that u can your device name line sda1,sda2......

them make a blank directory ex. /mnt/pendrive

mount /dev/sda.... /mnt/pendrive

makri
 

U've to add a number after sda

that means

mount /dev/sda1 /mnt/pen1
mount /dev/sda2 /mnt/pen2


1 for pendrive 1
1 for pendrive 2
 

cd /mnt <--//to go to mount directory
su <--//to become super user
Password: <--//give password
mkdir usbflash <--//create a directory in the mnt folder
mount /dev/sda1 /mnt/usbflash <--//this is the command to mount flash card reader
umount /dev/sda1 /mnt/usbflash <-- //to unmount the flash drive
 

insert usb
create a folder in /mnt

by giving mkdir usb

after that run hwbrowser command

u will get a screen

from that screen u can find out device name like sda1 or sda2 or sdb1


the run this command for mounting

mount /dev/sda1 /mnt/usb

and for unmounting

umount /mnt/usb

sarath
 

hi
plug the usb stick
login as root user
type mount -t vfat /dev/sda1 /mnt
device will be mounted
to unmount
type umount/mnt


regards
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top