Ubuntu 18.04 Live-USB boot freezes on Dell Alienware m15 [SOLVED]

Observed behavior

While booting on a live-USB key  to install Ubuntu 18.04 on an Alienware m15 (with SSD NVME disks), the installer gets stuck. No graphical welcome screen.

Solution

Modify Grub options:

  1. When Grub shows options, select an entry (say « Install Ubuntu »), type e to edit.
  2. Replace quiet splash --- by acpi=off (old syntax noacpi does not work).

This worked for me, I had the installer working.

Install Ubuntu 18.04 along Windows 10 on a Dell Alienware m15 with NVME disks

Objective

  1. Install Ubuntu 18.04
  2. on an Alienware m15,
  3. with two SSD NVME disks,
  4. and Windows 10 already installed (and the will to keep it)

Organization of this article

This article is made of different parts that were put together after various tries before success. I tried to verify the reproducibility of each step, but I may have missed some.

Parts are presented in a logical order, not a chronological order which would looks like disorder.

Step 0: allocate disk space from Windows

  • Resize partition(s) from Windows 10 before launching Ubuntu installer. Some users report having boot issues with Windows 8 and Windows 10 if not doing this way.

Step 1 : boot on a Ubuntu 18.04 live-USB key

Step 2: have Ubuntu installer see NVME disks

Step 3: workaround to log in

 

Coloriser ses logs avec CCZE et LESS

CCZE (apt-get install ccze) permet de coloriser les logs.

Une utilisation possible:

tail -f fichier.log | ccze

Mais pour consulter un fichier de log existant avec un pager comme less, il faut sortir les options :

ccze -A <fichier.log | less -R

(attention à bien ajouter le "<" devant le nom de fichier)

Memento gestion de paquet avec DPKG et APT

Pour Ubuntu et Debian.

Lister les paquets fournissant le fichier « monfichier »

apt-get intall apt-file
apt-file update
apt-file search "monfichier"

Lister les fichiers d’un paquet *pas* installé

Pré-requis : avoir apt-file installé et mis à jour (i.e. apt-get intall apt-file && apt-file update)

apt-file search mon-paquet-pas-installé

Lister les fichiers d’un fichier .deb *pas* installé

dpkg -c mon-fichier-pas-installé.deb

Lister les scripts pre-install / post-install d’un fichier .deb *pas* installé

dpkg -e mon-fichier-pas-installé.de

Lister les fichiers d’un paquet installé

dpkg -L mon-paquet-installé

Ressources

SuperUser : How to list files of a Debian package without install

CentOS/RHEL: kit de survie pour Debian-eux ou Ubuntu-ist

Logo CentOSContexte : Centos 7

Packages

Chercher un paquet

yum search nom-du-paquet

Lister les paquets installés

rpm -qa

Lister les fichiers d’un package installé

rpm -ql nom-du-paquet-installé

Lister les fichiers d’un paquet *pas* installé

Utiliser repoquery:

yum -y install yum-utils
repoquery -l nom-du-paquet-PAS-installé

Lister les paquets fournissant le fichier “monfichier”

yum whatprovides monfichier

 

Liens