Hottest Free Downloads - DownloadPipe.com Over 197,000 downloads! Bookmark Now!
DownloadPipe.com - New Downloads Every Minute
 SEARCH:
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

unable to mount a drive imaged using dd

 
   Linux (Home) -> Hardware RSS
Next:  xawtv or fbtv under 2.6 kernel?  
Author Message
techrojo

External


Since: Oct 01, 2008
Posts: 2



(Msg. 1) Posted: Wed Oct 01, 2008 5:37 am
Post subject: unable to mount a drive imaged using dd
Archived from groups: comp>os>linux>hardware (more info?)

I booted BackTrack3, and opened a terminal session to image an iDE
drive with three partitions.
The command was
dd if=/dev/dha of=/dev/hdd conv=notrunc,noerror

This seemed to run fine.
Running "fdisk –l" showed identical partition info.

I created mount points for the three partitons
mkdir /mnt/hdd1
mkdir /mnt/hdd2
mkdir /mnt/hdd3

When I try to mount any of the partitions, I get an error message:
mount /dev/hdd1 /mnt/hdd1
mount: special device /dev/hdd1 does not exist

mount -o ro -t auto /dev/hdd1 /mnt/hdd1
mount: special device /dev/hdd1 does not exist

Any help is appreciated,
Thanks
Back to top
Login to vote
Stefan Patric

External


Since: Nov 12, 2005
Posts: 26



(Msg. 2) Posted: Wed Oct 01, 2008 10:02 am
Post subject: Re: unable to mount a drive imaged using dd [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Wed, 01 Oct 2008 05:37:06 -0700, techrojo wrote:

> I booted BackTrack3, and opened a terminal session to image an iDE drive
> with three partitions.
> The command was
> dd if=/dev/dha of=/dev/hdd conv=notrunc,noerror
>
> This seemed to run fine.
> Running "fdisk –l" showed identical partition info.
>
> I created mount points for the three partitons mkdir /mnt/hdd1
> mkdir /mnt/hdd2
> mkdir /mnt/hdd3
>
> When I try to mount any of the partitions, I get an error message: mount
> /dev/hdd1 /mnt/hdd1
> mount: special device /dev/hdd1 does not exist
>
> mount -o ro -t auto /dev/hdd1 /mnt/hdd1 mount: special device /dev/hdd1
> does not exist
>
> Any help is appreciated,
> Thanks

You need to use the '-o loop' option with mount, among others. Here's a link
with the procedure:

http://www.andremiller.net/content/mounting-hard-disk-image-including-...titions


Stef
Back to top
Login to vote
techrojo

External


Since: Oct 01, 2008
Posts: 2



(Msg. 3) Posted: Wed Oct 01, 2008 10:57 am
Post subject: Re: unable to mount a drive imaged using dd [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Oct 1, 1:23 pm, Bill Marcum <marcumb....DeleteThis@bellsouth.net> wrote:
> On 2008-10-01, techr....DeleteThis@gmail.com <techr....DeleteThis@gmail.com> wrote:
>
>
>
> > I booted BackTrack3, and opened a terminal session to image an iDE
> > drive with three partitions.
> > The command was
> >   dd if=/dev/dha of=/dev/hdd conv=notrunc,noerror
>
> > This seemed to run fine.
> > Running "fdisk –l" showed identical partition info.
>
> > I created mount points for the three partitons
> > mkdir /mnt/hdd1
> > mkdir /mnt/hdd2
> > mkdir /mnt/hdd3
>
> > When I try to mount any of the partitions, I get an error message:
> > mount /dev/hdd1 /mnt/hdd1
> > mount: special device /dev/hdd1 does not exist
>
> > mount -o ro -t auto /dev/hdd1 /mnt/hdd1
> > mount: special device /dev/hdd1 does not exist
>
> You may need to reboot after changing the partition table on /dev/hdd.- Hide quoted text -
>
> - Show quoted text -

Stefan - I'm trying to access a partition, not an image.

Bill - Yep, a reboot was needed.

Thanks all!
Back to top
Login to vote
ArameFarpado

External


Since: Apr 15, 2006
Posts: 68



(Msg. 4) Posted: Wed Oct 01, 2008 6:19 pm
Post subject: Re: unable to mount a drive imaged using dd [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Em Quarta, 1 de Outubro de 2008 11:02, Stefan Patric escreveu:

> On Wed, 01 Oct 2008 05:37:06 -0700, techrojo wrote:
>
>> I booted BackTrack3, and opened a terminal session to image an iDE drive
>> with three partitions.
>> The command was
>> dd if=/dev/dha of=/dev/hdd conv=notrunc,noerror
>>
>> This seemed to run fine.
>> Running "fdisk –l" showed identical partition info.
>>
>> I created mount points for the three partitons mkdir /mnt/hdd1
>> mkdir /mnt/hdd2
>> mkdir /mnt/hdd3
>>
>> When I try to mount any of the partitions, I get an error message: mount
>> /dev/hdd1 /mnt/hdd1
>> mount: special device /dev/hdd1 does not exist
>>
>> mount -o ro -t auto /dev/hdd1 /mnt/hdd1 mount: special device /dev/hdd1
>> does not exist
>>
>> Any help is appreciated,
>> Thanks
>
> You need to use the '-o loop' option with mount, among others. Here's a
> link with the procedure:
>
It doesn't look like his trying to mount a iso file
Back to top
Login to vote
Bill Marcum

External


Since: Apr 26, 2007
Posts: 92



(Msg. 5) Posted: Wed Oct 01, 2008 7:23 pm
Post subject: Re: unable to mount a drive imaged using dd [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On 2008-10-01, techrojo RemoveThis @gmail.com <techrojo RemoveThis @gmail.com> wrote:
> I booted BackTrack3, and opened a terminal session to image an iDE
> drive with three partitions.
> The command was
> dd if=/dev/dha of=/dev/hdd conv=notrunc,noerror
>
> This seemed to run fine.
> Running "fdisk –l" showed identical partition info.
>
> I created mount points for the three partitons
> mkdir /mnt/hdd1
> mkdir /mnt/hdd2
> mkdir /mnt/hdd3
>
> When I try to mount any of the partitions, I get an error message:
> mount /dev/hdd1 /mnt/hdd1
> mount: special device /dev/hdd1 does not exist
>
> mount -o ro -t auto /dev/hdd1 /mnt/hdd1
> mount: special device /dev/hdd1 does not exist
>
You may need to reboot after changing the partition table on /dev/hdd.
Back to top
Login to vote
Baho Utot

External


Since: Jul 02, 2008
Posts: 5



(Msg. 6) Posted: Wed Oct 01, 2008 7:23 pm
Post subject: Re: unable to mount a drive imaged using dd [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Bill Marcum wrote:

> On 2008-10-01, techrojo RemoveThis @gmail.com <techrojo RemoveThis @gmail.com> wrote:
>> I booted BackTrack3, and opened a terminal session to image an iDE
>> drive with three partitions.
>> The command was
>> dd if=/dev/dha of=/dev/hdd conv=notrunc,noerror
>>
>> This seemed to run fine.
>> Running "fdisk –l" showed identical partition info.
>>
>> I created mount points for the three partitons
>> mkdir /mnt/hdd1
>> mkdir /mnt/hdd2
>> mkdir /mnt/hdd3
>>
>> When I try to mount any of the partitions, I get an error message:
>> mount /dev/hdd1 /mnt/hdd1
>> mount: special device /dev/hdd1 does not exist
>>
>> mount -o ro -t auto /dev/hdd1 /mnt/hdd1
>> mount: special device /dev/hdd1 does not exist
>>
> You may need to reboot after changing the partition table on /dev/hdd.

blockdev --rereadpt /dev/hdd may work without the reboot.
Back to top
Login to vote
Grant

External


Since: Dec 05, 2007
Posts: 245



(Msg. 7) Posted: Thu Oct 02, 2008 6:32 am
Post subject: Re: unable to mount a drive imaged using dd [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Wed, 1 Oct 2008 05:37:06 -0700 (PDT), techrojo.RemoveThis@gmail.com wrote:

>I booted BackTrack3, and opened a terminal session to image an iDE
>drive with three partitions.
>The command was
> dd if=/dev/dha of=/dev/hdd conv=notrunc,noerror
>
>This seemed to run fine.
>Running "fdisk –l" showed identical partition info.
>
>I created mount points for the three partitons
>mkdir /mnt/hdd1
>mkdir /mnt/hdd2
>mkdir /mnt/hdd3
>
>When I try to mount any of the partitions, I get an error message:
>mount /dev/hdd1 /mnt/hdd1
>mount: special device /dev/hdd1 does not exist

So you imaged the source device onto the /dev/hdd that has no physical
hard drive behind the device node?

If so, image to a file and try a loop mount?

Grant.
--
http://bugsplatter.id.au/
Back to top
Login to vote
Display posts from previous:   
Related Topics:
usb drive mount problems - First question is whether the third line indicates my thinkpad t21 only support usb 1.00 as opposed to 1.1??? The drive is usb 2 which should be backwards compatible w/1.1 [root@t21 root]# more /proc/bus/usb/devices T: Bus=01 Lev=00 Prnt=00 Port=00..

How to make mount command mount partions as user not only .. - hello I'd be grateful if you'd explain me howto get mount command to mount partions as user not only as root (w/o fstab) I try to mount /dev/hda4 (vfat) partion I gave rwx to /dev/hda4 I gave rwx to /mnt/hda4 I gave +s to /bin/mount I do : mount -...

Replacing CDROM drive with DVD-RW drive - As long as the replacement DVD-RW drive is of the same type as the CDROM drive, (IDE), is it just a question of removing the CDROM drive and repacing it with the DVD drive? (I'm looking at getting one without a case - does it just fit in the casing the..

Unable to detect printer on parallel port - Crux 1.3 (a slackware-like linux distribution with kernel 2.4.23) seems unable to detect the printing device attached to the parallel port (see lpinfo below). The printer in question is an HP Laserjet 1100 which is IEEE1284 compliant and connects via a...

Unable to query Motorola modem with RH 8.0 - Hello, I have a Motorola SM56 PCI Internal Speakerphone modem that's working fine with Win XP. About two years ago, it used to work okay with my RH 8.0. For the last two years I've been using a LAN card. Now I can't get my modem to work on my Linux....
       Linux (Home) -> Hardware All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows Forums
 Game Forums
  Linux Forums
 Mac Forums
 PDA Forums
 Mobile Forums
  Top  |  Store  |  RSS Feeds RSS  |  Data Feeds  |  Advertise  |  Submit  |  Bookmark  |  Newsletter  |  Contact