Diferencia entre revisiones de «Instalar VNC Server»
De enunpimpam
Línea 24: | Línea 24: | ||
= Ubuntu 22.04 LTS = | = Ubuntu 22.04 LTS = | ||
− | sudo apt update | + | sudo apt update |
− | sudo apt install lightdm | + | sudo apt install lightdm |
− | sudo reboot | + | sudo reboot |
− | sudo apt install x11vnc | + | sudo apt install x11vnc |
− | sudo vim /lib/systemd/system/x11vnc.service | + | sudo vim /lib/systemd/system/x11vnc.service |
!Copy and paste these commands - change the password | !Copy and paste these commands - change the password | ||
− | [Unit] | + | [Unit] |
− | Description=x11vnc service | + | Description=x11vnc service |
− | After=display-manager.service network.target syslog.target | + | After=display-manager.service network.target syslog.target |
− | [Service] | + | [Service] |
− | Type=simple | + | Type=simple |
− | ExecStart=/usr/bin/x11vnc -forever -display :0 -auth guess -passwd password | + | ExecStart=/usr/bin/x11vnc -forever -display :0 -auth guess -passwd password |
− | ExecStop=/usr/bin/killall x11vnc | + | ExecStop=/usr/bin/killall x11vnc |
− | Restart=on-failure | + | Restart=on-failure |
− | [Install] | + | [Install] |
− | WantedBy=multi-user.target | + | WantedBy=multi-user.target |
!Save file and run these commands: | !Save file and run these commands: | ||
− | systemctl daemon-reload | + | systemctl daemon-reload |
− | systemctl enable x11vnc.service | + | systemctl enable x11vnc.service |
− | systemctl start x11vnc.service | + | systemctl start x11vnc.service |
− | systemctl status x11vnc.service | + | systemctl status x11vnc.service |
Desactivar Screen Lock, todo | Desactivar Screen Lock, todo |
Revisión actual del 08:13 14 jun 2024
Podemos instalar un servicio de VNC sencillo y ligero para poder acceder al pc desde el exterior y ademas desde un navegador WEB.
Sumario
Instalación
Escribir en un terminal:
sudo apt-get install x11vnc vnc-java
Introducción contraseña
Para introducir una contraseña diferente a la del usuaria hay que escribir:
x11vnc -storepasswd
Abrir puertos
Para poder acceder al pc desde el exteriror es necesario abrir los puertos 5800 y 5900 en el router y rediridirlos a la IP del pc a controlar.
Iniciar servicio
Ejecutar el siguiente comando en el terminal:
x11vnc -forever -usepw -httpdir /usr/share/vnc-java/ -httpport 5800
Abrimos un navegador y escribimos la direccion IP 192.168.1.15:5800
Ubuntu 22.04 LTS
sudo apt update sudo apt install lightdm sudo reboot sudo apt install x11vnc
sudo vim /lib/systemd/system/x11vnc.service
!Copy and paste these commands - change the password
[Unit] Description=x11vnc service After=display-manager.service network.target syslog.target
[Service] Type=simple ExecStart=/usr/bin/x11vnc -forever -display :0 -auth guess -passwd password ExecStop=/usr/bin/killall x11vnc Restart=on-failure
[Install] WantedBy=multi-user.target
!Save file and run these commands:
systemctl daemon-reload systemctl enable x11vnc.service systemctl start x11vnc.service systemctl status x11vnc.service
Desactivar Screen Lock, todo