domenica 22 aprile 2012

Il Manuale Debian Della Rete.

http://www.debian.org/doc/manuals/debian-reference/ch05.it.html

Un buon modo di installare gnu/linux

$ fdisk /dev/hdx
$ mkfs.xxxx /dev/hdxx
$ mkswap /dev/hdxx

$ mount /dev/hdxx /mnt
$ swapon /dev/hdxx

$setup

$ mount --bind /dev /mnt/dev
$ mount --bind /tmp /mnt/tmp
$ mount -t proc proc /mnt/proc
$ mount -t sysfs none /mnt/sys
$ chroot /mnt /bin/bash

$passwd

//edita i file di configurazione: tra cui fstab

 $ cd /usr/src/linux-2.6.35.x
 $ make menuconfig
 $ make all
 $ make modules_install
 $ cp arch/x86/boot/bzIma

...e installa il boot loader grub o lilo
 fdisk
Giga formula
(xxx,xxx,xxx is total sectors) / (2,097,152 is 1GB) = 55.9002
Mega formula
(x,xxx,xxx is remaining sectors) / (2,048 is 1MB) = 921.8984 

sabato 21 aprile 2012

Sante Righe !
 
 
 $ cd /usr/src/linux-2.6.35.x
 $ make menuconfig
 $ make all
 $ make modules_install
 $ cp arch/x86/boot/bzImage /boot/vmlinuz
 $ cp System.map /boot
Installing arch :
error:
   udev uevents
   bad target number

ho risolto aggiungendo l'opzione nomodeset

Run minikube with podman on Fedora

After install minikube as described in the documentation , set rootless property to true to use Podman without sudo: minikube config set roo...