This is a discussion on how do i make iso image from win2k so it works in hp-ux box within the HP-UX Operating System forums, part of the Unix Operating Systems category; --> hello everyone when i make this data cd from win2k (use winiso to make image and nero to burn ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| hello everyone when i make this data cd from win2k (use winiso to make image and nero to burn it), it makes the sytem hang up, and i need to reboot the system. how can i make an image so it can be read from windows and hp-ux box. thank you in advance,,, |
| ||||
| hsong30 wrote: > > hello everyone > > when i make this data cd from win2k (use winiso to make image and nero > to burn it), it makes the sytem hang up, and i need to reboot the system. > > how can i make an image so it can be read from windows and > hp-ux box. On any unix (hp-ux, linux and most others): dd if=/dev/cdrom of=/path/to/image.iso replace the /dev/cdrom with your cdrom device. Optionally change the blocksize with the "bs=...." option of `dd` to 1 MByte to get some speed boost (the default is 512 or 1024 bytes...). Some implementations accept 'bs=1M', some accept 'bs=1024K', some only accept numbers with the "bs=...." option. See `man dd` for details. (btw: use the same for floppy images) CBee |