Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 36

Thread: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to win

  1. #11
    Join Date
    May 2006
    Location
    Denmark
    Beans
    405

    Re: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to

    Great that it works.

    I don't know why you need the extra parameters?
    If others report similar results, I will add it to the how-to.

  2. #12
    Join Date
    Jul 2006
    Beans
    36

    Re: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to

    I also had the same problem, that the folder was empty. Then I started looking for a problem, and while googled, after some time the network name appeared in the folder So I guess you just need to wait some time.

    I have another question: how to unmount the folder?
    And how to access password protected shares (like c$ or d$) with fusesmb? With smbmount (mount -t smbfs) there's no problem, I just add -o username=***,password=***. But how to do that with fusesmb?

  3. #13
    Join Date
    Mar 2007
    Location
    TN, US
    Beans
    607
    Distro
    Ubuntu

    Re: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to

    Quote Originally Posted by evaldas View Post
    I also had the same problem, that the folder was empty. Then I started looking for a problem, and while googled, after some time the network name appeared in the folder So I guess you just need to wait some time.

    I have another question: how to unmount the folder?
    And how to access password protected shares (like c$ or d$) with fusesmb? With smbmount (mount -t smbfs) there's no problem, I just add -o username=***,password=***. But how to do that with fusesmb?
    try it in terminal with the same parameters and see if it works!! I ended up adding the required parameters to the entry in sessions, and it worked out well. Hope that helps!!
    Registered Linux user 446122 , Registered Machine 352936.

  4. #14
    Join Date
    May 2006
    Location
    Denmark
    Beans
    405

    Re: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to

    Quote Originally Posted by evaldas View Post
    I also had the same problem, that the folder was empty. Then I started looking for a problem, and while googled, after some time the network name appeared in the folder So I guess you just need to wait some time.

    I have another question: how to unmount the folder?
    And how to access password protected shares (like c$ or d$) with fusesmb? With smbmount (mount -t smbfs) there's no problem, I just add -o username=***,password=***. But how to do that with fusesmb?
    Thanx for the feedback.
    I have added the possible delay to the how-to.
    I remember having problems with C$ way back with Windows NT 4.0,
    So your post called back some ancient memories.
    You could "unhide" the shares by making a new share without the $ sign added.

  5. #15
    Join Date
    Jun 2006
    Beans
    64
    Distro
    Ubuntu Development Release

    Re: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to

    You may need to edit your fusesmb.conf file it is located in ~/.smb.

    I know if I bring my xubuntu laptop to work I have to change the username and password for our doamin.

    Right now I can't remeber how the file is layed out, but the man page for fusesmb.conf has an example of a basic file. change the username to "<domain or win pc name>"\username no qoutes.

    Hope that helps

  6. #16
    Join Date
    Aug 2007
    Beans
    10

    Re: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to

    Could somebody explain why the reboot is neede in step 5? Is this to get the user settings right???

  7. #17
    Join Date
    May 2006
    Location
    Denmark
    Beans
    405

    Re: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to

    It's sufficient to just restart X.
    You can even skip that, by mounting fusesmb in terminal.
    But that way, you wouldn't know if you entered everything correctly for your session start.
    It's simply the easiest way to check everything works, and I wanted to make this how-to as simple as possible.

  8. #18
    Join Date
    May 2006
    Location
    Denmark
    Beans
    405

    Re: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to

    Quote Originally Posted by evaldas View Post
    I have another question: how to unmount the folder?
    And how to access password protected shares (like c$ or d$) with fusesmb? With smbmount (mount -t smbfs) there's no problem, I just add -o username=***,password=***. But how to do that with fusesmb?
    For further options type "fusesmb -h" in terminal,

    unmounting,
    Only way for me is to kill fusesmb.

    About your problem with c$ or d$,
    Did you find a solution yourself?
    I don't think fusesmb supports automatic login with alternate user-name and password.

  9. #19
    Join Date
    Sep 2007
    Beans
    34

    Re: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to

    Quote Originally Posted by evaldas View Post
    I have another question: how to unmount the folder?
    as with any fuse based fs: $fusermount -u mountpoint

    Quote Originally Posted by evaldas View Post
    And how to access password protected shares (like c$ or d$) with fusesmb?
    I installed the fusesmb package for feisty and it comes with man-pages for fuser.conf (do man fusesmb.conf on the command line, there are good examples at the very bottom): in your ~/.smb/fusesmb.conf file you can add something like
    Code:
    ; Default username and password
    [global]
    username=user
    password=totallysecret
    or for certain servers or shares do:
    Code:
    ; Share-/Server-specific settings
    ;[/SERVER/SHARE]
    ;[/SERVER]
    username=yourusernamehere
    password=totallysecret
    Adapt to your local set-up. E.g. SERVER could be an ip like 192.168.1.23, but don't end neither SERVER nor SHARE with a slash ('/'). But keep in mind that passwords (as far as I know) are send over the samba network in naked plain text.

    Hope it helps.
    Cheers.
    Last edited by kakao; September 9th, 2007 at 02:10 PM.

  10. #20
    Join Date
    Jul 2007
    Beans
    26

    Re: Howto Easy FuseSMB - access Samba shares from ALL programs. - automatic access to

    Hi!

    First, thanks for the howto. I like this method of accessing smb-shares much more than the ubuntu-generic style (mainly because some applications can't handle this method).

    Secondly, I want to add a piece of information which cost me about two hours of hassling around: Make sure that your server-name does not contain any dots (e.g. don't name your server fp.ath.cx like me). While it works with Windows-clients and also with Ubuntu's native method of accessing shares, it does not work with fusesmb.

    Bye,
    airflow

Page 2 of 4 FirstFirst 1234 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •