Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#126 Le 22/08/2010, à 17:00

Meister3627

Re : [tuto]installer Ubuntu Manuellement

oui nous avons réussi l'install et je t'en remerci.pour ce qui est du multiboot on arrangera ca plus tard.j'ai d'autre petit soucis mais ce n'est pas grave

Hors ligne

#127 Le 22/08/2010, à 17:00

Josepe36

Re : [tuto]installer Ubuntu Manuellement

VICTOIRE ????

WINDOWS DEMARE ????

Oui c'est normal tu as une entrée pour le systéme normale et une autre pour le mode rescue


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#128 Le 22/08/2010, à 17:02

Meister3627

Re : [tuto]installer Ubuntu Manuellement

oui il y a pas de problème je suis un peu le béta testeur qui te permettre de faire le tuto parfait tongue
a toute

Hors ligne

#129 Le 22/08/2010, à 17:03

Josepe36

Re : [tuto]installer Ubuntu Manuellement

oui à toute

et merci pour ce bon moment wink

a+


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#130 Le 22/08/2010, à 17:06

Meister3627

Re : [tuto]installer Ubuntu Manuellement

a+ pourrais tu me donner par la suite les fichier de ton grub et de proper os que je pourrait adapter a mon pc.Comme ca problème régler déffinitivement.

Hors ligne

#131 Le 22/08/2010, à 17:45

Josepe36

Re : [tuto]installer Ubuntu Manuellement

voilà mon grub.cfg :

larrieu@larrieu:~$ cat /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
    saved_entry=${chosen}
    save_env saved_entry
  fi
}

function recordfail {
  set recordfail=1
  if [ -n ${have_grubenv} ]; then if [ -z ${boot_once} ]; then save_env recordfail; fi; fi
}
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set da55951f-e5d6-4c8b-8d67-0134dc1c90f8
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
insmod ext2
set root='(hd0,7)'
search --no-floppy --fs-uuid --set da55951f-e5d6-4c8b-8d67-0134dc1c90f8
set locale_dir=($root)/boot/grub/locale
set lang=fr
insmod gettext
if [ ${recordfail} = 1 ]; then
  set timeout=-1
else
  set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, avec Linux 2.6.32-24-generic' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,7)'
    search --no-floppy --fs-uuid --set da55951f-e5d6-4c8b-8d67-0134dc1c90f8
    linux    /boot/vmlinuz-2.6.32-24-generic root=UUID=da55951f-e5d6-4c8b-8d67-0134dc1c90f8 ro   quiet splash
    initrd    /boot/initrd.img-2.6.32-24-generic
}
menuentry 'Ubuntu, avec Linux 2.6.32-24-generic (mode de récupération)' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,7)'
    search --no-floppy --fs-uuid --set da55951f-e5d6-4c8b-8d67-0134dc1c90f8
    echo    'Chargement de Linux 2.6.32-24-generic ...'
    linux    /boot/vmlinuz-2.6.32-24-generic root=UUID=da55951f-e5d6-4c8b-8d67-0134dc1c90f8 ro single
    echo    'Chargement du disque mémoire initial...'
    initrd    /boot/initrd.img-2.6.32-24-generic
}
menuentry 'Ubuntu, avec Linux 2.6.32-21-generic' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,7)'
    search --no-floppy --fs-uuid --set da55951f-e5d6-4c8b-8d67-0134dc1c90f8
    linux    /boot/vmlinuz-2.6.32-21-generic root=UUID=da55951f-e5d6-4c8b-8d67-0134dc1c90f8 ro   quiet splash
    initrd    /boot/initrd.img-2.6.32-21-generic
}
menuentry 'Ubuntu, avec Linux 2.6.32-21-generic (mode de récupération)' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,7)'
    search --no-floppy --fs-uuid --set da55951f-e5d6-4c8b-8d67-0134dc1c90f8
    echo    'Chargement de Linux 2.6.32-21-generic ...'
    linux    /boot/vmlinuz-2.6.32-21-generic root=UUID=da55951f-e5d6-4c8b-8d67-0134dc1c90f8 ro single
    echo    'Chargement du disque mémoire initial...'
    initrd    /boot/initrd.img-2.6.32-21-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
    insmod ext2
    set root='(hd0,7)'
    search --no-floppy --fs-uuid --set da55951f-e5d6-4c8b-8d67-0134dc1c90f8
    linux16    /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
    insmod ext2
    set root='(hd0,7)'
    search --no-floppy --fs-uuid --set da55951f-e5d6-4c8b-8d67-0134dc1c90f8
    linux16    /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Windows 7 (loader) (on /dev/sda1)" {
    insmod ntfs
    set root='(hd0,1)'
    search --no-floppy --fs-uuid --set 00021807021803f6
    chainloader +1
}
menuentry "Ubuntu, with Linux 2.6.32-21-generic (on /dev/sda6)" {
    insmod ext2
    set root='(hd0,6)'
    search --no-floppy --fs-uuid --set 3cbcb5a3-be6d-481f-a821-c1264a16f160
    linux /boot/vmlinuz-2.6.32-21-generic root=UUID=3cbcb5a3-be6d-481f-a821-c1264a16f160 ro quiet splash
    initrd /boot/initrd.img-2.6.32-21-generic
}
menuentry "Ubuntu, with Linux 2.6.32-21-generic (recovery mode) (on /dev/sda6)" {
    insmod ext2
    set root='(hd0,6)'
    search --no-floppy --fs-uuid --set 3cbcb5a3-be6d-481f-a821-c1264a16f160
    linux /boot/vmlinuz-2.6.32-21-generic root=UUID=3cbcb5a3-be6d-481f-a821-c1264a16f160 ro single
    initrd /boot/initrd.img-2.6.32-21-generic
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

proper os n'existe pas, en revanche tu n'as pas, je ne sais pourquoi ,le paquet os-prober d'installer c'est lui qui cherche les different OS sur le disque.
il est dans ton cas trés utile.

ce qui devrait t'etre utile c'est ce fichier, qui permet de choisir le temp que le menu au demarage doit rester afficher :

larrieu@larrieu:~$ cat /etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_LINUX_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

Dernière modification par Josepe36 (Le 22/08/2010, à 17:47)


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#132 Le 22/08/2010, à 18:09

Meister3627

Re : [tuto]installer Ubuntu Manuellement

alors moi j'ai la même chose que toi en ce qui concerne cat/etc/default/grub
en revanche pas pareil du tout pour grub.cfg et comment j'install proper-os

Hors ligne

#133 Le 22/08/2010, à 18:14

Josepe36

Re : [tuto]installer Ubuntu Manuellement

grub.cfg c'est normal c'est unique à chacun, nombre d'os sur le disque dur.

pour os-prober, il faudrait mettre tes depots a jours, et tenter l'installation

sudo aptitude install os-prober

mais tu as reéussi a booter sur windows ?


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#134 Le 22/08/2010, à 18:18

Meister3627

Re : [tuto]installer Ubuntu Manuellement

oui et ca marche!

Hors ligne

#135 Le 22/08/2010, à 18:21

Josepe36

Re : [tuto]installer Ubuntu Manuellement

Meister3627 a écrit :

oui et ca marche!

ha ben alors on a réussi la totalité de l'installation, c'est bon ça big_smile

et je vais grace à toi pouvoir mettre plus d'info daans le tuto


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#136 Le 22/08/2010, à 18:23

Meister3627

Re : [tuto]installer Ubuntu Manuellement

oui nous avons réussi il me reste plus qu'a mettre os-prober mais j'ai quelque soucis de langue de clavier et de mise a jour qui detecte rien!

Hors ligne

#137 Le 22/08/2010, à 18:29

Josepe36

Re : [tuto]installer Ubuntu Manuellement

pour les soucis de langue

systeme>administration>langage supports
tu click sur "text" et selectionne le français
et click sur appliquer sur tout le systeme (en anglais apply....)

pour os-prober

systeme>administration>gestionnaire de paquets synaptic
configurtion > depots (la tu coche tout)
ensuite > click sur "recharger"

tu quittes et :

sudo aptitude install os-prober

Dernière modification par Josepe36 (Le 22/08/2010, à 18:30)


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#138 Le 22/08/2010, à 18:31

Meister3627

Re : [tuto]installer Ubuntu Manuellement

justement j'avais pas francais mais j'ai installer le package manuellement docn ca c'est régler

Hors ligne

#139 Le 22/08/2010, à 18:36

Meister3627

Re : [tuto]installer Ubuntu Manuellement

j'ai l'impression que mes sources et mes dépots ne sont pas bon

Hors ligne

#140 Le 22/08/2010, à 18:37

Josepe36

Re : [tuto]installer Ubuntu Manuellement

oui je sais c'est vide, pas grave ça marche quand meme


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#141 Le 22/08/2010, à 18:42

Josepe36

Re : [tuto]installer Ubuntu Manuellement

tiens voila mon synaptic

synaptict.th.png


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#142 Le 22/08/2010, à 18:50

Meister3627

Re : [tuto]installer Ubuntu Manuellement

Moi j'ai ceci:

http://img683.imageshack.us/img683/2183/capturewpb.png

edit modo : attention à la taille des images

Dernière modification par nesthib (Le 26/08/2010, à 01:45)

Hors ligne

#143 Le 22/08/2010, à 18:53

Josepe36

Re : [tuto]installer Ubuntu Manuellement

bien décoche
cdrom

et selectionne
c.archive.ubuntu.com/ubuntu à la place de serveur principal


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#144 Le 22/08/2010, à 18:54

Josepe36

Re : [tuto]installer Ubuntu Manuellement

tu as jolie bureau en français tongue


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#145 Le 22/08/2010, à 18:57

Meister3627

Re : [tuto]installer Ubuntu Manuellement

ok smile mais il n'y est pas.je sais pas ce qui c'est passer pour qu'il y est otant d'erreur

Hors ligne

#146 Le 22/08/2010, à 19:00

Josepe36

Re : [tuto]installer Ubuntu Manuellement

qu'est ce qu'il n'y ai pas ?
autant d'erreurs ? y'en a pas


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#147 Le 22/08/2010, à 19:01

Josepe36

Re : [tuto]installer Ubuntu Manuellement

tu avais fait un

sudo aptitude update

et un
sudo aptitude upgrade


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#148 Le 22/08/2010, à 19:02

Meister3627

Re : [tuto]installer Ubuntu Manuellement

et bien : c.archive.ubuntu.com/ubuntu
ensuite niveau erreur il y a:
le dual boot qui a merdé
proper-os non installer
le language francais non installer
les sources et dépots qui merdouille
dans firefox il y a toute les langues d'activer et impossible de désinstaller
mon clavier qui merdouille au niveau des touches (il me demande la marque de mon keyboard donc acer mais il y a pas le numéro de série correspondant)
et mon ubuntu est franglais.j'ai rien vu d'autre pour l'instant

Hors ligne

#149 Le 22/08/2010, à 19:08

Josepe36

Re : [tuto]installer Ubuntu Manuellement

alors on va essayer

gksudo gedit /etc/apt/sources.list

et ajjouter ces lignes :

deb http://fr.archive.ubuntu.com/ubuntu/ lucid main restricted
deb http://security.ubuntu.com/ubuntu lucid-security main restricted
deb http://fr.archive.ubuntu.com/ubuntu/ lucid-updates main restricted

ensuite tu ferme synaptic et :

sudo aptitude update


Développeur distribution Hybryde
www.hybryde.org

Hors ligne

#150 Le 22/08/2010, à 19:12

Josepe36

Re : [tuto]installer Ubuntu Manuellement

sans les #


Développeur distribution Hybryde
www.hybryde.org

Hors ligne