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.

#1 Le 29/01/2016, à 23:41

smokeh

[TUTO] Installation Ubuntu Lenovo Yoga 3 1470 modèle:80JH

Bonjour
Voici mon tutoriel pour l'installation d'Ubuntu 14.04.3 64bits sur le Yoga 3 14.
récapitulatif de ma config:
intel 5200U
256 giga ssd
intel 3160 wireless
8 giga de ram
2Xusb3 et 1xusb2combo chargeur
1 HDMI
1 jack
http://support.lenovo.com/fr/fr/product … oga-3-1470

1)Tout d'abord il faut savoir que ce portable sur les dalles tactiles lg on un soucis avec le multitouch > il faut mettre à jour le firmware de la dalle en ver. Intel_RST_Patch 2.0
-Voici le lien du patch : http://support.lenovo.com/fr/fr/product … s/DS104486

2)Une fois la mise à jour du bios en version 95 mon installation à débutée :j'adore mettre à jour les bios j'aime le risque!!! big_smile

3)Sous Windows pour accéder au menu permettant l'accès au bios il faut donc avoir la touche maj enfoncé en cliquant sur arrêter l'ordinateur.

4)Une fois dans le bios on désactive directement le secureboot et on passe de UEFI à legacy > la raison de cela était la reconnaissance de ma clé usb (1 fois sur 5) pour le choix du boot sur celle-ci.
-Je suis passé de UEFI en legacy car j'ai un modèle sdd 256 giga et je n'avais pas l'utilité de l'UEFI...Il était destiné à faire tourner Windows et Ubuntu!!!

5) J'ai tout d'abord installé un windows (la meme version que celle déja préinstallé) dont le partitionnement ne me convenais pas ( il y a un partition de restauration que je voulais faire sauter pour récupérer de l'espace)
-j'ai d'abord passer la partition du disque dur de gpt à mbr car j'ai rencontré un problème de driver à l'installation de Windows 10 : https://support.microsoft.com/fr-fr/kb/2755139 > avec le live usb windows il faut ouvrir une invite de commande (touche shift + F10) avant de commencer l'installation car il ne trouve pas les partitions du disque dur(en occurrence mon ssd.)
voilà les commandes :

diskpart
list volume
select volume "choixdunuméro"
convert mbr

6)J'ai partitionné mon ssd 100 giga pour Windows et le reste pour Ubuntu (choix perso vous pouvez faire ce que vous voulez)installation de Windows ok (d’ailleurs j'ai une question car j'ai utilisé une version propre . pas eu besoin de l'activée avec un crack ou autre : ma version est non modifiée et original et j'ai bizarrement la clé de licence de l'ancien Windows 10 qui était dessus)

7)Création de la clé usb Ubuntu avec Rufus aucun soucis

8)Boot sur la session live de ubuntu > petit soucis le wifi n'est pas reconnu sad (Intel Corporation Wireless 3160 (rev 93) identifiant matériel : 8086:08b4 ) > on ouvre un terminal et on lance la commande

sudo modprobe -r ideapad-laptop
sudo rfkill unblock all

9) Le wifi fonctionne ainsi que le Bluetooth big_smile > installation de ubuntu sur ma partition restante.(je n'ai pas souhaité mettre de swap car je n'utilise pas la mise en veille prolongée et que j'ai 8 giga de mémoire vive)

10) Une fois l'installation terminé je me rend compte que ma dalle tactile ne détecte pas quand je fais un glissé avec deux doigts :

sudo apt-get install xserver-xorg-input-evdev-lts-trusty touchegg

- redémarrer et vous avez le tactile qui fonctionne avec deux doigts.

11) récapitulatif de ce qui fonctionne :
son ok
sortie jack ok
usb 3 ok
usb 2 ok
wifi ok
bluetooth ok
clavier (touche raccourci et fn ) ok
touchpad ok (détection de deux doigts)
rétroéclairage ok
cpu/graphique ( cpu intel 5200U) ok
touche de volumes ok
Sortie HDMI > ok

rotation écran OK pas automatique mais avec touche > j'utilise un script et la touche windows+f5 du clavier
il faut utiliser ce script :

#!/bin/bash
# This script rotates the screen and touchscreen input 90 degrees each time it is called, 
# also disables the touchpad, and enables the virtual keyboard accordingly

# by Ruben Barkow: https://gist.github.com/rubo77/daa262e0229f6e398766

#### configuration
# find your Touchscreen and Touchpad device with `xinput`
TouchscreenDevice='ELAN Touchscreen'
TouchpadDevice='SynPS/2 Synaptics TouchPad'

if [ "$1" = "--help"  ] || [ "$1" = "-h"  ] ; then
echo 'Usage: rotate-screen.sh [OPTION]'
echo
echo 'This script rotates the screen and touchscreen input 90 degrees each time it is called,' 
echo 'also disables the touchpad, and enables the virtual keyboard accordingly'
echo
echo Usage:
echo ' -h --help display this help'
echo ' -j (just horizontal) rotates the screen and touchscreen input only 180 degrees'
echo ' -n always rotates the screen back to normal'
exit 0
fi

touchpadEnabled=$(xinput --list-props "$TouchpadDevice" | awk '/Device Enabled/{print $NF}')
screenMatrix=$(xinput --list-props "$TouchscreenDevice" | awk '/Coordinate Transformation Matrix/{print $5$6$7$8$9$10$11$12$NF}')

# Matrix for rotation
# ⎡ 1 0 0 ⎤
# ⎜ 0 1 0 ⎥
# ⎣ 0 0 1 ⎦
normal='1 0 0 0 1 0 0 0 1'
normal_float='1.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.000000'

#⎡ -1  0 1 ⎤
#⎜  0 -1 1 ⎥
#⎣  0  0 1 ⎦
inverted='-1 0 1 0 -1 1 0 0 1'
inverted_float='-1.000000,0.000000,1.000000,0.000000,-1.000000,1.000000,0.000000,0.000000,1.000000'

# 90° to the left 
# ⎡ 0 -1 1 ⎤
# ⎜ 1  0 0 ⎥
# ⎣ 0  0 1 ⎦
left='0 -1 1 1 0 0 0 0 1'
left_float='0.000000,-1.000000,1.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000'

# 90° to the right
#⎡  0 1 0 ⎤
#⎜ -1 0 1 ⎥
#⎣  0 0 1 ⎦
right='0 1 0 -1 0 1 0 0 1'

if [ $screenMatrix == $normal_float ] && [ "$1" != "-n" ]
then
  echo "Upside down"
  xrandr -o inverted
  xinput set-prop "$TouchscreenDevice" 'Coordinate Transformation Matrix' $inverted
  xinput disable "$TouchpadDevice"
  # Remove hashtag below if you want pop-up the virtual keyboard  
  #onboard &
elif [ $screenMatrix == $inverted_float ] && [ "$1" != "-j" ] && [ "$1" != "-n" ]
then
  echo "90° to the left"
  xrandr -o left
  xinput set-prop "$TouchscreenDevice" 'Coordinate Transformation Matrix' $left
  xinput disable "$TouchpadDevice"
  #killall onboard
elif [ $screenMatrix == $left_float ] && [ "$1" != "-j" ] && [ "$1" != "-n" ]
then
  echo "90° to the right"
  xrandr -o right
  xinput set-prop "$TouchscreenDevice" 'Coordinate Transformation Matrix' $right
  xinput disable "$TouchpadDevice"
  #killall onboard
else
  echo "Back to normal"
  xrandr -o normal
  xinput set-prop "$TouchscreenDevice" 'Coordinate Transformation Matrix' $normal
  xinput enable "$TouchpadDevice"
  #killall onboard
fi

il faut le crée en faisant

sudo nano /usr/local/bin/rotate-screen.sh

et en collant le contenu du script à l'intérieur.
après il suffit juste de rajouter un racourci clavier qui demande au script de se lancer ... c'est dans parametre système > clavier >racourci personnel .
en gros j'ai mis rotation d'ecran pour le nom du script et la commande est

/usr/local/bin/rotate-screen.sh

bluetooth ok : plus de soucis avec les nouveaux drivers !

Dernière modification par smokeh (Le 23/04/2016, à 12:58)

Hors ligne

#2 Le 01/02/2016, à 18:25

malbo

Re : [TUTO] Installation Ubuntu Lenovo Yoga 3 1470 modèle:80JH

Bonjour,
Ce n'est pas clair pour moi l'état final de ton installation. Je te prie de démarrer une session de ton Ubuntu installé et depuis cette session, de faire un Boot-Info. Puis donner l'URL de ce Boot-Info dans ta réponse à ce message.

Hors ligne

#3 Le 01/02/2016, à 18:31

smokeh

Re : [TUTO] Installation Ubuntu Lenovo Yoga 3 1470 modèle:80JH

malbo a écrit :

Bonjour,
Ce n'est pas clair pour moi l'état final de ton installation. Je te prie de démarrer une session de ton Ubuntu installé et depuis cette session, de faire un Boot-Info. Puis donner l'URL de ce Boot-Info dans ta réponse à ce message.

 Boot Info Script e7fc706 + Boot-Repair extra info      [Boot-Info 9Feb2015]


============================= Boot Info Summary: ===============================

 => Grub2 (v2.00) is installed in the MBR of /dev/sda and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for (,msdos5)/boot/grub.

sda1: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows 8/2012: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /bootmgr /Boot/BCD

sda2: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows 8/2012: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /bootmgr /Windows/System32/winload.exe

sda3: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows 8/2012: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        

sda4: __________________________________________________________________________

    File system:       Extended Partition
    Boot sector type:  -
    Boot sector info: 

sda5: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 14.04.3 LTS 
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/grub/i386-pc/core.img

sda6: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        

============================ Drive/Partition Info: =============================

Drive: sda _____________________________________________________________________

Disk /dev/sda: 256.1 GB, 256060514304 bytes
255 heads, 63 sectors/track, 31130 cylinders, total 500118192 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1    *          2,048     1,026,047     1,024,000   7 NTFS / exFAT / HPFS
/dev/sda2           1,026,048   212,017,955   210,991,908   7 NTFS / exFAT / HPFS
/dev/sda3         212,019,200   212,994,047       974,848  27 Hidden NTFS (Recovery Environment)
/dev/sda4         212,996,094   500,117,503   287,121,410   5 Extended
/dev/sda5         212,996,096   261,822,267    48,826,172  83 Linux
/dev/sda6         261,824,512   500,117,503   238,292,992  83 Linux


"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/sda1        EECC8A9BCC8A5E29                       ntfs       Réservé au système
/dev/sda2        087A917A7A9164EA                       ntfs       
/dev/sda3        DC860CBE860C9B62                       ntfs       
/dev/sda5        527e9a08-b3db-4548-9212-f37bb717f8e5   ext4       
/dev/sda6        4e3bf018-a295-4278-997e-e38b2161d097   ext4       

========================= "ls -l /dev/disk/by-id" output: ======================

total 0
lrwxrwxrwx 1 root root  9 Feb  1 17:28 ata-SAMSUNG_MZYTE256HMHP-000L2_S1PNNYAG602631 -> ../../sda
lrwxrwxrwx 1 root root 10 Feb  1 17:29 ata-SAMSUNG_MZYTE256HMHP-000L2_S1PNNYAG602631-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Feb  1 17:29 ata-SAMSUNG_MZYTE256HMHP-000L2_S1PNNYAG602631-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Feb  1 17:29 ata-SAMSUNG_MZYTE256HMHP-000L2_S1PNNYAG602631-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 Jan 30 10:38 ata-SAMSUNG_MZYTE256HMHP-000L2_S1PNNYAG602631-part4 -> ../../sda4
lrwxrwxrwx 1 root root 10 Jan 30 10:38 ata-SAMSUNG_MZYTE256HMHP-000L2_S1PNNYAG602631-part5 -> ../../sda5
lrwxrwxrwx 1 root root 10 Jan 30 10:38 ata-SAMSUNG_MZYTE256HMHP-000L2_S1PNNYAG602631-part6 -> ../../sda6
lrwxrwxrwx 1 root root  9 Feb  1 17:28 wwn-0x5002538844584d30 -> ../../sda
lrwxrwxrwx 1 root root 10 Feb  1 17:29 wwn-0x5002538844584d30-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Feb  1 17:29 wwn-0x5002538844584d30-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Feb  1 17:29 wwn-0x5002538844584d30-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 Jan 30 10:38 wwn-0x5002538844584d30-part4 -> ../../sda4
lrwxrwxrwx 1 root root 10 Jan 30 10:38 wwn-0x5002538844584d30-part5 -> ../../sda5
lrwxrwxrwx 1 root root 10 Jan 30 10:38 wwn-0x5002538844584d30-part6 -> ../../sda6

================================ Mount points: =================================

Device           Mount_Point              Type       Options

/dev/sda5        /                        ext4       (rw,errors=remount-ro)
/dev/sda6        /home                    ext4       (rw)


=========================== sda5/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by 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
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

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
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  527e9a08-b3db-4548-9212-f37bb717f8e5
else
  search --no-floppy --fs-uuid --set=root 527e9a08-b3db-4548-9212-f37bb717f8e5
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=hidden
    set timeout=0
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 0 ; then
    set timeout=0
  fi
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
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-527e9a08-b3db-4548-9212-f37bb717f8e5' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  527e9a08-b3db-4548-9212-f37bb717f8e5
	else
	  search --no-floppy --fs-uuid --set=root 527e9a08-b3db-4548-9212-f37bb717f8e5
	fi
	linux	/boot/vmlinuz-3.19.0-47-generic root=UUID=527e9a08-b3db-4548-9212-f37bb717f8e5 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.19.0-47-generic
}
submenu 'Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-527e9a08-b3db-4548-9212-f37bb717f8e5' {
	menuentry 'Ubuntu, avec Linux 3.19.0-47-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-47-generic-advanced-527e9a08-b3db-4548-9212-f37bb717f8e5' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  527e9a08-b3db-4548-9212-f37bb717f8e5
		else
		  search --no-floppy --fs-uuid --set=root 527e9a08-b3db-4548-9212-f37bb717f8e5
		fi
		echo	'Chargement de Linux 3.19.0-47-generic…'
		linux	/boot/vmlinuz-3.19.0-47-generic root=UUID=527e9a08-b3db-4548-9212-f37bb717f8e5 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.19.0-47-generic
	}
	menuentry 'Ubuntu, with Linux 3.19.0-47-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-47-generic-recovery-527e9a08-b3db-4548-9212-f37bb717f8e5' {
		recordfail
		load_video
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  527e9a08-b3db-4548-9212-f37bb717f8e5
		else
		  search --no-floppy --fs-uuid --set=root 527e9a08-b3db-4548-9212-f37bb717f8e5
		fi
		echo	'Chargement de Linux 3.19.0-47-generic…'
		linux	/boot/vmlinuz-3.19.0-47-generic root=UUID=527e9a08-b3db-4548-9212-f37bb717f8e5 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.19.0-47-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  527e9a08-b3db-4548-9212-f37bb717f8e5
	else
	  search --no-floppy --fs-uuid --set=root 527e9a08-b3db-4548-9212-f37bb717f8e5
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  527e9a08-b3db-4548-9212-f37bb717f8e5
	else
	  search --no-floppy --fs-uuid --set=root 527e9a08-b3db-4548-9212-f37bb717f8e5
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Recovery Environment (loader) (sur /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-EECC8A9BCC8A5E29' {
	insmod part_msdos
	insmod ntfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  EECC8A9BCC8A5E29
	else
	  search --no-floppy --fs-uuid --set=root EECC8A9BCC8A5E29
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### 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 ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sda5/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda5 during installation
UUID=527e9a08-b3db-4548-9212-f37bb717f8e5 /               ext4    errors=remount-ro 0       1
# /home was on /dev/sda6 during installation
UUID=4e3bf018-a295-4278-997e-e38b2161d097 /home           ext4    defaults        0       2
--------------------------------------------------------------------------------

=============================== StdErr Messages: ===============================

cat: write error: Broken pipe

ADDITIONAL INFORMATION :
=================== log of boot-info 2016-02-01__17h28 ===================
boot-info version : 4ppa35
boot-sav version : 4ppa35
glade2script version : 3.2.2~ppa47~saucy
boot-sav-extra version : 4ppa35
boot-info is executed in installed-session (Ubuntu 14.04.3 LTS, trusty, Ubuntu, x86_64)
CPU op-mode(s):        32-bit, 64-bit
BOOT_IMAGE=/boot/vmlinuz-3.19.0-47-generic root=UUID=527e9a08-b3db-4548-9212-f37bb717f8e5 ro quiet splash vt.handoff=7

=================== os-prober:
/dev/disk/by-uuid/527e9a08-b3db-4548-9212-f37bb717f8e5:L'OS actuellement utilisé - Ubuntu 14.04.3 LTS CurrentSession:linux
/dev/sda1:Windows 10 (loader):Windows:chain

=================== blkid:
/dev/sda1: LABEL="RM-CM-)servM-CM-) au systM-CM-(me" UUID="EECC8A9BCC8A5E29" TYPE="ntfs"
/dev/sda2: UUID="087A917A7A9164EA" TYPE="ntfs"
/dev/sda3: UUID="DC860CBE860C9B62" TYPE="ntfs"
/dev/sda5: UUID="527e9a08-b3db-4548-9212-f37bb717f8e5" TYPE="ext4"
/dev/sda6: UUID="4e3bf018-a295-4278-997e-e38b2161d097" TYPE="ext4"

disk/by-uuid/527e9a08-b3db-4548-9212-f37bb717f8e5 (sda) has unknown type. Veuillez indiquer ce message à boot.repair@gmail.com

1 disks with OS, 2 OS : 1 Linux, 0 MacOS, 1 Windows, 0 unknown type OS.

Windows not detected by os-prober on sda2.
Linux not detected by os-prober on sda5. Veuillez indiquer ce message à boot.repair@gmail.com
Avertissement : la partition étendue ne commence pas sur une frontière de
cylindres. DOS et Linux interpréteront les contenus différemment.

=================== //etc/grub.d/ :
drwxr-xr-x  2 root root    4096 janv. 10 00:13 grub.d
total 76
-rwxr-xr-x 1 root root  9791 déc.  17 16:00 00_header
-rwxr-xr-x 1 root root  6058 mai   13  2015 05_debian_theme
-rwxr-xr-x 1 root root 11608 déc.  17 16:00 10_linux
-rwxr-xr-x 1 root root 10412 déc.  17 16:00 20_linux_xen
-rwxr-xr-x 1 root root  1992 mars  12  2014 20_memtest86+
-rwxr-xr-x 1 root root 11692 déc.  17 16:00 30_os-prober
-rwxr-xr-x 1 root root  1416 déc.  17 16:00 30_uefi-firmware
-rwxr-xr-x 1 root root   214 déc.  17 16:00 40_custom
-rwxr-xr-x 1 root root   216 déc.  17 16:00 41_custom
-rw-r--r-- 1 root root   483 déc.  17 16:00 README




=================== //etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

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 enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# 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_RECOVERY="true"

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




=================== UEFI/Legacy mode:
This installed-session is not in EFI-mode.
EFI in dmesg.
[    0.000000] ACPI: UEFI 0x00000000ACFC8000 000042 (v01 LENOVO CB-01    00000002 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000ACFC4000 0002CE (v01 LENOVO CB-01    00000002 PTEC 00000002)
SecureBoot disabled.


=================== PARTITIONS & DISKS:
sda1	: sda,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	is-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	bootmgr,	is-winboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	/mnt/boot-sav/sda1.
sda2	: sda,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	is-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	haswinload,	no-recov-nor-hid,	bootmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	/mnt/boot-sav/sda2.
sda3	: sda,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	recovery-or-hidden,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	/mnt/boot-sav/sda3.
sda5	: sda,	not-sepboot,	grubenv-ok	grub2,	signed grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	/.
sda6	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	/home.

sda	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, 	not-usb,	has-os,	2048 sectors * 512 bytes


=================== parted -l:

Model: ATA SAMSUNG MZYTE256 (scsi)
Disk /dev/sda: 256GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End    Size    Type      File system  Flags
1      1049kB  525MB  524MB   primary   ntfs         boot
2      525MB   109GB  108GB   primary   ntfs
3      109GB   109GB  499MB   primary   ntfs         diag
4      109GB   256GB  147GB   extended
5      109GB   134GB  25.0GB  logical   ext4
6      134GB   256GB  122GB   logical   ext4

=================== parted -lm:

BYT;
/dev/sda:256GB:scsi:512:512:msdos:ATA SAMSUNG MZYTE256;
1:1049kB:525MB:524MB:ntfs::boot;
2:525MB:109GB:108GB:ntfs::;
3:109GB:109GB:499MB:ntfs::diag;
4:109GB:256GB:147GB:::;
5:109GB:134GB:25.0GB:ext4::;
6:134GB:256GB:122GB:ext4::;

=================== lsblk:
KNAME TYPE FSTYPE   SIZE LABEL
sda   disk        238,5G
sda1  part ntfs     500M Réservé au système
sda2  part ntfs   100,6G
sda3  part ntfs     476M
sda4  part            1K
sda5  part ext4    23,3G
sda6  part ext4   113,6G

KNAME ROTA RO RM STATE   MOUNTPOINT
sda      0  0  0 running
sda1     0  0  0         /mnt/boot-sav/sda1
sda2     0  0  0         /mnt/boot-sav/sda2
sda3     0  0  0         /mnt/boot-sav/sda3
sda4     0  0  0
sda5     0  0  0         /
sda6     0  0  0         /home


=================== mount:
/dev/sda5 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
/dev/sda6 on /home type ext4 (rw)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=loic)
/dev/sda1 on /mnt/boot-sav/sda1 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096)
/dev/sda2 on /mnt/boot-sav/sda2 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096)
/dev/sda3 on /mnt/boot-sav/sda3 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096)


=================== ls:
/sys/block/sda (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sda1 sda2 sda3 sda4 sda5 sda6 size slaves stat subsystem trace uevent
/dev (filtered):  autofs block bsg btrfs-control bus char console core cpu cpu_dma_latency cuse disk dri ecryptfs fb0 fd full fuse hidraw0 hpet i2c-0 i2c-1 i2c-2 i2c-3 i2c-4 iio:device0 iio:device1 iio:device2 iio:device3 iio:device4 iio:device5 input kmsg kvm log mapper mcelog media0 mei0 mem memory_bandwidth net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda2 sda3 sda4 sda5 sda6 sg0 shm snapshot snd stderr stdin stdout uhid uinput urandom usb v4l vboxdrv vboxdrvu vboxnetctl vboxusb vfio vga_arbiter vhci vhost-net video0 zero
ls /dev/mapper:  control

=================== hexdump -n512 -C /dev/sda1
00000000  eb 52 90 4e 54 46 53 20  20 20 20 00 02 08 00 00  |.R.NTFS    .....|
00000010  00 00 00 00 00 f8 00 00  3f 00 ff 00 00 08 00 00  |........?.......|
00000020  00 00 00 00 80 00 80 00  ff 9f 0f 00 00 00 00 00  |................|
00000030  aa a6 00 00 00 00 00 00  02 00 00 00 00 00 00 00  |................|
00000040  f6 00 00 00 01 00 00 00  29 5e 8a cc 9b 8a cc ee  |........)^......|
00000050  00 00 00 00 fa 33 c0 8e  d0 bc 00 7c fb 68 c0 07  |.....3.....|.h..|
00000060  1f 1e 68 66 00 cb 88 16  0e 00 66 81 3e 03 00 4e  |..hf......f.>..N|
00000070  54 46 53 75 15 b4 41 bb  aa 55 cd 13 72 0c 81 fb  |TFSu..A..U..r...|
00000080  55 aa 75 06 f7 c1 01 00  75 03 e9 dd 00 1e 83 ec  |U.u.....u.......|
00000090  18 68 1a 00 b4 48 8a 16  0e 00 8b f4 16 1f cd 13  |.h...H..........|
000000a0  9f 83 c4 18 9e 58 1f 72  e1 3b 06 0b 00 75 db a3  |.....X.r.;...u..|
000000b0  0f 00 c1 2e 0f 00 04 1e  5a 33 db b9 00 20 2b c8  |........Z3... +.|
000000c0  66 ff 06 11 00 03 16 0f  00 8e c2 ff 06 16 00 e8  |f...............|
000000d0  4b 00 2b c8 77 ef b8 00  bb cd 1a 66 23 c0 75 2d  |K.+.w......f#.u-|
000000e0  66 81 fb 54 43 50 41 75  24 81 f9 02 01 72 1e 16  |f..TCPAu$....r..|
000000f0  68 07 bb 16 68 52 11 16  68 09 00 66 53 66 53 66  |h...hR..h..fSfSf|
00000100  55 16 16 16 68 b8 01 66  61 0e 07 cd 1a 33 c0 bf  |U...h..fa....3..|
00000110  0a 13 b9 f6 0c fc f3 aa  e9 fe 01 90 90 66 60 1e  |.............f`.|
00000120  06 66 a1 11 00 66 03 06  1c 00 1e 66 68 00 00 00  |.f...f.....fh...|
00000130  00 66 50 06 53 68 01 00  68 10 00 b4 42 8a 16 0e  |.fP.Sh..h...B...|
00000140  00 16 1f 8b f4 cd 13 66  59 5b 5a 66 59 66 59 1f  |.......fY[ZfYfY.|
00000150  0f 82 16 00 66 ff 06 11  00 03 16 0f 00 8e c2 ff  |....f...........|
00000160  0e 16 00 75 bc 07 1f 66  61 c3 a1 f6 01 e8 09 00  |...u...fa.......|
00000170  a1 fa 01 e8 03 00 f4 eb  fd 8b f0 ac 3c 00 74 09  |............<.t.|
00000180  b4 0e bb 07 00 cd 10 eb  f2 c3 0d 0a 41 20 64 69  |............A di|
00000190  73 6b 20 72 65 61 64 20  65 72 72 6f 72 20 6f 63  |sk read error oc|
000001a0  63 75 72 72 65 64 00 0d  0a 42 4f 4f 54 4d 47 52  |curred...BOOTMGR|
000001b0  20 69 73 20 63 6f 6d 70  72 65 73 73 65 64 00 0d  | is compressed..|
000001c0  0a 50 72 65 73 73 20 43  74 72 6c 2b 41 6c 74 2b  |.Press Ctrl+Alt+|
000001d0  44 65 6c 20 74 6f 20 72  65 73 74 61 72 74 0d 0a  |Del to restart..|
000001e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000001f0  00 00 00 00 00 00 8a 01  a7 01 bf 01 00 00 55 aa  |..............U.|
00000200

=================== hexdump -n512 -C /dev/sda2
00000000  eb 52 90 4e 54 46 53 20  20 20 20 00 02 08 00 00  |.R.NTFS    .....|
00000010  00 00 00 00 00 f8 00 00  3f 00 ff 00 00 a8 0f 00  |........?.......|
00000020  00 00 00 00 80 00 80 00  23 7b 93 0c 00 00 00 00  |........#{......|
00000030  00 00 0c 00 00 00 00 00  02 00 00 00 00 00 00 00  |................|
00000040  f6 00 00 00 01 00 00 00  ea 64 91 7a 7a 91 7a 08  |.........d.zz.z.|
00000050  00 00 00 00 fa 33 c0 8e  d0 bc 00 7c fb 68 c0 07  |.....3.....|.h..|
00000060  1f 1e 68 66 00 cb 88 16  0e 00 66 81 3e 03 00 4e  |..hf......f.>..N|
00000070  54 46 53 75 15 b4 41 bb  aa 55 cd 13 72 0c 81 fb  |TFSu..A..U..r...|
00000080  55 aa 75 06 f7 c1 01 00  75 03 e9 dd 00 1e 83 ec  |U.u.....u.......|
00000090  18 68 1a 00 b4 48 8a 16  0e 00 8b f4 16 1f cd 13  |.h...H..........|
000000a0  9f 83 c4 18 9e 58 1f 72  e1 3b 06 0b 00 75 db a3  |.....X.r.;...u..|
000000b0  0f 00 c1 2e 0f 00 04 1e  5a 33 db b9 00 20 2b c8  |........Z3... +.|
000000c0  66 ff 06 11 00 03 16 0f  00 8e c2 ff 06 16 00 e8  |f...............|
000000d0  4b 00 2b c8 77 ef b8 00  bb cd 1a 66 23 c0 75 2d  |K.+.w......f#.u-|
000000e0  66 81 fb 54 43 50 41 75  24 81 f9 02 01 72 1e 16  |f..TCPAu$....r..|
000000f0  68 07 bb 16 68 52 11 16  68 09 00 66 53 66 53 66  |h...hR..h..fSfSf|
00000100  55 16 16 16 68 b8 01 66  61 0e 07 cd 1a 33 c0 bf  |U...h..fa....3..|
00000110  0a 13 b9 f6 0c fc f3 aa  e9 fe 01 90 90 66 60 1e  |.............f`.|
00000120  06 66 a1 11 00 66 03 06  1c 00 1e 66 68 00 00 00  |.f...f.....fh...|
00000130  00 66 50 06 53 68 01 00  68 10 00 b4 42 8a 16 0e  |.fP.Sh..h...B...|
00000140  00 16 1f 8b f4 cd 13 66  59 5b 5a 66 59 66 59 1f  |.......fY[ZfYfY.|
00000150  0f 82 16 00 66 ff 06 11  00 03 16 0f 00 8e c2 ff  |....f...........|
00000160  0e 16 00 75 bc 07 1f 66  61 c3 a1 f6 01 e8 09 00  |...u...fa.......|
00000170  a1 fa 01 e8 03 00 f4 eb  fd 8b f0 ac 3c 00 74 09  |............<.t.|
00000180  b4 0e bb 07 00 cd 10 eb  f2 c3 0d 0a 45 72 72 65  |............Erre|
00000190  75 72 20 6c 65 63 74 75  72 65 20 64 69 73 71 75  |ur lecture disqu|
000001a0  65 00 0d 0a 42 4f 4f 54  4d 47 52 20 63 6f 6d 70  |e...BOOTMGR comp|
000001b0  72 65 73 73 82 00 0d 0a  43 74 72 6c 2b 41 6c 74  |ress....Ctrl+Alt|
000001c0  2b 53 75 70 70 72 20 70  6f 75 72 20 72 65 64 82  |+Suppr pour red.|
000001d0  6d 61 72 72 65 72 0d 0a  00 73 74 61 72 74 0d 0a  |marrer...start..|
000001e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000001f0  00 00 00 00 00 00 8a 01  a2 01 b6 01 00 00 55 aa  |..............U.|
00000200

=================== hexdump -n512 -C /dev/sda3
00000000  eb 52 90 4e 54 46 53 20  20 20 20 00 02 08 00 00  |.R.NTFS    .....|
00000010  00 00 00 00 00 f8 00 00  3f 00 ff 00 00 28 a3 0c  |........?....(..|
00000020  00 00 00 00 80 00 80 00  ff df 0e 00 00 00 00 00  |................|
00000030  aa 9e 00 00 00 00 00 00  02 00 00 00 00 00 00 00  |................|
00000040  f6 00 00 00 01 00 00 00  62 9b 0c 86 be 0c 86 dc  |........b.......|
00000050  00 00 00 00 fa 33 c0 8e  d0 bc 00 7c fb 68 c0 07  |.....3.....|.h..|
00000060  1f 1e 68 66 00 cb 88 16  0e 00 66 81 3e 03 00 4e  |..hf......f.>..N|
00000070  54 46 53 75 15 b4 41 bb  aa 55 cd 13 72 0c 81 fb  |TFSu..A..U..r...|
00000080  55 aa 75 06 f7 c1 01 00  75 03 e9 dd 00 1e 83 ec  |U.u.....u.......|
00000090  18 68 1a 00 b4 48 8a 16  0e 00 8b f4 16 1f cd 13  |.h...H..........|
000000a0  9f 83 c4 18 9e 58 1f 72  e1 3b 06 0b 00 75 db a3  |.....X.r.;...u..|
000000b0  0f 00 c1 2e 0f 00 04 1e  5a 33 db b9 00 20 2b c8  |........Z3... +.|
000000c0  66 ff 06 11 00 03 16 0f  00 8e c2 ff 06 16 00 e8  |f...............|
000000d0  4b 00 2b c8 77 ef b8 00  bb cd 1a 66 23 c0 75 2d  |K.+.w......f#.u-|
000000e0  66 81 fb 54 43 50 41 75  24 81 f9 02 01 72 1e 16  |f..TCPAu$....r..|
000000f0  68 07 bb 16 68 52 11 16  68 09 00 66 53 66 53 66  |h...hR..h..fSfSf|
00000100  55 16 16 16 68 b8 01 66  61 0e 07 cd 1a 33 c0 bf  |U...h..fa....3..|
00000110  0a 13 b9 f6 0c fc f3 aa  e9 fe 01 90 90 66 60 1e  |.............f`.|
00000120  06 66 a1 11 00 66 03 06  1c 00 1e 66 68 00 00 00  |.f...f.....fh...|
00000130  00 66 50 06 53 68 01 00  68 10 00 b4 42 8a 16 0e  |.fP.Sh..h...B...|
00000140  00 16 1f 8b f4 cd 13 66  59 5b 5a 66 59 66 59 1f  |.......fY[ZfYfY.|
00000150  0f 82 16 00 66 ff 06 11  00 03 16 0f 00 8e c2 ff  |....f...........|
00000160  0e 16 00 75 bc 07 1f 66  61 c3 a1 f6 01 e8 09 00  |...u...fa.......|
00000170  a1 fa 01 e8 03 00 f4 eb  fd 8b f0 ac 3c 00 74 09  |............<.t.|
00000180  b4 0e bb 07 00 cd 10 eb  f2 c3 0d 0a 45 72 72 65  |............Erre|
00000190  75 72 20 6c 65 63 74 75  72 65 20 64 69 73 71 75  |ur lecture disqu|
000001a0  65 00 0d 0a 42 4f 4f 54  4d 47 52 20 63 6f 6d 70  |e...BOOTMGR comp|
000001b0  72 65 73 73 82 00 0d 0a  43 74 72 6c 2b 41 6c 74  |ress....Ctrl+Alt|
000001c0  2b 53 75 70 70 72 20 70  6f 75 72 20 72 65 64 82  |+Suppr pour red.|
000001d0  6d 61 72 72 65 72 0d 0a  00 73 74 61 72 74 0d 0a  |marrer...start..|
000001e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000001f0  00 00 00 00 00 00 8a 01  a2 01 b6 01 00 00 55 aa  |..............U.|
00000200

=================== df -Th:

Filesystem     Type      Size  Used Avail Use% Mounted on
udev           devtmpfs  3.9G   12K  3.9G   1% /dev
tmpfs          tmpfs     787M  1.5M  786M   1% /run
/dev/sda5      ext4       23G  4.8G   17G  23% /
none           tmpfs     4.0K     0  4.0K   0% /sys/fs/cgroup
none           tmpfs     5.0M     0  5.0M   0% /run/lock
none           tmpfs     3.9G  1.6M  3.9G   1% /run/shm
none           tmpfs     100M   68K  100M   1% /run/user
/dev/sda6      ext4      112G   30G   77G  29% /home
/dev/sda1      fuseblk   500M   29M  472M   6% /mnt/boot-sav/sda1
/dev/sda2      fuseblk   101G   43G   59G  43% /mnt/boot-sav/sda2
/dev/sda3      fuseblk   476M  390M   87M  82% /mnt/boot-sav/sda3

=================== fdisk -l:

Disk /dev/sda: 256.1 GB, 256060514304 bytes
255 heads, 63 sectors/track, 31130 cylinders, total 500118192 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xee2b7449

Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048     1026047      512000    7  HPFS/NTFS/exFAT
/dev/sda2         1026048   212017955   105495954    7  HPFS/NTFS/exFAT
/dev/sda3       212019200   212994047      487424   27  Hidden NTFS WinRE
/dev/sda4       212996094   500117503   143560705    5  Extended
/dev/sda5       212996096   261822267    24413086   83  Linux
/dev/sda6       261824512   500117503   119146496   83  Linux




=================== Suggested repair
The default repair of the Boot-Repair utility would purge (in order to) and reinstall the grub2 of sda5 into the MBR of sda.
Additional repair would be performed: unhide-bootmenu-10s   fix-windows-boot


=================== Blockers in case of suggested repair
Veuillez utiliser ce logiciel dans une session-live (live-CD ou live-USB). Cela vous permettra d'utiliser cette fonctionnalité.


=================== Final advice in case of suggested repair


Les fichiers de démarrage de [Linux] sont loin du début du disque. Votre BIOS pourrait ne pas les détecter. Vous voudrez peut-être re-essayer après avoir créé une partition /boot (EXT4, >200MB, en début de disque). Cela peut être réalisé via des outils tels que gParted. Puis sélectionnez cette partition via l'option [Partition /boot séparée :] de [Boot-Repair]. (http://doc.ubuntu-fr.org/tutoriel/partition_boot)


=================== User settings
The settings chosen by the user will not act on the boot.

c'est bon pour toi @malbo ? c'est une session non live je sais pas si ça te vas...

Dernière modification par smokeh (Le 01/02/2016, à 18:47)

Hors ligne

#4 Le 01/02/2016, à 18:58

malbo

Re : [TUTO] Installation Ubuntu Lenovo Yoga 3 1470 modèle:80JH

Merci pour le Boot-Info.
Dans ton post #1, je n'arrive pas à savoir si le Windows préinstallé d'origine quand tu as acheté cet ordi était Windows 8 ou Windows 10. Peux-tu préciser ?
D'autre part, j'ai vu que tu as créé ici une discussion au sujet d'un éventuel passage à Ubuntu 14.04.4 quand cette version sera sortie (c'est dans quelques jours). Ce que je veux te dire, c'est qu'il est important de faire un essai en session live de cette future version 14.04.4 pour vérifier si elle peut améliorer ton fonctionnement actuel. Si tu constates que les fonctionnalités qui ne marchent pas actuellement avec la version 14.04.3 continuent à ne pas marcher avec la 14.04.4, ce n'est pas la peine de bouger une oreille : il ne faudra pas chercher à installer le HWE stack de Wily même si cette andouille de Gestionnaire de mises à jour te le propose. C'est vraiment ça l'idée : n'installer un HWE stack que si ça apporte une amélioration.

Dernière modification par malbo (Le 01/02/2016, à 18:59)

Hors ligne

#5 Le 01/02/2016, à 19:03

smokeh

Re : [TUTO] Installation Ubuntu Lenovo Yoga 3 1470 modèle:80JH

C'etait bien un windows 10 dessus ... Mais la chose bizarre que j'ai retrouvé c'est qu'il y avait un fichier windows.old de présent sur le pc . peut etre que lenovo a fait la maj pour nous...
A ben merci !!! c'est ça que je voulais savoir ... en fait c'est pour le support de la rotation écran... vu que sur le topic du yoga 13: https://doc.ubuntu-fr.org/lenovo_yoga_13
il y a yoga-laptop pour la rotation d’écran et que c'est assez vieux je me posé la question du fonctionnement de l’écran avec la 14.04.4... j'ai regardé j'ai les meme HID sensors que dans le git de yoga-laptop...

Dernière modification par smokeh (Le 01/02/2016, à 19:04)

Hors ligne

#6 Le 01/02/2016, à 19:23

malbo

Re : [TUTO] Installation Ubuntu Lenovo Yoga 3 1470 modèle:80JH

smokeh a écrit :

C'etait bien un windows 10 dessus ... Mais la chose bizarre que j'ai retrouvé c'est qu'il y avait un fichier windows.old de présent sur le pc . peut etre que lenovo a fait la maj pour nous...

Cette partition sda3, elle était déjà là ou elle a été créée en même temps que ta nouvelle installation de Windows 10 ? :

/dev/sda3         212,019,200   212,994,047       974,848  27 Hidden NTFS (Recovery Environment)

D'habitude, je vois ce genre de partition quand il y a eu mise à niveau de Windows 7 vers Windows 10 (comme dans ce post) mais là, je ne sais pas trop ce que c'est...

Hors ligne

#7 Le 01/02/2016, à 19:27

smokeh

Re : [TUTO] Installation Ubuntu Lenovo Yoga 3 1470 modèle:80JH

elle à été crée en même temps que ma nouvelle installation de windows 10... je ne sais pas trop moi non plus car j'avais effacé toutes les partitions avant d'installer...

Dernière modification par smokeh (Le 01/02/2016, à 19:32)

Hors ligne

#8 Le 18/02/2016, à 16:28

smokeh

Re : [TUTO] Installation Ubuntu Lenovo Yoga 3 1470 modèle:80JH

Finalement tout fonctionne sur ce pc à par la rotation automatique utilisant le gyroscope de l'ordinateur. mais en soit ce n'est pas vraiment un problème car on peut faire la rotation de l’écran avec un raccourci clavier.

Hors ligne