LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This 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


Reply
  Search this Thread
Old 03-11-2010, 09:39 AM   #1
complete_noob
LQ Newbie
 
Registered: Mar 2010
Posts: 4

Rep: Reputation: 0
Unable to mount volume


Hi all, profuse apologies for posting this, but I am (as the user name suggests) a complete noob to Linux. I have been given a second hand (previously enjoyed I am told the term is now!) Aspire 1 with Linux on. I am enjoying the Linux experience, apart from the fact that I am unable to get any of my USB sticks working. I get an error message which says

"FAILED TO MOUNT 524M Removable volume. Given device "/org/freedesktop/Hal/devices/volume_part_1_size_524288000" is not a volume or drive.

I have been through the instructions on here, and am still unable to get it to mount.

Short of a solution, I am thinking of trying a restore, but given that the use of a USB is called for in a restore, I am a bit nervous about doing so.

Any help gratefully recieved.

Thanks all.
 
Old 03-11-2010, 09:41 AM   #2
jamescondron
Member
 
Registered: Jul 2007
Location: Scunthorpe, UK
Distribution: Ubuntu 8.10; Gentoo; Debian Lenny
Posts: 961

Rep: Reputation: 70
I like pre-loved

Okay, plug the disk in and post the output of
Code:
dmesg|tail -20
and we'll go from there
 
Old 03-12-2010, 02:09 PM   #3
complete_noob
LQ Newbie
 
Registered: Mar 2010
Posts: 4

Original Poster
Rep: Reputation: 0
Thanks

Thanks for the swift reply - sorry for my delay in getting the info back to you.
Right, done what you asked, pasted the output below.

Adding 1052248k swap on /dev/sda2. Priority:-1 extents:1 across:1052248k
usb 1-3: new high speed USB device using ehci_hcd and address 3
usb 1-3: configuration #1 chosen from 1 choice
scsi2 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 3
usb-storage: waiting for device to settle before scanning
usb-storage: device scan complete
scsi 2:0:0:0: Direct-Access SanDisk U3 Cruzer Micro 8.02 PQ: 0 ANSI: 0 CCS
sd 2:0:0:0: [sdb] 15695871 512-byte hardware sectors (8036 MB)
sd 2:0:0:0: [sdb] Write Protect is off
sd 2:0:0:0: [sdb] Mode Sense: 45 00 00 08
sd 2:0:0:0: [sdb] Assuming drive cache: write through
sd 2:0:0:0: [sdb] 15695871 512-byte hardware sectors (8036 MB)
sd 2:0:0:0: [sdb] Write Protect is off
sd 2:0:0:0: [sdb] Mode Sense: 45 00 00 08
sd 2:0:0:0: [sdb] Assuming drive cache: write through
sdb: sdb1
sd 2:0:0:0: [sdb] Attached SCSI removable disk
sd 2:0:0:0: Attached scsi generic sg1 type 0


Thanks
 
Old 03-13-2010, 02:58 PM   #4
complete_noob
LQ Newbie
 
Registered: Mar 2010
Posts: 4

Original Poster
Rep: Reputation: 0
Ok, i have also done the following.
[root@localhost ~]# fdisk -l

Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x00000000

Device Boot Start End Blocks Id System
/dev/sda1 * 1 14462 116165983+ 83 Linux
/dev/sda2 14463 14593 1052257+ 82 Linux swap / Solaris

Disk /dev/sdb: 524 MB, 524288000 bytes
17 heads, 59 sectors/track, 1020 cylinders
Units = cylinders of 1003 * 512 = 513536 bytes
Disk identifier: 0x73696420

This doesn't look like a partition table
Probably you selected the wrong device.

Device Boot Start End Blocks Id System
/dev/sdb1 ? 1914209 2457017 272218546+ 20 Unknown
Partition 1 has different physical/logical beginnings (non-Linux?):
phys=(356, 97, 46) logical=(1914208, 5, 40)
Partition 1 has different physical/logical endings:
phys=(357, 116, 40) logical=(2457016, 16, 59)
Partition 1 does not end on cylinder boundary.
/dev/sdb2 ? 1326206 1863570 269488144 6b Unknown
Partition 2 has different physical/logical beginnings (non-Linux?):
phys=(288, 110, 57) logical=(1326205, 9, 57)
Partition 2 has different physical/logical endings:
phys=(269, 101, 57) logical=(1863569, 13, 16)
Partition 2 does not end on cylinder boundary.
/dev/sdb3 ? 537378 1931558 699181456 53 OnTrack DM6 Aux3
Partition 3 has different physical/logical beginnings (non-Linux?):
phys=(345, 32, 19) logical=(537377, 4, 25)
Partition 3 has different physical/logical endings:
phys=(324, 77, 19) logical=(1931557, 10, 42)
Partition 3 does not end on cylinder boundary.
/dev/sdb4 * 1390457 1390478 10668+ 49 Unknown
Partition 4 has different physical/logical beginnings (non-Linux?):
phys=(87, 1, 0) logical=(1390456, 5, 1)
Partition 4 has different physical/logical endings:
phys=(335, 78, 2) logical=(1390477, 9, 38)
Partition 4 does not end on cylinder boundary.

Partition table entries are not in disk order
Does this mean that the usb is not formatted in the correct way for linux?
 
Old 03-14-2010, 01:41 AM   #5
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
Your USB drive is being seen as /dev/sdb

It does not seem to have a proper partition table. So it needs re-partitioning with fdisk or gparted (GUI partitioning tool)

Once you have deleted the bad partitions (if any) you'll need to create a new one, which will be seen as
/dev/sdb1

Then you can format it as ext3 VFAT whatever you like.

Then it should be usable.
 
Old 03-14-2010, 03:21 PM   #6
complete_noob
LQ Newbie
 
Registered: Mar 2010
Posts: 4

Original Poster
Rep: Reputation: 0
Thanks for the help Tredegar - much appreciated. What may seem a dumb question follows - can one usb stick be used with linux and windows ?
 
Old 03-14-2010, 03:27 PM   #7
crts
Senior Member
 
Registered: Jan 2010
Posts: 2,020

Rep: Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757Reputation: 757
Quote:
Originally Posted by complete_noob View Post
Thanks for the help Tredegar - much appreciated. What may seem a dumb question follows - can one usb stick be used with linux and windows ?
Hi,

yes this is possible but only if you format it as vfat. Do not use a linux specific format because windows can not read it. Also do not use ntfs under winXP because some older linux distros might not be able to handle it.
 
Old 03-14-2010, 03:27 PM   #8
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
Quote:
Originally Posted by complete_noob View Post
Thanks for the help Tredegar - much appreciated. What may seem a dumb question follows - can one usb stick be used with linux and windows ?
You mean to transfer/share files between the two OS's?

Yes, one stick can be used, but it will need to be formatted in one of the few formats that Windows understands, such as FAT32 or FAT16 or NTFS.

If it's NTFS, you'll need the ntfs-3g package on your Linux, in order to read/write to the stick. ntfs-3g is more common these days and apparently works well, and it is probably included with your Linux already; if not, it's very likely that your package manager can get it for you.

Sasha
 
Old 03-14-2010, 03:32 PM   #9
worm5252
Member
 
Registered: Oct 2004
Location: Atlanta
Distribution: CentOS, RHEL, HP-UX, OS X
Posts: 567

Rep: Reputation: 57
In a round about way yes it can be done. Is it easy? Well that depends on who you ask. Check out this Forum posting to get some more info, http://www.linuxquestions.org/questi...indows-447076/
 
Old 03-14-2010, 04:40 PM   #10
ewaller
LQ Newbie
 
Registered: Jul 2006
Location: Pasadena, Ca
Distribution: Arch / Gentoo
Posts: 14

Rep: Reputation: 1
Quote:
Originally Posted by GrapefriuTgirl
Yes, one stick can be used, but it will need to be formatted in one of the few formats that Windows understands, such as FAT32 or FAT16 or NTFS.
Well, you can load drivers for ext3 or Reiser for Windows. I don't because when I dual boot Windows, I like it to be ignorant of my Linux file systems -- That way any malicious code can't easily damage my Linux partitions
 
Old 03-14-2010, 05:18 PM   #11
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
@ ewaller -- I think I'd agree with you -- plus, I dunno how well I would trust the Win Ext drivers to be reliable and work without destroying something.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Unable to mount netware volume with ncpfs gandalf2041 Linux - Networking 2 05-28-2021 02:49 AM
Unable to mount the volume 'WD Passport' mensahel Ubuntu 2 10-24-2007 09:45 PM
Unable to mount the volume 'WD Passport' mensahel Linux - Hardware 2 10-24-2007 09:29 PM
"Unable to mount the selected volume" Mustard Linux - Newbie 4 10-17-2004 12:50 PM
Nautilus was unable to mount the selected volume. gazza Linux - Software 1 01-14-2004 01:27 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:44 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration