From 7d3a526cecae25606d2bc041af3d1ad119e710c9 Mon Sep 17 00:00:00 2001 From: Marcos Tischer Vallim Date: Thu, 27 Jun 2019 11:02:56 -0300 Subject: [PATCH 1/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f85f651..e7eda04 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ sudo chroot $HOME/live-ubuntu-from-scratch/chroot 9. **Install window manager** ``` apt-get install -y \ - plymouth-theme-ubuntu-gnome-logo \ + plymouth-theme-ubuntu-logo \ ubuntu-gnome-desktop \ ubuntu-gnome-wallpapers ``` @@ -466,4 +466,4 @@ sudo umount $HOME/live-ubuntu-from-scratch/chroot/run -no-emul-boot \ -boot-load-size 4 \ -boot-info-table -o ../ubuntu-from-scratch.iso . - ``` \ No newline at end of file + ``` From 89ce657f2bc6ca9f3831fc593a5ad2d3cd5f6327 Mon Sep 17 00:00:00 2001 From: Marcos Tischer Vallim Date: Thu, 27 Jun 2019 11:49:19 -0300 Subject: [PATCH 2/4] Update README.md --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e7eda04..1b99401 100644 --- a/README.md +++ b/README.md @@ -376,12 +376,15 @@ sudo umount $HOME/live-ubuntu-from-scratch/chroot/run sudo cp -v image/casper/filesystem.manifest image/casper/filesystem.manifest-desktop - REMOVE='ubiquity ubiquity-frontend-gtk ubiquity-frontend-kde casper lupin-casper live-initramfs user-setup discover1 xresprobe os-prober debian-installer4' - - for i in $REMOVE - do - sudo sed -i "/${i}/d" image/casper/filesystem.manifest-desktop - done + sudo sed -i '/ubiquity/d' image/casper/filesystem.manifest-desktop + + sudo sed -i '/casper/d' image/casper/filesystem.manifest-desktop + + sudo sed -i '/discover/d' image/casper/filesystem.manifest-desktop + + sudo sed -i '/laptop-detect/d' image/casper/filesystem.manifest-desktop + + sudo sed -i '/os-prober/d' image/casper/filesystem.manifest-desktop ``` ## Compress the chroot From 87e988bb760bc1919f93c325509e3ec6a2f7c84e Mon Sep 17 00:00:00 2001 From: Marcos Tischer Vallim Date: Thu, 27 Jun 2019 15:54:13 -0300 Subject: [PATCH 3/4] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 1b99401..20d00d8 100644 --- a/README.md +++ b/README.md @@ -221,8 +221,6 @@ sudo chroot $HOME/live-ubuntu-from-scratch/chroot rm -rf /tmp/* ~/.bash_history - rm /etc/resolv.conf - umount /proc umount /sys From 80cb6b42f0c0f8763da1c1204217efc307c29e2f Mon Sep 17 00:00:00 2001 From: Marcos Tischer Vallim Date: Thu, 27 Jun 2019 16:43:34 -0300 Subject: [PATCH 4/4] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 20d00d8..cb34b63 100644 --- a/README.md +++ b/README.md @@ -60,10 +60,13 @@ sudo chroot $HOME/live-ubuntu-from-scratch/chroot ``` cat < /etc/apt/sources.list deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse + deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse deb http://us.archive.ubuntu.com/ubuntu/ bionic-security main restricted universe multiverse + deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-security main restricted universe multiverse deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe multiverse + deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe multiverse EOF ```