**文書の過去の版を表示しています。**
https://bitnami.com/stack/guacamole/virtual-machine から仮想マシンのイメージをダウンロードし、Virtual Boxで起動。
sshが動いていないので
rm /etc/ssh/sshd_not_to_be_run nano /etc/ssh/sshd_config #下記に変更 PasswordAuthentication yes systemctl restart ssh
IPアドレスを固定するために、
nano /etc/network/interfaces.d/50-cloud-init #下記に変更 #iface enp0s3 inet dhcp # 固定設定を追記 iface enp0s3 inet static # IP アドレス address 192.168.200.206 # ネットワークアドレス network 192.168.192.0 # サブネットマスク netmask 255.255.240.0 # ブロードキャストアドレス broadcast 192.168.207.255 # デフォルトゲートウェイ gateway 192.168.200.1 # ネームサーバー dns-nameservers 192.168.200.201 systemctl restart ifup@enp0s3