Hello.
I have virtual drive with UFS partitions, I need to boot Live-CD and use rsync to COPY files from remote server to this virtual HDD ("clone" the system). I want to boot from this virtual HDD (I'm using Virtualbox).
So the only one obstacle is that none of the .iso-files (*dvd1.iso and so on) contain the key part: rsync. I can try to use dump/restore but is there a way to INSTALL software to Live system?
SSH works, but I need rsync....
I have virtual drive with UFS partitions, I need to boot Live-CD and use rsync to COPY files from remote server to this virtual HDD ("clone" the system). I want to boot from this virtual HDD (I'm using Virtualbox).
So the only one obstacle is that none of the .iso-files (*dvd1.iso and so on) contain the key part: rsync. I can try to use dump/restore but is there a way to INSTALL software to Live system?
Code:
dhclient em0
mkdir /tmp/etc
mount_unionfs /tmp/etc /etc
echo "nameserver 8.8.8.8" >> /tmp/etc/resolv.conf
ee /etc/ssh/sshd_config
"#PermitRootLogin no" -> "PermitRootLogin yes"
/etc/rc.d/sshd onestart
SSH works, but I need rsync....