Visualizzazione dei risultati da 1 a 9 su 9
  1. #1
    Utente di HTML.it
    Registrato dal
    May 2006
    Messaggi
    136

    neofita : partizione ed installazione

    ciao a tutti, ho deciso di installare linux sul mio pc, e prima di inziare ho un paio di domande da porvi :

    1) ho scaricato ubuntu 6.10, va bene o consigliate qualcos'altro ?

    2) per partizionare il disco uso partitionmagic, ma cosa devo creare ?
    una partizione linux e devo creare anche una piccola partizione all'inizio per l'avvio?

    3) poi vorrei creare un boot che se non faccio niente entra in windows dopo tot secondi,
    altrimenti posso scegliere se entrare con windows o lnux


    C'è una guida che mi spiega queste cose? ho provato a cercare dentro il forum ma non ho trovato niente.

    Grazie a tutti!

  2. #2
    crea una partizione estesa,e all'interno della partizione estesa ne fai tre di logiche:
    una per /
    una per la /home
    e una per la swap.
    per quanto riguarda la scelta al boot,fai installare a ubuntu il bootloader e dopo,quando è tutto fatto,modifiche la voce di default dal suo file di configurazione (/boot/grub/menu.list)

  3. #3

  4. #4
    Utente di HTML.it
    Registrato dal
    May 2006
    Messaggi
    136
    ok,ho installato tutto!

    ora vorrei modificare il file che si trova in /boot/grub/menu.lst

    solo che non mi da la possibilità di salvare il file nuovo. mi dice che il file è di sola lettura, come faccio a aggiungere il diritto di scrittura ?

    e come lo devo modificare ?
    posto sotto il file :

    codice:
    # menu.lst - See: grub(8), info grub, update-grub(8)
    #            grub-install(8), grub-floppy(8),
    #            grub-md5-crypt, /usr/share/doc/grub
    #            and /usr/share/doc/grub-doc/.
    
    ## default num
    # Set the default entry to the entry number NUM. Numbering starts from 0, and
    # the entry number 0 is the default if the command is not used.
    #
    # You can specify 'saved' instead of a number. In this case, the default entry
    # is the entry saved with the command 'savedefault'.
    # WARNING: If you are using dmraid do not change this entry to 'saved' or your
    # array will desync and will not let you boot your system.
    default		0
    
    ## timeout sec
    # Set a timeout, in SEC seconds, before automatically booting the default entry
    # (normally the first entry defined).
    timeout		10
    
    ## hiddenmenu
    # Hides the menu by default (press ESC to see the menu)
    #hiddenmenu
    
    # Pretty colours
    #color cyan/blue white/blue
    
    ## password ['--md5'] passwd
    # If used in the first section of a menu file, disable all interactive editing
    # control (menu entry editor and command-line)  and entries protected by the
    # command 'lock'
    # e.g. password topsecret
    #      password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/
    # password topsecret
    
    #
    # examples
    #
    # title		Windows 95/98/NT/2000
    # root		(hd0,0)
    # makeactive
    # chainloader	+1
    #
    # title		Linux
    # root		(hd0,1)
    # kernel	/vmlinuz root=/dev/hda2 ro
    #
    
    #
    # Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST
    
    ### BEGIN AUTOMAGIC KERNELS LIST
    ## lines between the AUTOMAGIC KERNELS LIST markers will be modified
    ## by the debian update-grub script except for the default options below
    
    ## DO NOT UNCOMMENT THEM, Just edit them to your needs
    
    ## ## Start Default Options ##
    ## default kernel options
    ## default kernel options for automagic boot options
    ## If you want special options for specific kernels use kopt_x_y_z
    ## where x.y.z is kernel version. Minor versions can be omitted.
    ## e.g. kopt=root=/dev/hda1 ro
    ##      kopt_2_6_8=root=/dev/hdc1 ro
    ##      kopt_2_6_8_2_686=root=/dev/hdc2 ro
    # kopt=root=UUID=e3a2144f-b32c-4b99-8f16-7cf24e89840f ro
    # kopt_2_6=root=/dev/sda3 ro
    
    ## default grub root device
    ## e.g. groot=(hd0,0)
    # groot=(hd0,2)
    
    ## should update-grub create alternative automagic boot options
    ## e.g. alternative=true
    ##      alternative=false
    # alternative=true
    
    ## should update-grub lock alternative automagic boot options
    ## e.g. lockalternative=true
    ##      lockalternative=false
    # lockalternative=false
    
    ## additional options to use with the default boot option, but not with the
    ## alternatives
    ## e.g. defoptions=vga=791 resume=/dev/hda5
    # defoptions=quiet splash
    
    ## should update-grub lock old automagic boot options
    ## e.g. lockold=false
    ##      lockold=true
    # lockold=false
    
    ## altoption boot targets option
    ## multiple altoptions lines are allowed
    ## e.g. altoptions=(extra menu suffix) extra boot options
    ##      altoptions=(recovery) single
    # altoptions=(recovery mode) single
    
    ## controls how many kernels should be put into the menu.lst
    ## only counts the first occurence of a kernel, not the
    ## alternative kernel options
    ## e.g. howmany=all
    ##      howmany=7
    # howmany=all
    
    ## should update-grub create memtest86 boot option
    ## e.g. memtest86=true
    ##      memtest86=false
    # memtest86=true
    
    ## should update-grub adjust the value of the default booted system
    ## can be true or false
    # updatedefaultentry=false
    
    ## ## End Default Options ##
    
    title		Ubuntu, kernel 2.6.17-11-generic
    root		(hd0,2)
    kernel		/boot/vmlinuz-2.6.17-11-generic root=/dev/sda3 ro quiet splash
    initrd		/boot/initrd.img-2.6.17-11-generic
    quiet
    savedefault
    boot
    
    title		Ubuntu, kernel 2.6.17-11-generic (recovery mode)
    root		(hd0,2)
    kernel		/boot/vmlinuz-2.6.17-11-generic root=/dev/sda3 ro single
    initrd		/boot/initrd.img-2.6.17-11-generic
    boot
    
    title		Ubuntu, kernel 2.6.17-10-generic
    root		(hd0,2)
    kernel		/boot/vmlinuz-2.6.17-10-generic root=/dev/sda3 ro quiet splash
    initrd		/boot/initrd.img-2.6.17-10-generic
    quiet
    savedefault
    boot
    
    title		Ubuntu, kernel 2.6.17-10-generic (recovery mode)
    root		(hd0,2)
    kernel		/boot/vmlinuz-2.6.17-10-generic root=/dev/sda3 ro single
    initrd		/boot/initrd.img-2.6.17-10-generic
    boot
    
    title		Ubuntu, memtest86+
    root		(hd0,2)
    kernel		/boot/memtest86+.bin
    quiet
    boot
    
    ### END DEBIAN AUTOMAGIC KERNELS LIST
    
    # This is a divider, added to separate the menu items below from the Debian
    # ones.
    title		Other operating systems:
    root
    
    
    # This entry automatically added by the Debian installer for a non-linux OS
    # on /dev/sda1
    title		Windows XP Media Center Edition
    root		(hd0,0)
    savedefault
    makeactive
    chainloader	+1
    Se potete postarmi anche come devo modificarlo mi fate un favore, grazie!

  5. #5
    allora,non puoi modificarlo perchè è un file di sistema,perciò appartiene all'utente root e da utente normale non puoi modificarlo.
    per modificarlo,apri un terminale,e dai questo comando:
    sudo gedit /boot/grub/menu.lst

    la sessione che ci interessa è:
    ## default num
    # Set the default entry to the entry number NUM. Numbering starts from 0, and
    # the entry number 0 is the default if the command is not used.
    #
    # You can specify 'saved' instead of a number. In this case, the default entry
    # is the entry saved with the command 'savedefault'.
    # WARNING: If you are using dmraid do not change this entry to 'saved' or your
    # array will desync and will not let you boot your system.
    default 0
    se conosci un po' l'inglese è estremamente intuitivo.se non lo conosci,dopo le righe commentate (una riga che inizia con # è un commento e in quanto tale non è mai presa in esame come codice),c'è default 0 .0 indica il numero della voce che parte di default (comincia a contare da 0,e non da 1).quindi,se vuoi far partire windows,che è come vedi la 6^ voce,cambia il valore di default da 0 a 5.

    analogamente procederai se vuoi modificare il tempo di timeout.

    ricordati di salvare il file,a fine lavoro.

  6. #6
    Utente di HTML.it
    Registrato dal
    May 2006
    Messaggi
    136
    ho fatto!

    perfetto funziona!

    Grazie mille!

  7. #7
    figurati!
    benvenuto in GNU/Linux

  8. #8
    Utente di HTML.it
    Registrato dal
    May 2006
    Messaggi
    136
    Grazie mille!

    verrò a farvi un bel po di domande

  9. #9
    Ma alla fine, entrati nell'ottica di funzionamento di Linux, poi le domande non sono nemmeno così tante.. E' un sistema abbastanza lineare

    Ad ogni modo, benvenuto

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.