Samba Client and Windows 10 Home - “NT_STATUS_LOGON_FAILURE”/“Access denied”smbclient getting NT_STATUS_LOGON_FAILURE connecting to Windows boxUnable to list windows shares from terminalSamba needs additional restart on reboot?SAMBA — Cannot access Samba share from XPSamba shares not accessible from Windows 8.1 with Ubuntu 14.04 LTSWindows7 machine cannot access Linux share folders via Samba, help pleaseIssues with Samba ConnectionAccess Denied creating a folder in a Samba Share from a windows clientFixing smb login, disk permissions, and remote access

why "to sleep or lie on your back" but not "to sleep or lie with your back on the floor"?

Anacruses, Bar Lines, and Line Breaks

How many cows would you need to drop on Mars to successfully terraform it?

Are there indications of a loss of past historical records in Star Trek universe?

Do any other countries aside from the US have a pledge of allegiance?

Exactly what does "diatonic" mean?

Why are old computers so vulnerable to temperature changes and moisture?

Is it possible to remove the trash icon from the dock on macOS Catalina?

Why give an android emotions?

Which Grows Faster: Factorial or Double Exponentiation

Arrow (->) operator precedence/priority is lowest, or priority of assignment/combined assignment is lowest?

What specimen of caterpillar is this?

Increasing spatial resolution of Landsat MSS and TM images?

Is "to go berserk" used by native speakers or is it obsolete?

How can I justify this without determining the determinant?

Brainfuck interpreter written in C

Kicad: How to give nets / wires multiple names

Is it true that almost everyone who starts a PhD and sticks around long enough can get one?

How do you help a new player evaluate complex multiclassing options without driving them and yourself crazy?

Does this code demonstrate the central limit theorem?

Switching road names from uppercase to mixed case in ArcMap?

Can a monk catch and deflect a magic missile?

Will a falling rod stay in contact with the frictionless floor?

What is the difference between "more" and "less" commands?



Samba Client and Windows 10 Home - “NT_STATUS_LOGON_FAILURE”/“Access denied”


smbclient getting NT_STATUS_LOGON_FAILURE connecting to Windows boxUnable to list windows shares from terminalSamba needs additional restart on reboot?SAMBA — Cannot access Samba share from XPSamba shares not accessible from Windows 8.1 with Ubuntu 14.04 LTSWindows7 machine cannot access Linux share folders via Samba, help pleaseIssues with Samba ConnectionAccess Denied creating a folder in a Samba Share from a windows clientFixing smb login, disk permissions, and remote access






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;









0


















I'm trying to access a file share from a Windows 10 Home using a Samba client. However the following errors happen ...



1# - smbclient



[root@eduardo-nb eduardo]# smbclient -L 192.168.0.5 -W WORKGROUP -U eduardo
Enter WORKGROUPeduardo's password:
session setup failed: NT_STATUS_LOGON_FAILURE


2# - Dolphin



Access denied to smb://WORKGROUP%5Ceduardo@192.168.0.5/D.




NOTE: The only way to gain access to the share is by following the procedures described here ...



File Sharing not working



... which consist of allowing access to "Everyone" and "Turn off password protected sharing".



QUESTION: I would like to access this share with my existing Windows 10 Home user (has administrative prerogatives)... So what may be happening?



Thanks! =D



[Refs.: Unable to list windows shares from terminal , smbclient getting NT_STATUS_LOGON_FAILURE connecting to Windows box , https://answers.microsoft.com/en-us/windows/forum/all/file-sharing-not-working/e6df6ac5-bb5a-41b3-8253-bd59b49d94bd , https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/samba-client-and-windows-10-home/a7502032-240a-4fc8-a756-132d46831adf?tm=1568998329476]




UPDATE: My /etc/samba/smb.conf ...



@harrymc



[global]
workgroup = WORKGROUP
server string = Samba Server
allow insecure wide links = yes
printcap name = /etc/printcap
load printers = yes
log file = /var/log/samba/%m.log
max log size = 50
security = user
dns proxy = no

[homes]
comment = Home Directories
browseable = no
writable = yes

[printers]
comment = All Printers
path = /var/spool/samba
browseable = no
guest ok = no
writable = no
printable = yes

[eduardo]
follow symlinks = yes
wide links = yes
comment = Manjaro Linux Samba share
path = /home/eduardo
available = yes
valid users = eduardo
read only = no
browseable = yes
public = no
writeable = yes









share|improve this question

































    0


















    I'm trying to access a file share from a Windows 10 Home using a Samba client. However the following errors happen ...



    1# - smbclient



    [root@eduardo-nb eduardo]# smbclient -L 192.168.0.5 -W WORKGROUP -U eduardo
    Enter WORKGROUPeduardo's password:
    session setup failed: NT_STATUS_LOGON_FAILURE


    2# - Dolphin



    Access denied to smb://WORKGROUP%5Ceduardo@192.168.0.5/D.




    NOTE: The only way to gain access to the share is by following the procedures described here ...



    File Sharing not working



    ... which consist of allowing access to "Everyone" and "Turn off password protected sharing".



    QUESTION: I would like to access this share with my existing Windows 10 Home user (has administrative prerogatives)... So what may be happening?



    Thanks! =D



    [Refs.: Unable to list windows shares from terminal , smbclient getting NT_STATUS_LOGON_FAILURE connecting to Windows box , https://answers.microsoft.com/en-us/windows/forum/all/file-sharing-not-working/e6df6ac5-bb5a-41b3-8253-bd59b49d94bd , https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/samba-client-and-windows-10-home/a7502032-240a-4fc8-a756-132d46831adf?tm=1568998329476]




    UPDATE: My /etc/samba/smb.conf ...



    @harrymc



    [global]
    workgroup = WORKGROUP
    server string = Samba Server
    allow insecure wide links = yes
    printcap name = /etc/printcap
    load printers = yes
    log file = /var/log/samba/%m.log
    max log size = 50
    security = user
    dns proxy = no

    [homes]
    comment = Home Directories
    browseable = no
    writable = yes

    [printers]
    comment = All Printers
    path = /var/spool/samba
    browseable = no
    guest ok = no
    writable = no
    printable = yes

    [eduardo]
    follow symlinks = yes
    wide links = yes
    comment = Manjaro Linux Samba share
    path = /home/eduardo
    available = yes
    valid users = eduardo
    read only = no
    browseable = yes
    public = no
    writeable = yes









    share|improve this question





























      0













      0









      0








      I'm trying to access a file share from a Windows 10 Home using a Samba client. However the following errors happen ...



      1# - smbclient



      [root@eduardo-nb eduardo]# smbclient -L 192.168.0.5 -W WORKGROUP -U eduardo
      Enter WORKGROUPeduardo's password:
      session setup failed: NT_STATUS_LOGON_FAILURE


      2# - Dolphin



      Access denied to smb://WORKGROUP%5Ceduardo@192.168.0.5/D.




      NOTE: The only way to gain access to the share is by following the procedures described here ...



      File Sharing not working



      ... which consist of allowing access to "Everyone" and "Turn off password protected sharing".



      QUESTION: I would like to access this share with my existing Windows 10 Home user (has administrative prerogatives)... So what may be happening?



      Thanks! =D



      [Refs.: Unable to list windows shares from terminal , smbclient getting NT_STATUS_LOGON_FAILURE connecting to Windows box , https://answers.microsoft.com/en-us/windows/forum/all/file-sharing-not-working/e6df6ac5-bb5a-41b3-8253-bd59b49d94bd , https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/samba-client-and-windows-10-home/a7502032-240a-4fc8-a756-132d46831adf?tm=1568998329476]




      UPDATE: My /etc/samba/smb.conf ...



      @harrymc



      [global]
      workgroup = WORKGROUP
      server string = Samba Server
      allow insecure wide links = yes
      printcap name = /etc/printcap
      load printers = yes
      log file = /var/log/samba/%m.log
      max log size = 50
      security = user
      dns proxy = no

      [homes]
      comment = Home Directories
      browseable = no
      writable = yes

      [printers]
      comment = All Printers
      path = /var/spool/samba
      browseable = no
      guest ok = no
      writable = no
      printable = yes

      [eduardo]
      follow symlinks = yes
      wide links = yes
      comment = Manjaro Linux Samba share
      path = /home/eduardo
      available = yes
      valid users = eduardo
      read only = no
      browseable = yes
      public = no
      writeable = yes









      share|improve this question
















      I'm trying to access a file share from a Windows 10 Home using a Samba client. However the following errors happen ...



      1# - smbclient



      [root@eduardo-nb eduardo]# smbclient -L 192.168.0.5 -W WORKGROUP -U eduardo
      Enter WORKGROUPeduardo's password:
      session setup failed: NT_STATUS_LOGON_FAILURE


      2# - Dolphin



      Access denied to smb://WORKGROUP%5Ceduardo@192.168.0.5/D.




      NOTE: The only way to gain access to the share is by following the procedures described here ...



      File Sharing not working



      ... which consist of allowing access to "Everyone" and "Turn off password protected sharing".



      QUESTION: I would like to access this share with my existing Windows 10 Home user (has administrative prerogatives)... So what may be happening?



      Thanks! =D



      [Refs.: Unable to list windows shares from terminal , smbclient getting NT_STATUS_LOGON_FAILURE connecting to Windows box , https://answers.microsoft.com/en-us/windows/forum/all/file-sharing-not-working/e6df6ac5-bb5a-41b3-8253-bd59b49d94bd , https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/samba-client-and-windows-10-home/a7502032-240a-4fc8-a756-132d46831adf?tm=1568998329476]




      UPDATE: My /etc/samba/smb.conf ...



      @harrymc



      [global]
      workgroup = WORKGROUP
      server string = Samba Server
      allow insecure wide links = yes
      printcap name = /etc/printcap
      load printers = yes
      log file = /var/log/samba/%m.log
      max log size = 50
      security = user
      dns proxy = no

      [homes]
      comment = Home Directories
      browseable = no
      writable = yes

      [printers]
      comment = All Printers
      path = /var/spool/samba
      browseable = no
      guest ok = no
      writable = no
      printable = yes

      [eduardo]
      follow symlinks = yes
      wide links = yes
      comment = Manjaro Linux Samba share
      path = /home/eduardo
      available = yes
      valid users = eduardo
      read only = no
      browseable = yes
      public = no
      writeable = yes






      samba windows-10 shared-folders smb samba4






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Sep 20 at 21:29







      Eduardo Lucio

















      asked Sep 20 at 4:52









      Eduardo LucioEduardo Lucio

      1842 silver badges10 bronze badges




      1842 silver badges10 bronze badges























          2 Answers
          2






          active

          oldest

          votes


















          0



















          You will get that error running smbclient when you pass the wrong password.



          So the question is is this a simple username and password in WIn10 or is it a Microsoft Account username and password as in eduardo@soemthing.com.



          If you are using a Microsoft Account name then the smbclient command becomes:



          smbclient -L 192.168.0.5 -W something.com -U eduardo





          share|improve this answer

























          • "this a simple username and password in WIn10" -> Yes! It is a simple username and password in Win10. "when you pass the wrong password" -> The password is correct. Same as I use to log in to Wind10. Thanks! =D

            – Eduardo Lucio
            Sep 20 at 16:39


















          0



















          THE REAL PROBLEM:



          As you can see in this image...



          share issue



          ...my user "eduardo" is actually "alldocube"... As seen in the print above the way the user "eduardo" ("alldocube") is in the system caused a huge confusion! Actually I couldn't understand how it happened...



          SOLUTION:



          So the only thing that needs to be done is to share (Properties > Sharing) drive "D" for the user "alldocube" (in my case) and give permissions (Properties > Security) on drive "D" for the user "alldocube".



          To access the sharing using Linux open the file browser (Dolphin in my case) and in the path field enter smb://WORKGROUP<YOUR_USER>@<SERVER_IP>/<SHARE_NAME> (smb://WORKGROUPalldocube@192.168.0.5/D in my case).



          [Ref.: https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/samba-client-and-windows-10-home/a7502032-240a-4fc8-a756-132d46831adf?tm=1568998388625&auth=1&page=2 ]



          Thanks! =D






          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',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            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%2f1175394%2fsamba-client-and-windows-10-home-nt-status-logon-failure-access-denied%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown


























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0



















            You will get that error running smbclient when you pass the wrong password.



            So the question is is this a simple username and password in WIn10 or is it a Microsoft Account username and password as in eduardo@soemthing.com.



            If you are using a Microsoft Account name then the smbclient command becomes:



            smbclient -L 192.168.0.5 -W something.com -U eduardo





            share|improve this answer

























            • "this a simple username and password in WIn10" -> Yes! It is a simple username and password in Win10. "when you pass the wrong password" -> The password is correct. Same as I use to log in to Wind10. Thanks! =D

              – Eduardo Lucio
              Sep 20 at 16:39















            0



















            You will get that error running smbclient when you pass the wrong password.



            So the question is is this a simple username and password in WIn10 or is it a Microsoft Account username and password as in eduardo@soemthing.com.



            If you are using a Microsoft Account name then the smbclient command becomes:



            smbclient -L 192.168.0.5 -W something.com -U eduardo





            share|improve this answer

























            • "this a simple username and password in WIn10" -> Yes! It is a simple username and password in Win10. "when you pass the wrong password" -> The password is correct. Same as I use to log in to Wind10. Thanks! =D

              – Eduardo Lucio
              Sep 20 at 16:39













            0















            0











            0









            You will get that error running smbclient when you pass the wrong password.



            So the question is is this a simple username and password in WIn10 or is it a Microsoft Account username and password as in eduardo@soemthing.com.



            If you are using a Microsoft Account name then the smbclient command becomes:



            smbclient -L 192.168.0.5 -W something.com -U eduardo





            share|improve this answer














            You will get that error running smbclient when you pass the wrong password.



            So the question is is this a simple username and password in WIn10 or is it a Microsoft Account username and password as in eduardo@soemthing.com.



            If you are using a Microsoft Account name then the smbclient command becomes:



            smbclient -L 192.168.0.5 -W something.com -U eduardo






            share|improve this answer













            share|improve this answer




            share|improve this answer










            answered Sep 20 at 13:23









            Morbius1Morbius1

            2,3001 gold badge4 silver badges10 bronze badges




            2,3001 gold badge4 silver badges10 bronze badges















            • "this a simple username and password in WIn10" -> Yes! It is a simple username and password in Win10. "when you pass the wrong password" -> The password is correct. Same as I use to log in to Wind10. Thanks! =D

              – Eduardo Lucio
              Sep 20 at 16:39

















            • "this a simple username and password in WIn10" -> Yes! It is a simple username and password in Win10. "when you pass the wrong password" -> The password is correct. Same as I use to log in to Wind10. Thanks! =D

              – Eduardo Lucio
              Sep 20 at 16:39
















            "this a simple username and password in WIn10" -> Yes! It is a simple username and password in Win10. "when you pass the wrong password" -> The password is correct. Same as I use to log in to Wind10. Thanks! =D

            – Eduardo Lucio
            Sep 20 at 16:39





            "this a simple username and password in WIn10" -> Yes! It is a simple username and password in Win10. "when you pass the wrong password" -> The password is correct. Same as I use to log in to Wind10. Thanks! =D

            – Eduardo Lucio
            Sep 20 at 16:39













            0



















            THE REAL PROBLEM:



            As you can see in this image...



            share issue



            ...my user "eduardo" is actually "alldocube"... As seen in the print above the way the user "eduardo" ("alldocube") is in the system caused a huge confusion! Actually I couldn't understand how it happened...



            SOLUTION:



            So the only thing that needs to be done is to share (Properties > Sharing) drive "D" for the user "alldocube" (in my case) and give permissions (Properties > Security) on drive "D" for the user "alldocube".



            To access the sharing using Linux open the file browser (Dolphin in my case) and in the path field enter smb://WORKGROUP<YOUR_USER>@<SERVER_IP>/<SHARE_NAME> (smb://WORKGROUPalldocube@192.168.0.5/D in my case).



            [Ref.: https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/samba-client-and-windows-10-home/a7502032-240a-4fc8-a756-132d46831adf?tm=1568998388625&auth=1&page=2 ]



            Thanks! =D






            share|improve this answer





























              0



















              THE REAL PROBLEM:



              As you can see in this image...



              share issue



              ...my user "eduardo" is actually "alldocube"... As seen in the print above the way the user "eduardo" ("alldocube") is in the system caused a huge confusion! Actually I couldn't understand how it happened...



              SOLUTION:



              So the only thing that needs to be done is to share (Properties > Sharing) drive "D" for the user "alldocube" (in my case) and give permissions (Properties > Security) on drive "D" for the user "alldocube".



              To access the sharing using Linux open the file browser (Dolphin in my case) and in the path field enter smb://WORKGROUP<YOUR_USER>@<SERVER_IP>/<SHARE_NAME> (smb://WORKGROUPalldocube@192.168.0.5/D in my case).



              [Ref.: https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/samba-client-and-windows-10-home/a7502032-240a-4fc8-a756-132d46831adf?tm=1568998388625&auth=1&page=2 ]



              Thanks! =D






              share|improve this answer



























                0















                0











                0









                THE REAL PROBLEM:



                As you can see in this image...



                share issue



                ...my user "eduardo" is actually "alldocube"... As seen in the print above the way the user "eduardo" ("alldocube") is in the system caused a huge confusion! Actually I couldn't understand how it happened...



                SOLUTION:



                So the only thing that needs to be done is to share (Properties > Sharing) drive "D" for the user "alldocube" (in my case) and give permissions (Properties > Security) on drive "D" for the user "alldocube".



                To access the sharing using Linux open the file browser (Dolphin in my case) and in the path field enter smb://WORKGROUP<YOUR_USER>@<SERVER_IP>/<SHARE_NAME> (smb://WORKGROUPalldocube@192.168.0.5/D in my case).



                [Ref.: https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/samba-client-and-windows-10-home/a7502032-240a-4fc8-a756-132d46831adf?tm=1568998388625&auth=1&page=2 ]



                Thanks! =D






                share|improve this answer














                THE REAL PROBLEM:



                As you can see in this image...



                share issue



                ...my user "eduardo" is actually "alldocube"... As seen in the print above the way the user "eduardo" ("alldocube") is in the system caused a huge confusion! Actually I couldn't understand how it happened...



                SOLUTION:



                So the only thing that needs to be done is to share (Properties > Sharing) drive "D" for the user "alldocube" (in my case) and give permissions (Properties > Security) on drive "D" for the user "alldocube".



                To access the sharing using Linux open the file browser (Dolphin in my case) and in the path field enter smb://WORKGROUP<YOUR_USER>@<SERVER_IP>/<SHARE_NAME> (smb://WORKGROUPalldocube@192.168.0.5/D in my case).



                [Ref.: https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/samba-client-and-windows-10-home/a7502032-240a-4fc8-a756-132d46831adf?tm=1568998388625&auth=1&page=2 ]



                Thanks! =D







                share|improve this answer













                share|improve this answer




                share|improve this answer










                answered Sep 21 at 20:12









                Eduardo LucioEduardo Lucio

                1842 silver badges10 bronze badges




                1842 silver badges10 bronze badges































                    draft saved

                    draft discarded















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1175394%2fsamba-client-and-windows-10-home-nt-status-logon-failure-access-denied%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown









                    Popular posts from this blog

                    Tamil (spriik) Luke uk diar | Nawigatjuun

                    Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

                    Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?