Results 1 to 9 of 9
Hello
, I have a problem of computer .. I installed Linux on a system of two and everything, but I have a fully open Partition show me an error ...
- 04-14-2009 #1Just Joined!
- Join Date
- Apr 2009
- Posts
- 4
i have problem
Hello
, I have a problem of computer .. I installed Linux on a system of two and everything, but I have a fully open Partition show me an error message please help me note that the system is ubuntu
the message
Cannot mount volume.
Unable to mount location
DBus error org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
- 04-14-2009 #2
Post output of this
Run on command line.
And tell what partition you want to mount.# sudo fdisk -l
- 04-14-2009 #3
Post the output of df -h command too.
Code:df -h
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 04-14-2009 #4Just Joined!
- Join Date
- Apr 2009
- Posts
- 4
i do
Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xa1cba1cb
Device Boot Start End Blocks Id System
/dev/sda1 * 1 3187 25599546 83 Linux
/dev/sda2 3188 19456 130680742+ f W95 Ext'd (LBA)
/dev/sda5 3188 7011 30716248+ 7 HPFS/NTFS
/dev/sda6 7012 10198 25599546 7 HPFS/NTFS
/dev/sda7 10199 14660 35840983+ 7 HPFS/NTFS
/dev/sda8 14661 19456 38523838+ 7 HPFS/NTFS
Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x22b522b4
Device Boot Start End Blocks Id System
/dev/sdb1 1 5099 40957686 7 HPFS/NTFS
/dev/sdb2 5100 60800 447418282+ f W95 Ext'd (LBA)
/dev/sdb5 5100 24221 153597433+ 7 HPFS/NTFS
/dev/sdb6 24222 43343 153597433+ 7 HPFS/NTFS
/dev/sdb7 43344 60800 140223321 7 HPFS/NTFS
Disk /dev/sdc: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xce42ce42
Device Boot Start End Blocks Id System
/dev/sdc1 * 1 3187 25599546 83 Linux
/dev/sdc2 3188 19456 130680742+ f W95 Ext'd (LBA)
/dev/sdc5 3188 10836 61440561 7 HPFS/NTFS
/dev/sdc6 10837 19456 69240118+ 7 HPFS/NTFS
- 04-14-2009 #5Just Joined!
- Join Date
- Apr 2009
- Posts
- 4
Filesystem Size Used Avail Use% Mounted on
/dev/sdc1 25G 3.8G 20G 17% /
tmpfs 1013M 0 1013M 0% /lib/init/rw
varrun 1013M 224K 1012M 1% /var/run
varlock 1013M 0 1013M 0% /var/lock
udev 1013M 2.8M 1010M 1% /dev
tmpfs 1013M 304K 1012M 1% /dev/shm
lrm 1013M 2.0M 1011M 1% /lib/modules/2.6.27-11-generic/volatile
/dev/sda1 25G 2.9G 20G 13% /media/disk
- 04-14-2009 #6
Consider that you want to mount /dev/sdb1 a NTFS filesystem
use this command.
You can change /dev/sdb1 with another partiton you wish to mount# sudo mount /dev/sdb1 /mnt -t ntfs-3g -o force
And change the /mnt with another folder where you want to mount the filesystem. e.g. /media/disk-1
- 04-14-2009 #7Just Joined!
- Join Date
- Apr 2009
- Posts
- 4
i do but message
fuse: mount failed: Device or resource busy
- 04-14-2009 #8
Which version of Ubuntu are you using? Post exact command that you are executing.
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 04-14-2009 #9
Make sure the device you are trying to mount is not already mounted.


Reply With Quote