Help with file transfer from windows to ubuntu

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
4
down vote

favorite
1












I have looked long and hard for this, but can't find exactly what I'm looking for. I want to edit videos on my Linux computer because of how much better the software is for editing. I record videos on my Windows computer which are mostly tutorial videos using an Elgato capture card these files are very big.



The question is: How can I set up a wireless file transfer from Windows to Ubuntu?










share|improve this question























  • Please not change the title to [SOLVED] instead mark the answer which helped you the most as accepted by clicking the check_mark beside it. I'm editing back your title.
    – Videonauth
    Jun 3 '16 at 19:20










  • thanks i come from other forums that dont have this option
    – Tactical Shrimp
    Jun 3 '16 at 19:56














up vote
4
down vote

favorite
1












I have looked long and hard for this, but can't find exactly what I'm looking for. I want to edit videos on my Linux computer because of how much better the software is for editing. I record videos on my Windows computer which are mostly tutorial videos using an Elgato capture card these files are very big.



The question is: How can I set up a wireless file transfer from Windows to Ubuntu?










share|improve this question























  • Please not change the title to [SOLVED] instead mark the answer which helped you the most as accepted by clicking the check_mark beside it. I'm editing back your title.
    – Videonauth
    Jun 3 '16 at 19:20










  • thanks i come from other forums that dont have this option
    – Tactical Shrimp
    Jun 3 '16 at 19:56












up vote
4
down vote

favorite
1









up vote
4
down vote

favorite
1






1





I have looked long and hard for this, but can't find exactly what I'm looking for. I want to edit videos on my Linux computer because of how much better the software is for editing. I record videos on my Windows computer which are mostly tutorial videos using an Elgato capture card these files are very big.



The question is: How can I set up a wireless file transfer from Windows to Ubuntu?










share|improve this question















I have looked long and hard for this, but can't find exactly what I'm looking for. I want to edit videos on my Linux computer because of how much better the software is for editing. I record videos on my Windows computer which are mostly tutorial videos using an Elgato capture card these files are very big.



The question is: How can I set up a wireless file transfer from Windows to Ubuntu?







windows files file-sharing






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jun 3 '16 at 19:20









Videonauth

22.5k116897




22.5k116897










asked Jun 3 '16 at 18:33









Tactical Shrimp

23115




23115











  • Please not change the title to [SOLVED] instead mark the answer which helped you the most as accepted by clicking the check_mark beside it. I'm editing back your title.
    – Videonauth
    Jun 3 '16 at 19:20










  • thanks i come from other forums that dont have this option
    – Tactical Shrimp
    Jun 3 '16 at 19:56
















  • Please not change the title to [SOLVED] instead mark the answer which helped you the most as accepted by clicking the check_mark beside it. I'm editing back your title.
    – Videonauth
    Jun 3 '16 at 19:20










  • thanks i come from other forums that dont have this option
    – Tactical Shrimp
    Jun 3 '16 at 19:56















Please not change the title to [SOLVED] instead mark the answer which helped you the most as accepted by clicking the check_mark beside it. I'm editing back your title.
– Videonauth
Jun 3 '16 at 19:20




Please not change the title to [SOLVED] instead mark the answer which helped you the most as accepted by clicking the check_mark beside it. I'm editing back your title.
– Videonauth
Jun 3 '16 at 19:20












thanks i come from other forums that dont have this option
– Tactical Shrimp
Jun 3 '16 at 19:56




thanks i come from other forums that dont have this option
– Tactical Shrimp
Jun 3 '16 at 19:56










3 Answers
3






active

oldest

votes

















up vote
2
down vote



accepted










Share the files from your windows computer by right clicking on the folder that contains them, and picking "Sharing". Give it some basic level of access.



  1. Press Windows Key+R and type cmd, then click ok.

  2. type ipconfig and get the IP address of your wireless adapter.

  3. From your Ubuntu machine, open a new file window and click (from the menu bar) GO --> Enter Location

  4. type smb://[ip address here]

  5. If you're prompted for credentials, enter either your windows credentials or the ones you set up when you shared the folder.





share|improve this answer






















  • thank you i didnt need it in that much of laymans terms but hey helpful to anyone else thanks for the reply
    – Tactical Shrimp
    Jun 3 '16 at 19:58










  • Did this help solve your issue?
    – Jared Starkey
    Jun 3 '16 at 20:01










  • nit fully because when i click the share it has an error sign trianglw with ! point in it that is by the create homegroup button or tab this is windows 7 by the way
    – Tactical Shrimp
    Jun 3 '16 at 23:01










  • Well - I'm no pro at troubleshooting Windows 7 sharing outside of a domain environment. I'd suggest following the instructions below to set up a share on your linux PC as an "inbound" sharing folder that you can access from Windows.
    – Jared Starkey
    Jun 8 '16 at 12:40

















up vote
2
down vote













You can also go the other way and set the share on our Linux machine, you can follow these instructions on how to do that.



help.ubuntu.com - How to create a network share



Procedures



All commands must be done as root (precede each command with 'sudo' or use 'sudo su').



Install Samba



 sudo apt-get update
sudo apt-get install samba


Set a password for your user in Samba



 sudo smbpasswd -a <user_name>


Note: Samba uses a separate set of passwords than the standard Linux system accounts (stored in /etc/samba/smbpasswd), so you'll need to create a Samba password for yourself. This tutorial implies that you will use your own user and it does not cover situations involving other users passwords, groups, etc...



Tip1: Use the password for your own user to facilitate.



Tip2: Remember that your user must have permission to write and edit the folder you want to share.
Eg.:
sudo chown /var/opt/blah/blahblah
sudo chown : /var/opt/blah/blahblah



Tip3: If you're using another user than your own, it needs to exist in your system beforehand, you can create it without a shell access using the following command :
sudo useradd USERNAME --shell /bin/false



You can also hide the user on the login screen by adjusting lightdm's configuration, in /etc/lightdm/users.conf add the newly created user to the line :
hidden-users=



Create a directory to be shared



mkdir /home/<user_name>/<folder_name>


Make a safe backup copy of the original smb.conf file to your home folder, in case you make an error



sudo cp /etc/samba/smb.conf ~


Edit the file "/etc/samba/smb.conf"



sudo nano /etc/samba/smb.conf


Once "smb.conf" has loaded, add this to the very end of the file:



 [<folder_name>]
path = /home/<user_name>/<folder_name>
valid users = <user_name>
read only = no


Tip: There Should be in the spaces between the lines, and note que also there should be a single space both before and after each of the equal signs.



Restart the samba:



sudo service smbd restart


Once Samba has restarted, use this command to check your smb.conf for any syntax errors



testparm


To access your network share



 sudo apt-get install smbclient


List all shares:



 smbclient -L //<HOST_IP_OR_NAME>/<folder_name> -U <user>


connect:



 smbclient //<HOST_IP_OR_NAME>/<folder_name> -U <user>


To access your network share use your username () and password through the path "smb:////" (Linux users) or "\" (Windows users). Note that "" value is passed in "", in other words, the share name you entered in "/etc/samba/smb.conf".



Note: The default user group of samba is "WORKGROUP".



Source



http://www.hardcode.nl/archives_147/article_548-samba-quick-setup-on-ubuntu-1004.htm





share|improve this answer


















  • 1




    Could you please be elaborate more here and link to the site only as source. This would vastly improve the quality of your answer.
    – Videonauth
    Jun 3 '16 at 18:54










  • @Videonauth, while I agree with you , I have seen the opposite asked as well, I looked at an answer earlier today that the person the answer in full detail, and someone told them to just link to the answer if it has been answered before. So this seems to be a 50 50 as to who is watching and their opinions on answers.
    – Christopher Angulo-Bertram
    Jun 3 '16 at 19:02










  • When it is an answer on SE yes, i would have as well said o.k. rather flag it as duplicate instead of posting a link at all in an answer, but since you're linking to Ubuntu help site you can copy & paste some essential parts here and link to read further.
    – Videonauth
    Jun 3 '16 at 19:05










  • @Videonauth OK, cool, still learning the ground rules here, thanks for your help.
    – Christopher Angulo-Bertram
    Jun 3 '16 at 19:07










  • thanks for the reply although i think im gonna go the easier rout and do what the first answer instructs but thank you all
    – Tactical Shrimp
    Jun 3 '16 at 19:13

















up vote
1
down vote













There is a free file manager with GUI WinSCP. You can copy files in one click.



enter image description here
After creating connection you have one panel with your local computer and a panel with a remote computer.






share|improve this answer




















    Your Answer







    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "89"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f781471%2fhelp-with-file-transfer-from-windows-to-ubuntu%23new-answer', 'question_page');

    );

    Post as a guest






























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    2
    down vote



    accepted










    Share the files from your windows computer by right clicking on the folder that contains them, and picking "Sharing". Give it some basic level of access.



    1. Press Windows Key+R and type cmd, then click ok.

    2. type ipconfig and get the IP address of your wireless adapter.

    3. From your Ubuntu machine, open a new file window and click (from the menu bar) GO --> Enter Location

    4. type smb://[ip address here]

    5. If you're prompted for credentials, enter either your windows credentials or the ones you set up when you shared the folder.





    share|improve this answer






















    • thank you i didnt need it in that much of laymans terms but hey helpful to anyone else thanks for the reply
      – Tactical Shrimp
      Jun 3 '16 at 19:58










    • Did this help solve your issue?
      – Jared Starkey
      Jun 3 '16 at 20:01










    • nit fully because when i click the share it has an error sign trianglw with ! point in it that is by the create homegroup button or tab this is windows 7 by the way
      – Tactical Shrimp
      Jun 3 '16 at 23:01










    • Well - I'm no pro at troubleshooting Windows 7 sharing outside of a domain environment. I'd suggest following the instructions below to set up a share on your linux PC as an "inbound" sharing folder that you can access from Windows.
      – Jared Starkey
      Jun 8 '16 at 12:40














    up vote
    2
    down vote



    accepted










    Share the files from your windows computer by right clicking on the folder that contains them, and picking "Sharing". Give it some basic level of access.



    1. Press Windows Key+R and type cmd, then click ok.

    2. type ipconfig and get the IP address of your wireless adapter.

    3. From your Ubuntu machine, open a new file window and click (from the menu bar) GO --> Enter Location

    4. type smb://[ip address here]

    5. If you're prompted for credentials, enter either your windows credentials or the ones you set up when you shared the folder.





    share|improve this answer






















    • thank you i didnt need it in that much of laymans terms but hey helpful to anyone else thanks for the reply
      – Tactical Shrimp
      Jun 3 '16 at 19:58










    • Did this help solve your issue?
      – Jared Starkey
      Jun 3 '16 at 20:01










    • nit fully because when i click the share it has an error sign trianglw with ! point in it that is by the create homegroup button or tab this is windows 7 by the way
      – Tactical Shrimp
      Jun 3 '16 at 23:01










    • Well - I'm no pro at troubleshooting Windows 7 sharing outside of a domain environment. I'd suggest following the instructions below to set up a share on your linux PC as an "inbound" sharing folder that you can access from Windows.
      – Jared Starkey
      Jun 8 '16 at 12:40












    up vote
    2
    down vote



    accepted







    up vote
    2
    down vote



    accepted






    Share the files from your windows computer by right clicking on the folder that contains them, and picking "Sharing". Give it some basic level of access.



    1. Press Windows Key+R and type cmd, then click ok.

    2. type ipconfig and get the IP address of your wireless adapter.

    3. From your Ubuntu machine, open a new file window and click (from the menu bar) GO --> Enter Location

    4. type smb://[ip address here]

    5. If you're prompted for credentials, enter either your windows credentials or the ones you set up when you shared the folder.





    share|improve this answer














    Share the files from your windows computer by right clicking on the folder that contains them, and picking "Sharing". Give it some basic level of access.



    1. Press Windows Key+R and type cmd, then click ok.

    2. type ipconfig and get the IP address of your wireless adapter.

    3. From your Ubuntu machine, open a new file window and click (from the menu bar) GO --> Enter Location

    4. type smb://[ip address here]

    5. If you're prompted for credentials, enter either your windows credentials or the ones you set up when you shared the folder.






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Jun 3 '16 at 18:57









    Videonauth

    22.5k116897




    22.5k116897










    answered Jun 3 '16 at 18:36









    Jared Starkey

    1194




    1194











    • thank you i didnt need it in that much of laymans terms but hey helpful to anyone else thanks for the reply
      – Tactical Shrimp
      Jun 3 '16 at 19:58










    • Did this help solve your issue?
      – Jared Starkey
      Jun 3 '16 at 20:01










    • nit fully because when i click the share it has an error sign trianglw with ! point in it that is by the create homegroup button or tab this is windows 7 by the way
      – Tactical Shrimp
      Jun 3 '16 at 23:01










    • Well - I'm no pro at troubleshooting Windows 7 sharing outside of a domain environment. I'd suggest following the instructions below to set up a share on your linux PC as an "inbound" sharing folder that you can access from Windows.
      – Jared Starkey
      Jun 8 '16 at 12:40
















    • thank you i didnt need it in that much of laymans terms but hey helpful to anyone else thanks for the reply
      – Tactical Shrimp
      Jun 3 '16 at 19:58










    • Did this help solve your issue?
      – Jared Starkey
      Jun 3 '16 at 20:01










    • nit fully because when i click the share it has an error sign trianglw with ! point in it that is by the create homegroup button or tab this is windows 7 by the way
      – Tactical Shrimp
      Jun 3 '16 at 23:01










    • Well - I'm no pro at troubleshooting Windows 7 sharing outside of a domain environment. I'd suggest following the instructions below to set up a share on your linux PC as an "inbound" sharing folder that you can access from Windows.
      – Jared Starkey
      Jun 8 '16 at 12:40















    thank you i didnt need it in that much of laymans terms but hey helpful to anyone else thanks for the reply
    – Tactical Shrimp
    Jun 3 '16 at 19:58




    thank you i didnt need it in that much of laymans terms but hey helpful to anyone else thanks for the reply
    – Tactical Shrimp
    Jun 3 '16 at 19:58












    Did this help solve your issue?
    – Jared Starkey
    Jun 3 '16 at 20:01




    Did this help solve your issue?
    – Jared Starkey
    Jun 3 '16 at 20:01












    nit fully because when i click the share it has an error sign trianglw with ! point in it that is by the create homegroup button or tab this is windows 7 by the way
    – Tactical Shrimp
    Jun 3 '16 at 23:01




    nit fully because when i click the share it has an error sign trianglw with ! point in it that is by the create homegroup button or tab this is windows 7 by the way
    – Tactical Shrimp
    Jun 3 '16 at 23:01












    Well - I'm no pro at troubleshooting Windows 7 sharing outside of a domain environment. I'd suggest following the instructions below to set up a share on your linux PC as an "inbound" sharing folder that you can access from Windows.
    – Jared Starkey
    Jun 8 '16 at 12:40




    Well - I'm no pro at troubleshooting Windows 7 sharing outside of a domain environment. I'd suggest following the instructions below to set up a share on your linux PC as an "inbound" sharing folder that you can access from Windows.
    – Jared Starkey
    Jun 8 '16 at 12:40












    up vote
    2
    down vote













    You can also go the other way and set the share on our Linux machine, you can follow these instructions on how to do that.



    help.ubuntu.com - How to create a network share



    Procedures



    All commands must be done as root (precede each command with 'sudo' or use 'sudo su').



    Install Samba



     sudo apt-get update
    sudo apt-get install samba


    Set a password for your user in Samba



     sudo smbpasswd -a <user_name>


    Note: Samba uses a separate set of passwords than the standard Linux system accounts (stored in /etc/samba/smbpasswd), so you'll need to create a Samba password for yourself. This tutorial implies that you will use your own user and it does not cover situations involving other users passwords, groups, etc...



    Tip1: Use the password for your own user to facilitate.



    Tip2: Remember that your user must have permission to write and edit the folder you want to share.
    Eg.:
    sudo chown /var/opt/blah/blahblah
    sudo chown : /var/opt/blah/blahblah



    Tip3: If you're using another user than your own, it needs to exist in your system beforehand, you can create it without a shell access using the following command :
    sudo useradd USERNAME --shell /bin/false



    You can also hide the user on the login screen by adjusting lightdm's configuration, in /etc/lightdm/users.conf add the newly created user to the line :
    hidden-users=



    Create a directory to be shared



    mkdir /home/<user_name>/<folder_name>


    Make a safe backup copy of the original smb.conf file to your home folder, in case you make an error



    sudo cp /etc/samba/smb.conf ~


    Edit the file "/etc/samba/smb.conf"



    sudo nano /etc/samba/smb.conf


    Once "smb.conf" has loaded, add this to the very end of the file:



     [<folder_name>]
    path = /home/<user_name>/<folder_name>
    valid users = <user_name>
    read only = no


    Tip: There Should be in the spaces between the lines, and note que also there should be a single space both before and after each of the equal signs.



    Restart the samba:



    sudo service smbd restart


    Once Samba has restarted, use this command to check your smb.conf for any syntax errors



    testparm


    To access your network share



     sudo apt-get install smbclient


    List all shares:



     smbclient -L //<HOST_IP_OR_NAME>/<folder_name> -U <user>


    connect:



     smbclient //<HOST_IP_OR_NAME>/<folder_name> -U <user>


    To access your network share use your username () and password through the path "smb:////" (Linux users) or "\" (Windows users). Note that "" value is passed in "", in other words, the share name you entered in "/etc/samba/smb.conf".



    Note: The default user group of samba is "WORKGROUP".



    Source



    http://www.hardcode.nl/archives_147/article_548-samba-quick-setup-on-ubuntu-1004.htm





    share|improve this answer


















    • 1




      Could you please be elaborate more here and link to the site only as source. This would vastly improve the quality of your answer.
      – Videonauth
      Jun 3 '16 at 18:54










    • @Videonauth, while I agree with you , I have seen the opposite asked as well, I looked at an answer earlier today that the person the answer in full detail, and someone told them to just link to the answer if it has been answered before. So this seems to be a 50 50 as to who is watching and their opinions on answers.
      – Christopher Angulo-Bertram
      Jun 3 '16 at 19:02










    • When it is an answer on SE yes, i would have as well said o.k. rather flag it as duplicate instead of posting a link at all in an answer, but since you're linking to Ubuntu help site you can copy & paste some essential parts here and link to read further.
      – Videonauth
      Jun 3 '16 at 19:05










    • @Videonauth OK, cool, still learning the ground rules here, thanks for your help.
      – Christopher Angulo-Bertram
      Jun 3 '16 at 19:07










    • thanks for the reply although i think im gonna go the easier rout and do what the first answer instructs but thank you all
      – Tactical Shrimp
      Jun 3 '16 at 19:13














    up vote
    2
    down vote













    You can also go the other way and set the share on our Linux machine, you can follow these instructions on how to do that.



    help.ubuntu.com - How to create a network share



    Procedures



    All commands must be done as root (precede each command with 'sudo' or use 'sudo su').



    Install Samba



     sudo apt-get update
    sudo apt-get install samba


    Set a password for your user in Samba



     sudo smbpasswd -a <user_name>


    Note: Samba uses a separate set of passwords than the standard Linux system accounts (stored in /etc/samba/smbpasswd), so you'll need to create a Samba password for yourself. This tutorial implies that you will use your own user and it does not cover situations involving other users passwords, groups, etc...



    Tip1: Use the password for your own user to facilitate.



    Tip2: Remember that your user must have permission to write and edit the folder you want to share.
    Eg.:
    sudo chown /var/opt/blah/blahblah
    sudo chown : /var/opt/blah/blahblah



    Tip3: If you're using another user than your own, it needs to exist in your system beforehand, you can create it without a shell access using the following command :
    sudo useradd USERNAME --shell /bin/false



    You can also hide the user on the login screen by adjusting lightdm's configuration, in /etc/lightdm/users.conf add the newly created user to the line :
    hidden-users=



    Create a directory to be shared



    mkdir /home/<user_name>/<folder_name>


    Make a safe backup copy of the original smb.conf file to your home folder, in case you make an error



    sudo cp /etc/samba/smb.conf ~


    Edit the file "/etc/samba/smb.conf"



    sudo nano /etc/samba/smb.conf


    Once "smb.conf" has loaded, add this to the very end of the file:



     [<folder_name>]
    path = /home/<user_name>/<folder_name>
    valid users = <user_name>
    read only = no


    Tip: There Should be in the spaces between the lines, and note que also there should be a single space both before and after each of the equal signs.



    Restart the samba:



    sudo service smbd restart


    Once Samba has restarted, use this command to check your smb.conf for any syntax errors



    testparm


    To access your network share



     sudo apt-get install smbclient


    List all shares:



     smbclient -L //<HOST_IP_OR_NAME>/<folder_name> -U <user>


    connect:



     smbclient //<HOST_IP_OR_NAME>/<folder_name> -U <user>


    To access your network share use your username () and password through the path "smb:////" (Linux users) or "\" (Windows users). Note that "" value is passed in "", in other words, the share name you entered in "/etc/samba/smb.conf".



    Note: The default user group of samba is "WORKGROUP".



    Source



    http://www.hardcode.nl/archives_147/article_548-samba-quick-setup-on-ubuntu-1004.htm





    share|improve this answer


















    • 1




      Could you please be elaborate more here and link to the site only as source. This would vastly improve the quality of your answer.
      – Videonauth
      Jun 3 '16 at 18:54










    • @Videonauth, while I agree with you , I have seen the opposite asked as well, I looked at an answer earlier today that the person the answer in full detail, and someone told them to just link to the answer if it has been answered before. So this seems to be a 50 50 as to who is watching and their opinions on answers.
      – Christopher Angulo-Bertram
      Jun 3 '16 at 19:02










    • When it is an answer on SE yes, i would have as well said o.k. rather flag it as duplicate instead of posting a link at all in an answer, but since you're linking to Ubuntu help site you can copy & paste some essential parts here and link to read further.
      – Videonauth
      Jun 3 '16 at 19:05










    • @Videonauth OK, cool, still learning the ground rules here, thanks for your help.
      – Christopher Angulo-Bertram
      Jun 3 '16 at 19:07










    • thanks for the reply although i think im gonna go the easier rout and do what the first answer instructs but thank you all
      – Tactical Shrimp
      Jun 3 '16 at 19:13












    up vote
    2
    down vote










    up vote
    2
    down vote









    You can also go the other way and set the share on our Linux machine, you can follow these instructions on how to do that.



    help.ubuntu.com - How to create a network share



    Procedures



    All commands must be done as root (precede each command with 'sudo' or use 'sudo su').



    Install Samba



     sudo apt-get update
    sudo apt-get install samba


    Set a password for your user in Samba



     sudo smbpasswd -a <user_name>


    Note: Samba uses a separate set of passwords than the standard Linux system accounts (stored in /etc/samba/smbpasswd), so you'll need to create a Samba password for yourself. This tutorial implies that you will use your own user and it does not cover situations involving other users passwords, groups, etc...



    Tip1: Use the password for your own user to facilitate.



    Tip2: Remember that your user must have permission to write and edit the folder you want to share.
    Eg.:
    sudo chown /var/opt/blah/blahblah
    sudo chown : /var/opt/blah/blahblah



    Tip3: If you're using another user than your own, it needs to exist in your system beforehand, you can create it without a shell access using the following command :
    sudo useradd USERNAME --shell /bin/false



    You can also hide the user on the login screen by adjusting lightdm's configuration, in /etc/lightdm/users.conf add the newly created user to the line :
    hidden-users=



    Create a directory to be shared



    mkdir /home/<user_name>/<folder_name>


    Make a safe backup copy of the original smb.conf file to your home folder, in case you make an error



    sudo cp /etc/samba/smb.conf ~


    Edit the file "/etc/samba/smb.conf"



    sudo nano /etc/samba/smb.conf


    Once "smb.conf" has loaded, add this to the very end of the file:



     [<folder_name>]
    path = /home/<user_name>/<folder_name>
    valid users = <user_name>
    read only = no


    Tip: There Should be in the spaces between the lines, and note que also there should be a single space both before and after each of the equal signs.



    Restart the samba:



    sudo service smbd restart


    Once Samba has restarted, use this command to check your smb.conf for any syntax errors



    testparm


    To access your network share



     sudo apt-get install smbclient


    List all shares:



     smbclient -L //<HOST_IP_OR_NAME>/<folder_name> -U <user>


    connect:



     smbclient //<HOST_IP_OR_NAME>/<folder_name> -U <user>


    To access your network share use your username () and password through the path "smb:////" (Linux users) or "\" (Windows users). Note that "" value is passed in "", in other words, the share name you entered in "/etc/samba/smb.conf".



    Note: The default user group of samba is "WORKGROUP".



    Source



    http://www.hardcode.nl/archives_147/article_548-samba-quick-setup-on-ubuntu-1004.htm





    share|improve this answer














    You can also go the other way and set the share on our Linux machine, you can follow these instructions on how to do that.



    help.ubuntu.com - How to create a network share



    Procedures



    All commands must be done as root (precede each command with 'sudo' or use 'sudo su').



    Install Samba



     sudo apt-get update
    sudo apt-get install samba


    Set a password for your user in Samba



     sudo smbpasswd -a <user_name>


    Note: Samba uses a separate set of passwords than the standard Linux system accounts (stored in /etc/samba/smbpasswd), so you'll need to create a Samba password for yourself. This tutorial implies that you will use your own user and it does not cover situations involving other users passwords, groups, etc...



    Tip1: Use the password for your own user to facilitate.



    Tip2: Remember that your user must have permission to write and edit the folder you want to share.
    Eg.:
    sudo chown /var/opt/blah/blahblah
    sudo chown : /var/opt/blah/blahblah



    Tip3: If you're using another user than your own, it needs to exist in your system beforehand, you can create it without a shell access using the following command :
    sudo useradd USERNAME --shell /bin/false



    You can also hide the user on the login screen by adjusting lightdm's configuration, in /etc/lightdm/users.conf add the newly created user to the line :
    hidden-users=



    Create a directory to be shared



    mkdir /home/<user_name>/<folder_name>


    Make a safe backup copy of the original smb.conf file to your home folder, in case you make an error



    sudo cp /etc/samba/smb.conf ~


    Edit the file "/etc/samba/smb.conf"



    sudo nano /etc/samba/smb.conf


    Once "smb.conf" has loaded, add this to the very end of the file:



     [<folder_name>]
    path = /home/<user_name>/<folder_name>
    valid users = <user_name>
    read only = no


    Tip: There Should be in the spaces between the lines, and note que also there should be a single space both before and after each of the equal signs.



    Restart the samba:



    sudo service smbd restart


    Once Samba has restarted, use this command to check your smb.conf for any syntax errors



    testparm


    To access your network share



     sudo apt-get install smbclient


    List all shares:



     smbclient -L //<HOST_IP_OR_NAME>/<folder_name> -U <user>


    connect:



     smbclient //<HOST_IP_OR_NAME>/<folder_name> -U <user>


    To access your network share use your username () and password through the path "smb:////" (Linux users) or "\" (Windows users). Note that "" value is passed in "", in other words, the share name you entered in "/etc/samba/smb.conf".



    Note: The default user group of samba is "WORKGROUP".



    Source



    http://www.hardcode.nl/archives_147/article_548-samba-quick-setup-on-ubuntu-1004.htm






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Jun 3 '16 at 19:18









    Videonauth

    22.5k116897




    22.5k116897










    answered Jun 3 '16 at 18:39









    Christopher Angulo-Bertram

    490314




    490314







    • 1




      Could you please be elaborate more here and link to the site only as source. This would vastly improve the quality of your answer.
      – Videonauth
      Jun 3 '16 at 18:54










    • @Videonauth, while I agree with you , I have seen the opposite asked as well, I looked at an answer earlier today that the person the answer in full detail, and someone told them to just link to the answer if it has been answered before. So this seems to be a 50 50 as to who is watching and their opinions on answers.
      – Christopher Angulo-Bertram
      Jun 3 '16 at 19:02










    • When it is an answer on SE yes, i would have as well said o.k. rather flag it as duplicate instead of posting a link at all in an answer, but since you're linking to Ubuntu help site you can copy & paste some essential parts here and link to read further.
      – Videonauth
      Jun 3 '16 at 19:05










    • @Videonauth OK, cool, still learning the ground rules here, thanks for your help.
      – Christopher Angulo-Bertram
      Jun 3 '16 at 19:07










    • thanks for the reply although i think im gonna go the easier rout and do what the first answer instructs but thank you all
      – Tactical Shrimp
      Jun 3 '16 at 19:13












    • 1




      Could you please be elaborate more here and link to the site only as source. This would vastly improve the quality of your answer.
      – Videonauth
      Jun 3 '16 at 18:54










    • @Videonauth, while I agree with you , I have seen the opposite asked as well, I looked at an answer earlier today that the person the answer in full detail, and someone told them to just link to the answer if it has been answered before. So this seems to be a 50 50 as to who is watching and their opinions on answers.
      – Christopher Angulo-Bertram
      Jun 3 '16 at 19:02










    • When it is an answer on SE yes, i would have as well said o.k. rather flag it as duplicate instead of posting a link at all in an answer, but since you're linking to Ubuntu help site you can copy & paste some essential parts here and link to read further.
      – Videonauth
      Jun 3 '16 at 19:05










    • @Videonauth OK, cool, still learning the ground rules here, thanks for your help.
      – Christopher Angulo-Bertram
      Jun 3 '16 at 19:07










    • thanks for the reply although i think im gonna go the easier rout and do what the first answer instructs but thank you all
      – Tactical Shrimp
      Jun 3 '16 at 19:13







    1




    1




    Could you please be elaborate more here and link to the site only as source. This would vastly improve the quality of your answer.
    – Videonauth
    Jun 3 '16 at 18:54




    Could you please be elaborate more here and link to the site only as source. This would vastly improve the quality of your answer.
    – Videonauth
    Jun 3 '16 at 18:54












    @Videonauth, while I agree with you , I have seen the opposite asked as well, I looked at an answer earlier today that the person the answer in full detail, and someone told them to just link to the answer if it has been answered before. So this seems to be a 50 50 as to who is watching and their opinions on answers.
    – Christopher Angulo-Bertram
    Jun 3 '16 at 19:02




    @Videonauth, while I agree with you , I have seen the opposite asked as well, I looked at an answer earlier today that the person the answer in full detail, and someone told them to just link to the answer if it has been answered before. So this seems to be a 50 50 as to who is watching and their opinions on answers.
    – Christopher Angulo-Bertram
    Jun 3 '16 at 19:02












    When it is an answer on SE yes, i would have as well said o.k. rather flag it as duplicate instead of posting a link at all in an answer, but since you're linking to Ubuntu help site you can copy & paste some essential parts here and link to read further.
    – Videonauth
    Jun 3 '16 at 19:05




    When it is an answer on SE yes, i would have as well said o.k. rather flag it as duplicate instead of posting a link at all in an answer, but since you're linking to Ubuntu help site you can copy & paste some essential parts here and link to read further.
    – Videonauth
    Jun 3 '16 at 19:05












    @Videonauth OK, cool, still learning the ground rules here, thanks for your help.
    – Christopher Angulo-Bertram
    Jun 3 '16 at 19:07




    @Videonauth OK, cool, still learning the ground rules here, thanks for your help.
    – Christopher Angulo-Bertram
    Jun 3 '16 at 19:07












    thanks for the reply although i think im gonna go the easier rout and do what the first answer instructs but thank you all
    – Tactical Shrimp
    Jun 3 '16 at 19:13




    thanks for the reply although i think im gonna go the easier rout and do what the first answer instructs but thank you all
    – Tactical Shrimp
    Jun 3 '16 at 19:13










    up vote
    1
    down vote













    There is a free file manager with GUI WinSCP. You can copy files in one click.



    enter image description here
    After creating connection you have one panel with your local computer and a panel with a remote computer.






    share|improve this answer
























      up vote
      1
      down vote













      There is a free file manager with GUI WinSCP. You can copy files in one click.



      enter image description here
      After creating connection you have one panel with your local computer and a panel with a remote computer.






      share|improve this answer






















        up vote
        1
        down vote










        up vote
        1
        down vote









        There is a free file manager with GUI WinSCP. You can copy files in one click.



        enter image description here
        After creating connection you have one panel with your local computer and a panel with a remote computer.






        share|improve this answer












        There is a free file manager with GUI WinSCP. You can copy files in one click.



        enter image description here
        After creating connection you have one panel with your local computer and a panel with a remote computer.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered May 2 at 22:02









        rnofenko

        1114




        1114



























             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f781471%2fhelp-with-file-transfer-from-windows-to-ubuntu%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            pylint3 and pip3 broken

            Missing snmpget and snmpwalk

            How to enroll fingerprints to Ubuntu 17.10 with VFS491