Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Disperazione: Gentoo installato ieri è già esploso [Risolto]
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

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


Joined: 11 Oct 2005
Posts: 795
Location: Ferrara, Italy

PostPosted: Fri May 18, 2007 7:06 pm    Post subject: Reply with quote

Cioè?
Io faccio un bell' sda4 di 200GB di fianco, gli copio dentro quello che c'è in sda3 e poi modifico fstab per fargli capire che sda4 è la nuova root?

Ho appena fatto partire gparted e mo dà la possibilità di ampliare la mia partizione...
_________________
A cow enters a supermarket, does an handstand and dies. (Public toilet graffito)
Back to top
View user's profile Send private message
comio
Advocate
Advocate


Joined: 03 Jul 2003
Posts: 2191
Location: Taranto

PostPosted: Fri May 18, 2007 7:08 pm    Post subject: Reply with quote

canduc17 wrote:
Cioè?
Io faccio un bell' sda4 di 200GB di fianco, gli copio dentro quello che c'è in sda3 e poi modifico fstab per fargli capire che sda4 è la nuova root?

Ho appena fatto partire gparted e mo dà la possibilità di ampliare la mia partizione...


modifica fstab e grub.conf
_________________
RTFM!!!!

e

http://www.comio.it
:)
Back to top
View user's profile Send private message
canduc17
l33t
l33t


Joined: 11 Oct 2005
Posts: 795
Location: Ferrara, Italy

PostPosted: Fri May 18, 2007 8:28 pm    Post subject: Reply with quote

Bene.
Ho creato sta partizione, gli ho copiato dentro tutto e sono riuscito a far riavviare il sistema.
Partiva kdm, ma loggandomi come utente canduc non mi faceva accedere...Ho risolto digitando questi comandi trovati in un altro post:
Code:
chown -R canduc:users /home/canduc
chmod -R 750 /home/canduc
...problemi di permessi, insomma...

L'ultima cosa che non sono riuscito a risolvere è che se mi loggo come canduc, non riesco a loggarmi come utente root.
Succede questo (da console):
Code:
canduc@candesktop ~ $ su
Password:
su: Authentication failure
Spiacente.
canduc@candesktop ~ $

Non funziona neanche se provo ad eseguire un programma come utente root da kde: io inserisco la password corretta, ma mi dice "Password sbagliata: prova di nuovo".
La password è corretta, poichè riesco a loggarmi come root sia da shell che in kde.
Solo quando la inserisco dopo il comando su non va: e dire che l'utente canduc è nel gruppo wheel...
_________________
A cow enters a supermarket, does an handstand and dies. (Public toilet graffito)
Back to top
View user's profile Send private message
Ic3M4n
Advocate
Advocate


Joined: 02 Nov 2004
Posts: 3489
Location: Bergamo.

PostPosted: Fri May 18, 2007 11:13 pm    Post subject: Reply with quote

come hai fatto la copia dei dati? che comando hai utilizzato?
come sono i permessi del file?
i miei sono questi:
Code:
ls -l /bin/su
-rws--x--x 1 root root 26640  9 apr 23:23 /bin/su
Back to top
View user's profile Send private message
canduc17
l33t
l33t


Joined: 11 Oct 2005
Posts: 795
Location: Ferrara, Italy

PostPosted: Sat May 19, 2007 9:21 am    Post subject: Reply with quote

La copia l'ho fatta con:
Code:
cp -R /mnt/sda3/* /mnt/sda4
ed io ho
Code:
canduc@candesktop ~ $ ls -l /bin/su
-rwx--x--x 1 root root 26832 18 mag 21:24 /bin/su

_________________
A cow enters a supermarket, does an handstand and dies. (Public toilet graffito)
Back to top
View user's profile Send private message
Ic3M4n
Advocate
Advocate


Joined: 02 Nov 2004
Posts: 3489
Location: Bergamo.

PostPosted: Sat May 19, 2007 11:52 am    Post subject: Reply with quote

cp -R modifica i permessi dei file. devi utilizzare cp -a oppure puoi utilizzare rsync -a
Back to top
View user's profile Send private message
Scen
Retired Dev
Retired Dev


Joined: 29 Jul 2003
Posts: 2470
Location: Padova, Italy

PostPosted: Sat May 19, 2007 11:56 am    Post subject: Reply with quote

canduc17 wrote:
La copia l'ho fatta con:
Code:
cp -R /mnt/sda3/* /mnt/sda4

Uhm... non è stata una scelta saggia :?

Dovevi utilizzare l'opzione --archive (o la sua forma abbreviata -a)
Code:

 -a, --archive
              Preserve as much as possible of the structure and attributes of the original files in the copy (but
              do not preserve directory structure).  Equivalent to -dpPR.

ed in più anche l'opzione -r
Code:

 -r     In file-utils 4.1: synonym of -R.  In file-utils 4.0: Copy  directories  recursively,  copying  any
              non-directories  and  non-symbolic links (that is, FIFOs and special files) as if they were regular
              files. This silly behaviour is obtained in file-utils 4.1 if the --copy-contents option is given.

per cui
Code:

cp -arv /mnt/sda3/* /mnt/sda4/

[/code]

[EDIT]
Ic3M4n mi ha anticipato :P . Ti consiglio anch'io di optare x rsync.
_________________
I was born in a deep forest/I wish I could live here all my life/I am made from stones and roots/My home, these woods and roads
All my life I loved this sound/Of the woods all around/Eagles flies where the winds blows free
Journey is my destiny
Back to top
View user's profile Send private message
Ic3M4n
Advocate
Advocate


Joined: 02 Nov 2004
Posts: 3489
Location: Bergamo.

PostPosted: Sat May 19, 2007 12:07 pm    Post subject: Reply with quote

beh... la tua spiegazione è senz'altro migliore.

in ogni caso la scelta rsync su cp è fatta solamente per abitudine. solitamente copio il sistema da una macchina all'altra e quindi utilizzo rsync.
in ogni caso riguardo alle operazioni di copia ci sono alcuni thread interessanti tipo questo:
https://forums.gentoo.org/viewtopic-t-506281-postdays-0-postorder-asc-highlight-clonare+sistema-start-0.html
Back to top
View user's profile Send private message
canduc17
l33t
l33t


Joined: 11 Oct 2005
Posts: 795
Location: Ferrara, Italy

PostPosted: Mon May 21, 2007 7:24 am    Post subject: Reply with quote

No, mi è scesa la catena.
Ho cancellato la partizione sda4 e con il live cd di GParted ho "allargato" sda3 fino a 200GB.
L'operazione è andata a buon fine e per adesso il mio sistema su sda3 sembra non dare nessun problema...
Ho preferito fare così, piuttosto che avere un partizionamento del disco ad cazzem.
Grazie mille a tutti per la disponibilità!
_________________
A cow enters a supermarket, does an handstand and dies. (Public toilet graffito)
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 Previous  1, 2, 3
Page 3 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