Access Oracle Cloud VM from any browser on any devices
wget -O vscode.deb https://code.visualstudio.com/sha/download\?build\=stable\&os\=linux-deb-arm64 && sudo apt install ./vscode.deb --fix-broken -y && rm vscode.deb
# It will ask you to login with github account and setup device login.
# Press Ctrl+C to exit the tunnel
code tunnel --accept-server-license-terms
sudo vi /etc/systemd/system/code-tunnel.service
[Unit]
Description=VSCode Tunnel as Daemon
[Service]
Type=simple
ExecStart=/usr/bin/code tunnel
User=your-username
Group=your-group
Restart=on-failure
[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload
sudo systemctl enable code-tunnel
sudo systemctl start code-tunnel
sudo systemctl status code-tunnel