I'm using Windows 10 to connect to my server, which has a fresh install of Ubuntu Server 24. I want to be able to easily copy and paste between the two systems and transfer files. What are the best methods for remote access?
3 Answers
If you want something simple and effective, learning to set up VNC might be your best bet. It works over SSH, allowing you to use the GUI of your remote server. Just make sure to install a VNC server on your Ubuntu system.
Definitely go with SSH for commands. For file transfers, SFTP is a solid option—just use an SFTP client, which can provide a user-friendly GUI. You might also want to check out FileZilla if you prefer a graphical interface for managing files.
The go-to method is using SSH for remote access. For file transfers, you can use SCP or SFTP. If you just want to connect through the command line, you can enable SSH on your Ubuntu server and then access it from your Windows machine using PowerShell. Just type `ssh username@ipofserver`, enter your password, and you'll have CLI access. If you need a graphical interface, consider setting up VNC on your server and using a VNC viewer on Windows.

Related Questions
How To Get Your Domain Unblocked From Facebook
How To Find A String In a Directory of Files Using Linux