Il comando dd è usato in ambiente linux/Unix per creare copie bit a bit fra device. Vediamone un esempio di seguito: sudo dd if=/dev/Sr0 of=/home/seawolf/backup.iso bs=2048 conv=sync L’opzione conv=sync indica a dd di sincronizzare l’input e l’output assicurando una protezione…
Scaricare un intero sito web con Wget
Ogni tanto, può risultare utile, scaricare un intero sito web sul proprio computer, per renderne disponibile la consultazione offline. Scaricare un sito web è veramente semplice se si possiede un sistema linux like, infatti tutti i sistemi linux sono dotati…
How To Configure Static IP On CentOS 6
## Configure eth0 # # vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=”eth0″ NM_CONTROLLED=”yes” ONBOOT=yes HWADDR=A4:BA:DB:37:F1:04 TYPE=Ethernet BOOTPROTO=static NAME=”System eth0″ UUID=5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03 IPADDR=192.168.1.44 NETMASK=255.255.255.0 ## Configure Default Gateway # # vi /etc/sysconfig/network NETWORKING=yes HOSTNAME=centos6 GATEWAY=192.168.1.1 ## Restart Network Interface # /etc/init.d/network restart ## Configure DNS Server…
Converting VDMK to VDI and Registering the Converted VM
Once the import is done you will be left with a .vdmk file if you don’t care if you have a .vdmk file then you can skip the rest of this as you are ready to go. For the rest…
Import the .OVA or .OVF
Run the following command to get a look at what you are importing $ VBoxManage import /<path_to_.ova_file>/<vmName>.ova –dry-run Pay attention to this line for target path. It should point to your new location for your Virtual machines if you changed…
How To: Move VM From One Machine To Another
Assumptions: You are doing this from the command line You are using Linux (though most everything in this document should work in Windows and Mac too) You have a dedicated VM Utility User that is active and can login (will…
How To: Headless VirtualBox on Headless Server
I have been running virtualbox for over ten years and I have been running a headless server with virtualbox headless (no GUI) for 5 years. I seem to always run into issues were I am making new a machine and…