Weblog entry #4 for chr0nik
libhal-storage.c 1401 : info: called libhal_free_dbus_error but dbuserror was not set.
process 10564: applications must not close shared connections - see dbus_connection_close() docs. this is a bug in the application.
error: device /dev/hde1 is not removable
error: could not execute pmount
Comments on this Entry
[ Parent | Reply to this comment ]
Honestly, to totally feel safe and start fresh, I went off the power grid for a few hours and just thought about things far more important than electricity and pirated warez I'd never buy in the first place.
[ Parent | Reply to this comment ]
Once the system has booted, make a directory somewhere (maybe /mnt/olddisk). Determine the partitions that were used on that harddrive and mount accordingly underneath "olddisk" directory.
Recover from there.
[ Parent | Reply to this comment ]
Once the system has booted, make a directory somewhere (maybe /mnt/olddisk). Determine the partitions that were used on that harddrive and mount accordingly underneath "olddisk" directory.
Im a newbe and have the same problem. I cannot access my first partition winxp with debian. I get the same error.
Could you explain in further detail how to access the partition with debian?
[ Parent | Reply to this comment ]
mount -t ntfs /dev/hdXn /mnt/olddrive/XP
Where X is the drive letter of the old harddrive
Where n is the partition
Example:
mkdir -p /mnt/olddrive/XP
mount -t ntfs /dev/hdb1 /mnt/olddrive/XP
You can use dmesg after bootup to see what drives were detected.
Hopefully my .02 cents will help you...it's Monday and I'm groggy so forgive any obvious errors you see here.
[ Parent | Reply to this comment ]