http://sourceforge.net/projects/aoetools/
http://www.etherboot.org/wiki/aoe
http://sourceforge.net/projects/aoetools/
http://www.etherboot.org/wiki/aoe
arquivos .dd são geralmente utilizadas para criar cópias de discos físicos com todas partições.
Para montar este tipo de arquivo, primeiro deve ser lido o conteúdo, para isso use:
# fdisk -l -u arquivo.dd
Para montar, você deve fazer um calculo multiplicando o setor inicial x nr de bytes por setor, exemplo:
# fdisk -l -u x86_64.dd You must set cylinders. You can do this from the extra functions menu. Disk VMware-VMvisor-big-171294-x86_64.dd: 0 MB, 0 bytes 64 heads, 32 sectors/track, 0 cylinders, total 0 sectors Units = sectors of 1 * 512 = 512 bytes Device Boot Start End Blocks Id System x86_64.dd1 8192 1843199 917504 5 Extended x86_64.dd4 * 32 8191 4080 4 FAT16 <32M x86_64.dd5 8224 520191 255984 6 FAT16 x86_64.dd6 520224 1032191 255984 6 FAT16 x86_64.dd7 1032224 1257471 112624 fc Unknown x86_64.dd8 1257504 1843199 292848 6 FAT16
Neste caso para montar a 2 partição (8224) utilizariamos 8224*512:
# mount -t vfat -o loop,ro,offset=4210688 x86_64.dd diretorioDestino/
boot via iscsi, http server, nfs, tftpd
http://etherboot.org/
Uma distribuição voltada para criar um linux storage server, com nfs, iscsi target, smb…
achei um post em um blog muito interessante, uma pesquisa através do conteúdo da imagem.
Procura inclusive imagens semelhantes, muito interessante…
só configurar no .htaccess para abrir interpretar com o php outras extensões:
AddType application/x-httpd-php .extensao
AddHandler application/x-httpd-php .extensao
(origem) # ssh -R 23456:localhost:22 root@host.destino.com
Depois no host.destino.com:
(destino) ssh localhost -p 23456
Irá direcionar para origem
esxcfg-vswitch -A “ADM STORAGE” vSwitch1
esxcfg-vswitch -v 3 -p “ADM STORAGE” vSwitch1
esxcfg-vmknic -a -i 10.4.0.30 -n 255.255.255.0 -m 8500 “ADM STORAGE”
mkdir /usr/local/install/; cd /usr/local/install/;
cd /usr/local/install/;
wget -c http://download.osgeo.org/proj/proj-4.7.0.tar.gz
wget -c http://download.osgeo.org/geos/geos-3.1.1.tar.bz2
wget -c http://postgis.refractions.net/download/postgis-1.4.0.tar.gz
cd /usr/local/install/;
tar -zxvf proj-4.7.0.tar.gz;
cd proj-4.7.0;
./configure && make && make install;
cd /usr/local/install/;
tar -jxvf geos-3.1.1.tar.bz2;
cd geos-3.1.1;
./configure && make && make install;
cd /usr/local/install/;
tar -zxvf postgis-1.4.0.tar.gz;
cd postgis-1.4.0;
./configure && make && make install;
Estava com erro ao abrir arquivos grandes do PHP, como por exemplo /wp-includes/js/tinymce/wp-tinymce.php.
Verificar permissões em: /usr/local/nginx/fastcgi_temp/
chown usuario:usuario -R /usr/local/nginx/fastcgi_temp/;
chmod -R 777 /usr/local/nginx/fastcgi_temp/;
chown usuario:usuario -R /usr/local/nginx/client_body_temp/;
chmod -R 777 /usr/local/nginx/client_body_temp/;