
- Remote utilities ubuntu how to#
- Remote utilities ubuntu update#
- Remote utilities ubuntu upgrade#
- Remote utilities ubuntu windows 10#
- Remote utilities ubuntu free#
There are multiple ways that you can access an Ubuntu machine from another computer. Methods for Connecting to a Remote Desktop
Remote utilities ubuntu how to#
This guide shows you how to access your Ubuntu machine remotely from any Windows computer. Learn more about the Administering Linux on Azure (LFS205) course and sign up here.If you need to access your Ubuntu machine while you are away from your Ubuntu system and you have a Windows PC, then you have come to the right place. Two features that I am excited about are the lsblk command and the dd command that allow me to natively manage my drives and create bootable drives of Linux from within Windows. If you are new to the Linux command line, this previous tutorial will help you get started with some of the most basic commands. WSL is now out of beta, and it will continue to get more new features. Transferring files between the local machine and remote system can be done using, once again, the rsync command. All of my drives are plugged into either a Raspberry Pi powered server or a live server, so I simply ssh into that machine and manage the drive. You can also mount network/remote folders in Linux so you can manage them with better tools. Want to set up a cron job to automate a task at certain time? Go ahead and create a cron job with crontab -e. Want to create new directories in Windows drives, just use the awesome mkdir command. If you want to move folders or large files, I would recommend rsync instead of the cp command: rsync -avzP /music/classical/Beethoven/symphonies/ /plex-media/music/classical/ cp /source-folder/source-file.txt /destination-folder/Ĭp /music/classical/Beethoven/symphony-2.mp3 /plex-media/music/classical/ Want to copy or move files from one folder to another? Just run the cp or mv command. You can now use all those magical Linux commands here. So you can’t mount ext4 drives that can’t be mounted on Windows natively. Just bear in mind that distro running with WSL will see what Windows can see. Once mounted, you can now access that drive from your distro. Now mount the drive: mount -t drvfs S: /mnt/s In the Ubuntu/openSUSE terminal, create a mount point for the drive. Let’s assume it’s mounted in Windows as S: Open File Explorer and check the mount point of that drive. To mount other drives, partitions, and external USB drives, you will need to create a mount point and then mount that drive. I am now in the Music directory of the C drive. You can, however, cd to the C drive and manage files: Unfortunately, WSL doesn’t yet support things like lsblk or mnt to mount local drives. If you want to use great Linux command line utilities to manage your local files, you can easily do that with WSL. You can learn how to create a user on openSUSE in this article. If you want to perform any non-administrative tasks, please switch to a non-privileged user. Note: openSUSE defaults to the root user. But before running the system upgrade, please run updates using the previous command.
Remote utilities ubuntu upgrade#
You can also upgrade openSUSE to the latest version with the dup command.
Remote utilities ubuntu update#
Update your Ubuntu system: # sudo apt-get update
Remote utilities ubuntu free#
Since only two free community distributions are officially available in Windows Store, out tutorial will cover only those two: openSUSE and Ubuntu. Yet, you must keep your distros fully updated to keep your system protected from any new known vulnerabilities. The fact is there is no Linux kernel running under the hood when you run Ubuntu or openSUSE through WSL. I covered these steps in the previous article, so begin there if you need to catch up.
Remote utilities ubuntu windows 10#
You need to be running a fully updated Windows 10 and the Linux distro of your choice. In this tutorial, you’ll see how to perform additional tasks beyond managing your servers using WSL – things like mounting USB drives and manipulating files. How about managing your local files with powerful command line utilities instead of using slow and unreliable GUI utilities? You want to ssh into your server and then rsync files? No way. Windows 10, however, lacks such capabilities. Many sysadmin tasks are done inside a terminal, whether it’s a Linux based system or macOS. You can perform a lot of Linux command like tasks in Windows 10 using WSL. In the previous tutorial, we learned about setting up WSL on your Windows 10 system.
