| Suse/Novell This Forum is for the discussion of Suse Linux. |
| 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
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. |
|
 |
01-03-2005, 08:34 AM
|
#1
|
|
Member
Registered: Dec 2004
Posts: 35
Rep:
|
help about USB flash drive
on my VAIO memory stick is ok i can find on devices but not same for USB flash memory any help i am using a 9.2 pro
|
|
|
|
01-03-2005, 09:59 AM
|
#2
|
|
LQ Newbie
Registered: Dec 2003
Location: Canada
Posts: 17
Rep:
|
Plug it in and then look under /media
|
|
|
|
01-03-2005, 10:03 AM
|
#3
|
|
Member
Registered: Dec 2004
Posts: 35
Original Poster
Rep:
|
yes but no succes
|
|
|
|
01-03-2005, 10:04 AM
|
#4
|
|
Member
Registered: Dec 2004
Posts: 35
Original Poster
Rep:
|
on media is just dvd rom and memory stick
|
|
|
|
01-04-2005, 12:20 AM
|
#5
|
|
Member
Registered: Jun 2004
Location: Northern CA
Distribution: Debian
Posts: 835
Rep:
|
type:
Code:
cat /proc/partitions
It will tell you the device names of all hard drives and partitions on your system. USB drives are usually treated as scsi devices. You will probably find sda and sda1 in the list.
create a mount point:
and mount it with:
Code:
mount /dev/sda1 /mnt/usb
|
|
|
|
01-04-2005, 07:48 AM
|
#6
|
|
Member
Registered: Dec 2004
Posts: 35
Original Poster
Rep:
|
is bot working i cans see a scsi on the hardare list
|
|
|
|
01-04-2005, 02:04 PM
|
#7
|
|
Member
Registered: Jun 2004
Location: Northern CA
Distribution: Debian
Posts: 835
Rep:
|
Which scsi do you see? Try pulling the USB drive out. Which scsi disapears?
If you see sda, sda1, sda2, and sda3 then I would try to mount /dev/sda1, /dev/sda2, /dev/sda3. (don't bother to mount /dev/sda unless it it the only thing in the list)
|
|
|
|
01-04-2005, 07:00 PM
|
#8
|
|
Member
Registered: Dec 2004
Posts: 35
Original Poster
Rep:
|
output:
vaio:~ # cat /proc/partitions
major minor #blocks name
3 0 29297520 hda
3 1 14643216 hda1
3 2 1052257 hda2
3 3 13599022 hda3
8 16 1048576 sdb
|
|
|
|
01-05-2005, 12:21 AM
|
#9
|
|
Member
Registered: Jun 2004
Location: Northern CA
Distribution: Debian
Posts: 835
Rep:
|
That's weird, but oh well.
Make sure you have a mount point created that you can use. Example, same as above:
And then try this:
Code:
mount /dev/sdb /mnt/usb
This should work, but only temporarily. To make it "permanent" you will need to add a line to your /etc/fstab file. I can't guaranty that the drive will always remain /dev/sdb. You may need to check every now and again. After you're through, though it probably doesn't matter, it is a good idea to unmount the volume:
|
|
|
|
01-05-2005, 03:32 AM
|
#10
|
|
Member
Registered: Dec 2004
Posts: 35
Original Poster
Rep:
|
after writing the mount /dev/sdb /mnt/usb function i can get no output on shell window and the windows hangs i must kill the window to close it ??
|
|
|
|
01-05-2005, 12:36 PM
|
#11
|
|
Member
Registered: Aug 2004
Location: Wausau, WI
Distribution: SuSE Linux Enterprise Desktop 10
Posts: 193
Rep:
|
is it partitioned? try either
/dev/sdb -t auto /mnt/usb
/dev/sdb1 -t auto /mnt/usb
|
|
|
|
01-05-2005, 01:52 PM
|
#12
|
|
Member
Registered: Jun 2004
Location: Northern CA
Distribution: Debian
Posts: 835
Rep:
|
KohlyKohl:
If you read his "cat /proc/partitions" list you will see that sdb is listed, but sdb1 is not. It is not partitioned, nor does it necisarilly need to be. You can treat an entire drive as one big partition. This is rare, but not that unusual.
The "-t auto" is assumed by default. If you don't tell mount what file system the volume has, it knows to automatically detect it.
deepdark:
A good question to ask might be, is it formated? I'd be surprised if it wasn't. Have you used it on another system?
If it hangs, you should be able to ctrl+c to terminate the process. You might want to let it sit for a minute or two to see if it will give you an error message. Then you should check "tail dmesg" to see the last few system messages. This might reveal why it isn't mounting. You can also check "tail /var/log/messages".
By the way, just to verify that we're dealing with the correct device: try doing a "cat /proc/partitions", and then pull out the drive and do it again. The sdb should disappear if it really is the USB drive.
|
|
|
|
01-05-2005, 03:30 PM
|
#13
|
|
Member
Registered: Dec 2004
Posts: 35
Original Poster
Rep:
|
jes is formated in xp and i have a stuff inside
|
|
|
|
01-05-2005, 11:38 PM
|
#14
|
|
Member
Registered: Sep 2004
Distribution: SUSE 10.0 OSS
Posts: 261
Rep:
|
Mine made my XP system decide to turn itself off last night. It works fine on my SuSE box, it appears in the my computer section as a usb drive.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 06:06 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|