Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
problemi compilazione kernel....[risolto]
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 8:22 pm    Post subject: problemi compilazione kernel....[risolto] Reply with quote

temo di aver fatto un casino....
stavo compilando il kernel seguendo le istruzioni di http://www.gentoo.org/doc/it/handbook/handbook-x86.xml?part=1&chap=7...
ad un certo punto sono andato a guardare la cartella /boot ed ho visto che e vuota...
Che fine hanno nfatto grub e grub.conf?


Last edited by inspiron on Mon Nov 15, 2004 11:37 am; edited 2 times in total
Back to top
View user's profile Send private message
Wave2184
Apprentice
Apprentice


Joined: 02 Nov 2003
Posts: 189
Location: Roma

PostPosted: Sun Nov 14, 2004 8:26 pm    Post subject: Re: AIUTO URGENTE... Reply with quote

inspiron wrote:
temo di aver fatto un casino....
stavo compilando il kernel seguendo le istruzioni di http://www.gentoo.org/doc/it/handbook/handbook-x86.xml?part=1&chap=7...
ad un certo punto sono andato a guardare la cartella /boot ed ho visto che e vuota...
Che fine hanno nfatto grub e grub.conf?


hai montato /boot???se hai seguito la guida per l installazione di gento alla lettera non la monta in automatico all avvio..

P.S. evita titoli di questo genere... :roll:
_________________
LINUX:sbav:

Powered by Gentoo 2004.2
Powered by Ubuntu 5.10
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 31446
Location: here

PostPosted: Sun Nov 14, 2004 8:26 pm    Post subject: Reply with quote

Gentoo di default smonta la cartella di /boot una volta finito il suo utilizzo. Basta che dai
Code:
# mount /boot

e vedrai che tutto apparira'

[MOD]Modifica il titolo con qualcosa di piu' esplicativo[/MOD]
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 8:28 pm    Post subject: Reply with quote

grazie
chiedo scusa x il titolo....
Back to top
View user's profile Send private message
Momentime
Tux's lil' helper
Tux's lil' helper


Joined: 08 Sep 2003
Posts: 111
Location: Italy

PostPosted: Sun Nov 14, 2004 8:28 pm    Post subject: Reply with quote

Hmmm, ma l'hai compilato almeno?

Code:

emerge -pv grub


Se poi tieni /boot su una partizione a se, controlla di averla montata.. non so che altro dirti... hai usato genkernel o hai fatto da solo?


[edit]
WHOOOPS! scusate x il post inutile, mi avete fregato sul tempo =)
[/edit]
_________________
Registered Linux User #367816
Registered Linux machine #262819

No hope, life is none, none!
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 8:31 pm    Post subject: Reply with quote

prima avevo il 2.6.9-ck2....
poi ho scaricato il 2.6.9-ck3 e lo sto compilando con make menuconfig.....
ora finisce di compilare, faccio mount /boot e vedo che succede.....
Grub lo avevo pure prima....
non creo di dover rifare l'emerge.....
Come faccio a mantenere entrambi i kernel?
se non ho capito male il kenrel deve essere linkato al file linux.....
Ma come faccio a linkare due cose allo stesso file?
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 31446
Location: here

PostPosted: Sun Nov 14, 2004 8:34 pm    Post subject: Reply with quote

inspiron wrote:
Come faccio a mantenere entrambi i kernel?

Copi l'immagine con un altro nome e crei una nuova entry nel grub.conf

inspiron wrote:
se non ho capito male il kenrel deve essere linkato al file linux.....
Ma come faccio a linkare due cose allo stesso file?

No il link primarimente serve se installi moduli seoparati (tipo slmodem,...).
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
X-Drum
Advocate
Advocate


Joined: 24 Aug 2003
Posts: 2517
Location: ('Modica','Trieste','Ferrara') Italy

PostPosted: Sun Nov 14, 2004 8:43 pm    Post subject: Reply with quote

inspiron wrote:

Come faccio a mantenere entrambi i kernel?
se non ho capito male il kenrel deve essere linkato al file linux.....
Ma come faccio a linkare due cose allo stesso file?


semplice it fai 2 dir per i 2 kernel:
Code:
mount /boot
mkdir /boot/kernel1
cp /usr/src/kernel1/bzImage /boot/kernel1/
cp /usr/src/kernel1/System.map /boot/kernel1/

mkdir /boot/kernel2
cp /usr/src/kernel2/bzImage /boot/kernel2/
cp /usr/src/kernel2/System.map /boot/kernel2/


editi grub.conf:

Code:
[...]
title  Gentoo (kernel1)
root (hdX,X) #modificare con i tuoi parametri
kernel /boot/kernel1/bzImage root=/dev/XXX -k /boot/kernel1/System.map
[...]

title  Gentoo (kernel2)
root (hdX,X) #modificare con i tuoi parametri
kernel /boot/kernel2/bzImage root=/dev/XXX -k /boot/kernel2/System.map
[...]

aggiorna grub e prega di aver specificato correttamente i paramentri da sostituire :P
_________________
"...There are two sort of lies, lies and benchmarks..."
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 8:59 pm    Post subject: Reply with quote

nel mio grub.conf il avevo questi parametri per far partire il kernel di prima:

Code:

root (hd0,2)
kernel (hd0,2)/2.6.9-ck2/linux-2.6.9-ck2 root=/dev/hdc6 vga=791





vanno bene?
la cosa strana e che invece di kernel /boot/..... ha (hd0,2)/......
e non ha il system.map.....


Last edited by inspiron on Sun Nov 14, 2004 9:04 pm; edited 1 time in total
Back to top
View user's profile Send private message
X-Drum
Advocate
Advocate


Joined: 24 Aug 2003
Posts: 2517
Location: ('Modica','Trieste','Ferrara') Italy

PostPosted: Sun Nov 14, 2004 9:03 pm    Post subject: Reply with quote

inspiron wrote:
nel mio grub.conf il avevo questi parametri per far partire il kernel di prima:

Code:

root (hd0,2)
kernel (hd0,2)/2.6.9-ck2/linux-2.6.9-ck2 root=/dev/hdc6 vga=791

vanno bene?

si se partiva dovrebbero!

inspiron wrote:

la cosa strana e che invece di kernel /boot/..... ha (hd0,2)/......
e non ha il system.map.....


non è strano è un'altra sintassi equivalente a quella da me mostrata
System.map io lo aggiungo per completezza ma se vuoi pui farne a meno tranquillamente
_________________
"...There are two sort of lies, lies and benchmarks..."
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 9:04 pm    Post subject: Reply with quote

ma lloraq a che serve il link simbolico al file linux?
Back to top
View user's profile Send private message
X-Drum
Advocate
Advocate


Joined: 24 Aug 2003
Posts: 2517
Location: ('Modica','Trieste','Ferrara') Italy

PostPosted: Sun Nov 14, 2004 9:11 pm    Post subject: Reply with quote

inspiron wrote:
ma lloraq a che serve il link simbolico al file linux?

allora sarebbe buona norma una volta installato un nuovo kernel (che intendi utilizzare come predefinito) creare un link simbolico chaimato linux
un esempio:

Code:
rm -rf /usr/src/linux
ln -s /usr/src/linux-2.6.9-r1-gentoo /usr/src/linux

_________________
"...There are two sort of lies, lies and benchmarks..."
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 9:13 pm    Post subject: Reply with quote

e buona norma in che senso?
cosa implica?
spero di non essere petulante.... :lol:

P.S.:prima di riavviare devo smontare /boot?
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 9:51 pm    Post subject: Reply with quote

quando provo a smontare /boot mi dice:
Code:

umount: /boot: device is busy
umount: /boot: device is busy


che devo fare?
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 31446
Location: here

PostPosted: Sun Nov 14, 2004 9:54 pm    Post subject: Reply with quote

Probabilmente perche' ti trovi all'interno di questa. Esci dalla cartella di boot e riprova a dare il comando
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 10:20 pm    Post subject: Reply with quote

ho riavviato....
una sola cosa....
non posso fare rc-update add nvidia boot.... mi dice che /etc/init.d/nvidia non esiste....
e normale?
ho dovuto editare /etc/modules.autoload.d/kernel2.6 aggiungendo la riga:
Code:

nvidia

va bene cosi?
prima,con il kernel 2.6.9-ck2 parte anche senza editare quel file....
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 31446
Location: here

PostPosted: Sun Nov 14, 2004 10:27 pm    Post subject: Reply with quote

nvidia non e' uno script di avvio a un modulo quindi e' giusto che ti dica che non esista. Dove l'hai messo va bene ma hotplug dovrebbe caricartelo automaticamente
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 10:32 pm    Post subject: Reply with quote

e quali sono i motivi che potrebbero impedire a hotplug di caricare nvidia?
ho notato anche che durante il boot,quando scrive tutte le cose che fa(moduli,ecc...) ha una risoluzione molto piu bassa, le scritte sono molto piu grandi....
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 10:44 pm    Post subject: Reply with quote

puo essere che duranrte la compilazione ho sbagliato qualcosa?
magari qualcosa inerente all'AGP....
es:
dovevo mettere qualcosa come modulo e invece l'ho messo fisso....?
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Sun Nov 14, 2004 11:17 pm    Post subject: Reply with quote

dovevo semplicemente rifare l'emerge di nvidia-kernel e nvidia-glx...
ora ho l'ultimo mproblema....
la risoluzione prima di far partire X (console?) e molto piu bassa..
come mai?
come si fa a modificare la risoluzione della console?
Back to top
View user's profile Send private message
fedeliallalinea
Administrator
Administrator


Joined: 08 Mar 2003
Posts: 31446
Location: here

PostPosted: Mon Nov 15, 2004 8:48 am    Post subject: Reply with quote

inspiron wrote:
la risoluzione prima di far partire X (console?) e molto piu bassa..
come mai?
come si fa a modificare la risoluzione della console?

Devi attivare il frame buffer e poi cambi risoluzione
_________________
Questions are guaranteed in life; Answers aren't.
Back to top
View user's profile Send private message
inspiron
Guru
Guru


Joined: 08 Nov 2004
Posts: 559

PostPosted: Mon Nov 15, 2004 11:37 am    Post subject: Reply with quote

grazie
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
Page 1 of 1

 
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