Upload setup_lxde_crd.sh
Browse files- setup_lxde_crd.sh +8 -5
setup_lxde_crd.sh
CHANGED
@@ -1,11 +1,14 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
# Actualizar el sistema
|
4 |
-
|
5 |
-
|
6 |
|
7 |
-
# Instalar
|
8 |
-
|
|
|
|
|
|
|
9 |
|
10 |
# Instalar LXDE
|
11 |
sudo apt install lxde -y
|
@@ -30,4 +33,4 @@ EOF
|
|
30 |
echo "La instalaci贸n ha terminado. Inicia sesi贸n en https://remotedesktop.google.com/headless y sigue las instrucciones para completar la configuraci贸n de Chrome Remote Desktop."
|
31 |
|
32 |
echo "Para iniciar el escritorio LXDE, ejecuta el siguiente comando como el nuevo usuario:"
|
33 |
-
echo "/opt/google/chrome-remote-desktop/chrome-remote-desktop --start"
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
# Actualizar el sistema
|
4 |
+
apt update
|
5 |
+
apt upgrade -y
|
6 |
|
7 |
+
# Instalar sudo
|
8 |
+
apt install sudo -y
|
9 |
+
|
10 |
+
# Instalar wget
|
11 |
+
sudo apt install wget -y
|
12 |
|
13 |
# Instalar LXDE
|
14 |
sudo apt install lxde -y
|
|
|
33 |
echo "La instalaci贸n ha terminado. Inicia sesi贸n en https://remotedesktop.google.com/headless y sigue las instrucciones para completar la configuraci贸n de Chrome Remote Desktop."
|
34 |
|
35 |
echo "Para iniciar el escritorio LXDE, ejecuta el siguiente comando como el nuevo usuario:"
|
36 |
+
echo "/opt/google/chrome-remote-desktop/chrome-remote-desktop --start"
|