![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| big disk solaris 2.6 | malcqv | SUN Solaris | 13 | 06-30-2008 04:14 AM |
| Disk Mirroring for Solaris 10 x86 | chuck43 | SUN Solaris | 2 | 01-30-2008 07:19 AM |
| Reading Data from Disk | taordw | SCO | 2 | 07-25-2007 08:07 PM |
| Disk Mirror in Solaris 9 via Solaris Volume Manager | deal732 | SUN Solaris | 3 | 05-02-2007 08:43 AM |
| reading from usb to sun solaris | Anant | SUN Solaris | 1 | 11-11-2005 08:21 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#15
|
|||
|
|||
|
Close, but:
Code:
rhino# dd if=/devices/pci@1e,600000/ide@d/dad@1,0 bs=1 skip=0 count=1024 read: Is a directory 0+0 records in 0+0 records out rhino# ls -la /devices/pci@1e,600000/ide@d/dad@1,0 total 4 drwxr-xr-x 2 root sys 512 Dec 18 2006 . drwxr-xr-x 5 root sys 512 Dec 18 2006 .. |
| Forum Sponsor | ||
|
|
|
#16
|
||||
|
||||
|
You onlt chose the path containing the device, you need to use the full path to the actual device.
|
|
#17
|
|||
|
|||
|
Go on give me a hint
|
|
#18
|
|||
|
|||
|
Code:
rhino# ls -l /dev/dsk/c0t1d0s0 lrwxrwxrwx 1 root root 43 Dec 6 2006 /dev/dsk/c0t1d0s0 -> ../../devices/pci@1e,600000/ide@d/dad@1,0:a rhino# dd if=/devices/pci@1e,600000/ide@d/dad@1,0:a bs=1 skip=0 count=1024 | od -x dd: /devices/pci@1e,600000/ide@d/dad@1,0:a: open: I/O error 0000000 rhino# Any more ideas anyone? |
|
#19
|
|||
|
|||
|
Please try to switch the "bs" and "count" values like:
dd if=<your device> of=<outputfile> bs=1024 count=1 perhaps this was the issue. Regards, Marian Quote:
|
|
#20
|
|||
|
|||
|
Quote:
Although it looks like a dd error... it is not. The error is accessing the device via the handle... The Solaris box can not read HDD that has no LABEL it can identify (i.e. a Sun 'format' label).. |
|||
| Google The UNIX and Linux Forums |
| Tags |
| linux, solaris |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|