1 / 10

How to Copy Files from Linux to Windows

Sometimes you may need to copy files from linux to windows. Here are the steps to do it. #Linux #Ubuntu #windows <br><br>Visit https://fedingo.com/how-to-copy-files-from-linux-to-windows-2/

Download Presentation

How to Copy Files from Linux to Windows

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. How to Copy Files from Linux to Windows

  2. Update System First we need to update Linux system. Open terminal and run the following command for this purpose. $ sudo apt update

  3. Install SSH Server Most Linux systems have SSH server pre-installed. If that is not the case with you, run the following command to install SSH server. $ sudo apt install openssh-server If you see any prompts during installation, just enter ‘y’ to proceed further. After SSH server is installed, you can check its status with the following command. $ sudo service ssh status

  4. Install Samba Samba is a Windows interoperability suite for Linux/Unix systems. It allows Linux/Unix systems to communicate with Windows systems easily. So we need to install this software before proceeding further. Run the following command for this purpose. $ sudo apt install samba

  5. Create Samba User Once you have installed Samba software on your system, you need to create a user for this software, using usermod command. You need to also enter the password. Here is the command to create a test user ‘test’ and set its password. $ sudo useradd –M –N –g sambashare test $ sudo smbpasswd –a test

  6. Find IP Address of Windows Next, you need to find the IP address of Windows system. Open command prompt on your Windows system and run ifconfig command to get its IP address. $ ifconfig

  7. Create Windows Folder Next, within Local Disk folder (C:) you need to create a new folder ‘Share’. Next we need to update the privileges of this folder to allow remote access. To do this, right click the folder, and hover ‘Give Access to’. It will expand to show you a menu. Click ‘Specific people …’

  8. Access Shared Folder from Ubuntu Open File Explorer in Ubuntu, click ‘Other Locations’, check ‘Connect to Server’ at the bottom. Enter the Samba URL to your Windows system in text bar and click Connect button. Here is the format of Samba URL. $ Smb://ip-address-of-windows/foldername

  9. Copy Files from Linux to Windows If you want to copy files & folders from Linux to Windows you need to enable remote access to Linux folders. Create a new folder ‘Share’ in your Linux system. Right Click to see context menu and click ‘Properties’. You will see a dialog box. Expand ‘Local Network Share’ and check ‘Share this folder’ option and ‘Allow others to create and delete’ option. Click Share button and close it. You will see the share icon added to the folder’s icon. To access this folder from Windows system, open run application in your Windows system. Enter the IP address of your Linux system as //ip-address and click Ok.

  10. Thank You Visit for details https://fedingo.com/how-to-copy-files-from-linux-to-windows-2/

More Related