domenica 22 aprile 2012
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
$ 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
Iscriviti a:
Post (Atom)
How to deploy Podman images to OpenShift Container Platform (CRC on localhost)
I have a microservice on localhost and I want to deploy its Podman image on OCP, which I am running using CRC on localhost. 1. Get the...
-
Precondizione: La precondizione di un metodo e' una condizione che deve essere verificata prima che quel metodo sia invocato. Le preco...
-
My intent is to configure SSO on Keycloak and Liferay. I have createad a docker-compose environment with Keycloak: #####################...