нужно /dev/hda одной машины склонировать в /dev/hdc другой пробую по nfs
server :/mnt/dev# cat /etc/exports # /etc/exports: the access control list for filesystems which may be exported # to NFS clients. See exports(5). / rw client_host
client :/mnt/dev#mount server:/ /mnt/nfs/ client :/mnt/dev#dd if=/mnt/nfs/dev/hda of=/dev/hdc bs=20M
но вместо /dev/hda cервера смонтированной в /mnt/nfs источником клонирования является /dev/hda самой машины клиента.
client :/mnt/floppy/dev# ls -la hda hda hda1 hda2 hda5 hda6 hda7 hda8 hda9 client :/mnt/floppy/dev# ls -la hda brw-rw---- 1 root disk 3, 0 2006-08-19 13:43 hda client :/mnt/floppy/dev# fdisk hda
The number of cylinders for this disk is set to 4865. There is nothing wrong with that, but this is larger than 1024, and could in certain setups cause problems with: 1) software that runs at boot time (e.g., old versions of LILO) 2) booting and partitioning software from other OSs (e.g., DOS FDISK, OS/2 FDISK)
Command (m for help): p
Disk hda: 40.0 GB, 40019582464 bytes 255 heads, 63 sectors/track, 4865 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System hda1 * 1 851 6835626 83 Linux hda2 852 3649 22474935 5 Extended hda5 852 1023 1381558+ 82 Linux swap / Solaris hda6 1024 3649 21093313+ 83 Linux
и fdisk в данном случае рисует картину локального hda а не смонтированного с сервера. почему это происходит и какие выходы?
изза чего это проиходит? и че не так делаю?