Last active 1749088967

jason's Avatar jason revised this gist 1749088967. Go to revision

1 file changed, 1 insertion, 1 deletion

zentyal-ubuntu-22.04.md

@@ -8,7 +8,7 @@ sed -i 's/\(GRUB_CMDLINE_LINUX_DEFAULT=".*\)"/\1 net.ifnames=0 biosdevname=0"/'
8 8 ```
9 9
10 10 ```shell
11 - reboot
11 + update-grub && reboot
12 12 ```
13 13
14 14 ## Setup hostname

jason's Avatar jason revised this gist 1749049632. Go to revision

1 file changed, 7 insertions

zentyal-ubuntu-22.04.md

@@ -18,6 +18,13 @@ nano /etc/hosts
18 18 echo "$(hostname -s)" >/etc/hostname
19 19 ```
20 20
21 + ## Add administrator user
22 +
23 + ```shell
24 + adduser administrator
25 + usermod -aG sudo administrator
26 + ```
27 +
21 28 ## Install Zentyal
22 29
23 30

jason's Avatar jason revised this gist 1749049471. Go to revision

1 file changed, 12 insertions

zentyal-ubuntu-22.04.md

@@ -1,3 +1,5 @@
1 + ## Change network device to eth0
2 +
1 3 ```shell
2 4 sed -i 's|enp3s0|eth0|g' /etc/netplan/*.yaml
3 5 sed -i 's|enp3s0|eth0|g' /etc/udev/rules.d/70-persistent-net.rules
@@ -9,6 +11,16 @@ sed -i 's/\(GRUB_CMDLINE_LINUX_DEFAULT=".*\)"/\1 net.ifnames=0 biosdevname=0"/'
9 11 reboot
10 12 ```
11 13
14 + ## Setup hostname
15 +
16 + ```shell
17 + nano /etc/hosts
18 + echo "$(hostname -s)" >/etc/hostname
19 + ```
20 +
21 + ## Install Zentyal
22 +
23 +
12 24 ```shell
13 25 wget https://raw.githubusercontent.com/zentyal/zentyal/master/extra/ubuntu_installers/zentyal_installer_8.0.sh &&
14 26 sudo chmod u+x zentyal_installer_8.0.sh && sudo ./zentyal_installer_8.0.sh

jason's Avatar jason revised this gist 1749049308. Go to revision

1 file changed, 15 insertions

zentyal-ubuntu-22.04.md(file created)

@@ -0,0 +1,15 @@
1 + ```shell
2 + sed -i 's|enp3s0|eth0|g' /etc/netplan/*.yaml
3 + sed -i 's|enp3s0|eth0|g' /etc/udev/rules.d/70-persistent-net.rules
4 + sed -i 's/#GRUB_HIDDEN_TIMEOUT=0/GRUB_HIDDEN_TIMEOUT=0/' /etc/default/grub
5 + sed -i 's/\(GRUB_CMDLINE_LINUX_DEFAULT=".*\)"/\1 net.ifnames=0 biosdevname=0"/' /etc/default/grub
6 + ```
7 +
8 + ```shell
9 + reboot
10 + ```
11 +
12 + ```shell
13 + wget https://raw.githubusercontent.com/zentyal/zentyal/master/extra/ubuntu_installers/zentyal_installer_8.0.sh &&
14 + sudo chmod u+x zentyal_installer_8.0.sh && sudo ./zentyal_installer_8.0.sh
15 + ```
Newer Older