Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
StepByStep - LXP19 - Gentoo Linux 2004.2
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

Goto page 1, 2, 3  Next  
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 6:30 am    Post subject: StepByStep - LXP19 - Gentoo Linux 2004.2 Reply with quote

Ciao,

Allora...

Premetto che ho letto (e cercato di seguire) la guida all'installazione e la quickinstall per la distribuzione DVD allegata al numero di Ottobre di LinuxPro, ma senza (sing...) risultati.

Quindi vorrei postare passo passo l'installazione e i dubbi che via via accumulo.

Sempre in riferimento alla Gentoo su DVD LXP19.


:wink:
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 6:40 am    Post subject: Reply with quote

PS. Installazione SENZA supporto di INTERNET... ma solo utilizzando i pacchetti del supporto DVD.


BOOT


Last edited by cagnaluia on Mon Sep 13, 2004 7:03 am; edited 1 time in total
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 6:48 am    Post subject: Reply with quote

// Carico il layout ITALIANO

loadkeys it



// Creo le partizioni (su SDA )

cfdisk

// Le partizoni

sda1 ----> 100MB bootable
sda2 ----> 9000MB
sda3 ----> 1024MB swap



// Formatto le partizioni in EXT2 e SWAP

mke2f /dev/sda1
mke2f /dev/sda2
mkswap /dev/sda3


// Mount delle partizioni

swapon /dev/sda3 //monto lo swap
mount /dev/sda2 /mnt/gentoo //monto la radice

mkdir /mnt/gentoo/boot //creo boot
mount /dev/sda1 //monto il boot
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 6:49 am    Post subject: Reply with quote

ok! Abbiamo settato il disco!



Installiamo il sistema di base. STAGE3 per facilità e comodità.
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 6:56 am    Post subject: Reply with quote

//Decomprimiamo il portage nell'apposita cartella

cd /mnt/gentoo
tar -xvjpf /mnt/cdrom/stages/stage3-x86-2004.2.tar.bz2 //usiamo il ramo x86
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 7:01 am    Post subject: Reply with quote

// Decomprimiamo gli snapshots e distfiles

tar -xvjf /mnt/cdrom/snapshots/portage20040805.tar.bz2 -C /mnt/gentoo/usr



cp -R /mnt/cdrom/distfiles /mnt/gentoo/usr/portage/
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 7:20 am    Post subject: Reply with quote

vabbe... continuo un pò io... ma correggetemi se sbaglio


//sincronizziamo i distfiles con il portage tree


cd /etc
nano make.conf

//aggiungiamo la riga:
ACCEPT_KEYWORDS="~x86"
Back to top
View user's profile Send private message
randomaze
Bodhisattva
Bodhisattva


Joined: 21 Oct 2003
Posts: 9985

PostPosted: Mon Sep 13, 2004 8:00 am    Post subject: Re: StepByStep - LXP19 - Gentoo Linux 2004.2 Reply with quote

cagnaluia wrote:
Premetto che ho letto (e cercato di seguire) la guida all'installazione e la quickinstall per la distribuzione DVD allegata al numero di Ottobre di LinuxPro, ma senza (sing...) risultati.


Senza offesa per i tizi di LXP, segui il Manuale Gentoo.

L'unico riscorso che dovresti fare alla mini-guida di LXP é per vedere dove sono i src nel DVD.

Comunque continua pure con la cronaca passo-passo, può ritornare utile ;-)
_________________
Ciao da me!
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 8:04 am    Post subject: Re: StepByStep - LXP19 - Gentoo Linux 2004.2 Reply with quote

randomaze wrote:
cagnaluia wrote:
Premetto che ho letto (e cercato di seguire) la guida all'installazione e la quickinstall per la distribuzione DVD allegata al numero di Ottobre di LinuxPro, ma senza (sing...) risultati.


Senza offesa per i tizi di LXP, segui il Manuale Gentoo.

L'unico riscorso che dovresti fare alla mini-guida di LXP é per vedere dove sono i src nel DVD.

Comunque continua pure con la cronaca passo-passo, può ritornare utile ;-)



sicuramente utile.. si!
Tantissimi comprano LXPRO.. spece se non hanno la possibilità di collegarsi a internet (DSL).... come me!
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 8:07 am    Post subject: Reply with quote

ok.. torniamo

// Montiamo il filesystem proc

mount -t proc none /mnt/gentoo/proc
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 8:10 am    Post subject: Reply with quote

// Spostiamoci sul nuovo ambiente

chroot /mnt/gentoo /bin/bash




// Configuriamo le variabili d'ambiente

env-update source /etc/profile
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 8:12 am    Post subject: Reply with quote

...e qui mi fermo.... e chiedo a voi come continuare l'installazione:wink:
Back to top
View user's profile Send private message
randomaze
Bodhisattva
Bodhisattva


Joined: 21 Oct 2003
Posts: 9985

PostPosted: Mon Sep 13, 2004 8:18 am    Post subject: Reply with quote

cagnaluia wrote:
...e qui mi fermo.... e chiedo a voi come continuare l'installazione:wink:


Copi i sorgenti dal DVD di LXP nell directory /mnt/gentoo/usr/portage/distfiles e segui il manuale.
_________________
Ciao da me!
Back to top
View user's profile Send private message
suppah
n00b
n00b


Joined: 13 Sep 2004
Posts: 3

PostPosted: Mon Sep 13, 2004 8:26 am    Post subject: Reply with quote

asd, mi sto scimmiando anche io con gentoo.

solo che non avendo mai usato linux finora (a parte qualche "esperimento" con redhat) e seguendo il manuale ora sta compilando. 8)

tempo stimato? su un duron 1000 + 196 mega di ram pc 133.

ah, stage2 ovviamente...
Back to top
View user's profile Send private message
randomaze
Bodhisattva
Bodhisattva


Joined: 21 Oct 2003
Posts: 9985

PostPosted: Mon Sep 13, 2004 8:28 am    Post subject: Reply with quote

suppah wrote:
solo che non avendo mai usato linux finora (a parte qualche "esperimento" con redhat) e seguendo il manuale ora sta compilando. 8)


Benvenuto...

Quote:
tempo stimato? su un duron 1000 + 196 mega di ram pc 133.


...un paio di giorni per un installazione completa :roll:
_________________
Ciao da me!
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 8:28 am    Post subject: Reply with quote

chrootandomi.. ho perso il cdrom... :(
Back to top
View user's profile Send private message
randomaze
Bodhisattva
Bodhisattva


Joined: 21 Oct 2003
Posts: 9985

PostPosted: Mon Sep 13, 2004 8:30 am    Post subject: Reply with quote

cagnaluia wrote:
chrootandomi.. ho perso il cdrom... :(


esci dal chroot, cambi la password di root, apri un'altra shell in un'altra console e rientri nel chroot.

In questa maniera hai sia la shell dentro il chroot che la shell fuori.
_________________
Ciao da me!
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 8:31 am    Post subject: Reply with quote

randomaze wrote:
cagnaluia wrote:
chrootandomi.. ho perso il cdrom... :(


esci dal chroot, cambi la password di root, apri un'altra shell in un'altra console e rientri nel chroot.

In questa maniera hai sia la shell dentro il chroot che la shell fuori.



hemm... come si fa? :oops:
Back to top
View user's profile Send private message
randomaze
Bodhisattva
Bodhisattva


Joined: 21 Oct 2003
Posts: 9985

PostPosted: Mon Sep 13, 2004 8:35 am    Post subject: Reply with quote

cagnaluia wrote:
hemm... come si fa? :oops:


Come si fa cosa?

Uscire dal chroot:
Code:
exit

Cambiare la password:
Code:
passwod


Cambiare console: <alt>F1 /<alt>F2 /<alt>F3 /<alt>F4 /<alt>F5 (ricorda che al momento sei nella prima)

Rientrare nel chroot: stessi passi che hai già fatto, compreso il mount di proce e dev
_________________
Ciao da me!
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 8:40 am    Post subject: Reply with quote

si.. tutto ok..

ma...

i sorgenti non li ho copiati prima? con
cp -R /mnt/cdrom/distfiles /mnt/gentoo/usr/portage
???
Back to top
View user's profile Send private message
randomaze
Bodhisattva
Bodhisattva


Joined: 21 Oct 2003
Posts: 9985

PostPosted: Mon Sep 13, 2004 8:41 am    Post subject: Reply with quote

cagnaluia wrote:
i sorgenti non li ho copiati prima? con
cp -R /mnt/cdrom/distfiles /mnt/gentoo/usr/portage
???


Si, mi era sfuggito :roll:
_________________
Ciao da me!
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 8:46 am    Post subject: Reply with quote

ok.

sono tornato con chroot...


sto seguendo la guida su gentoo.it

-----------------------------------
// BOOTSTRAPPING----

# cd /usr/portage-------------
# scripts/bootstrap.sh--------
-----------------------------------
errata... NON FARE


Last edited by cagnaluia on Mon Sep 13, 2004 12:31 pm; edited 1 time in total
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 8:48 am    Post subject: Reply with quote

mah... altro problema...

facendo partire lo script.. è partito anche un emerge e ha scaricato il necessario da internet!!!

Ma io NON voglio che si colleghi a internet pe r l'installazione! voglio che la faccia usando i sorgenti che ho copiato prima!

come glielo dico!!??
Back to top
View user's profile Send private message
randomaze
Bodhisattva
Bodhisattva


Joined: 21 Oct 2003
Posts: 9985

PostPosted: Mon Sep 13, 2004 8:56 am    Post subject: Reply with quote

cagnaluia wrote:
come glielo dico!!??


Stacca il cavo.
_________________
Ciao da me!
Back to top
View user's profile Send private message
cagnaluia
l33t
l33t


Joined: 01 Sep 2004
Posts: 998
Location: Treviso

PostPosted: Mon Sep 13, 2004 9:01 am    Post subject: Reply with quote

randomaze wrote:
cagnaluia wrote:
come glielo dico!!??


Stacca il cavo.


ma... se stacco il cavo.. alla fine mi dirà che nn trova i sorgenti... :oops:
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) All times are GMT
Goto page 1, 2, 3  Next
Page 1 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum