Update documentation

This commit is contained in:
Marcos Vallim 2019-06-27 16:54:51 -03:00
parent ea5643b868
commit 74c801f520
1 changed files with 39 additions and 15 deletions

View File

@ -102,14 +102,8 @@ sudo chroot $HOME/live-ubuntu-from-scratch/chroot
locales \ locales \
linux-generic linux-generic
``` ```
7. **Generate locales**
```
dpkg-reconfigure locales
```
> **Select option all**
8. **Graphical installer** 7. **Graphical installer**
``` ```
apt-get install -y \ apt-get install -y \
ubiquity \ ubiquity \
@ -119,7 +113,7 @@ sudo chroot $HOME/live-ubuntu-from-scratch/chroot
ubiquity-ubuntu-artwork ubiquity-ubuntu-artwork
``` ```
9. **Install window manager** 8. **Install window manager**
``` ```
apt-get install -y \ apt-get install -y \
plymouth-theme-ubuntu-gnome-logo \ plymouth-theme-ubuntu-gnome-logo \
@ -127,7 +121,7 @@ sudo chroot $HOME/live-ubuntu-from-scratch/chroot
ubuntu-gnome-wallpapers ubuntu-gnome-wallpapers
``` ```
10. **Install usefull applications** 9. **Install usefull applications**
``` ```
apt-get install -y \ apt-get install -y \
clamav-daemon \ clamav-daemon \
@ -138,7 +132,7 @@ sudo chroot $HOME/live-ubuntu-from-scratch/chroot
nano nano
``` ```
11. **Install Visual Studio Code** 10. **Install Visual Studio Code**
1. Download and install the key 1. Download and install the key
``` ```
@ -158,7 +152,7 @@ sudo chroot $HOME/live-ubuntu-from-scratch/chroot
apt-get install -y code apt-get install -y code
``` ```
12. **Install Google Chrome** 11. **Install Google Chrome**
1. Download and install the key 1. Download and install the key
``` ```
@ -177,14 +171,14 @@ sudo chroot $HOME/live-ubuntu-from-scratch/chroot
apt-get install google-chrome-stable apt-get install google-chrome-stable
``` ```
13. **Install Java JDK 8** 12. **Install Java JDK 8**
``` ```
apt-get install -y \ apt-get install -y \
openjdk-8-jdk \ openjdk-8-jdk \
openjdk-8-jre openjdk-8-jre
``` ```
14. **Remove unused applications** 13. **Remove unused applications**
``` ```
apt-get purge -y \ apt-get purge -y \
transmission-gtk \ transmission-gtk \
@ -196,12 +190,42 @@ sudo chroot $HOME/live-ubuntu-from-scratch/chroot
hitori hitori
``` ```
15. **Remove unused packages** 14. **Remove unused packages**
``` ```
apt-get autoremove -y apt-get autoremove -y
``` ```
16. **Cleanup the chroot environment** 15. **Reconfigure packages**
1. **Generate locales**
```
dpkg-reconfigure locales
```
2. **Reconfigure resolvconf**
```
dpkg-reconfigure locales
```
3. **Configure network-manager**
```
cat <<EOF > /etc/NetworkManager/NetworkManager.conf
[main]
rc-manager=resolvconf
plugins=ifupdown,keyfile
dns=dnsmasq
[ifupdown]
managed=false
EOF
```
4. **Reconfigure network-manager**
```
dpkg-reconfigure network-manager
```
15. **Cleanup the chroot environment**
1. If you installed software, be sure to run 1. If you installed software, be sure to run
``` ```