Results 1 to 5 of 5
Dear linux users,
I finally succeeded in joining my windows network with my Linux Ubuntu pc.
But.. now I want to login on my network with one of the users ...
- 04-07-2010 #1Just Joined!
- Join Date
- Mar 2010
- Posts
- 3
Logging in on the network I joined
Dear linux users,
I finally succeeded in joining my windows network with my Linux Ubuntu pc.
But.. now I want to login on my network with one of the users in the Active Directory.
But at the loginscreen I only get an option to login with my local account.
Maybe i'm just to stupid to find the network login button?
In windows (which i'm used to) its obvious..
You can pick "Local computer" or "Network" login.
But here i cant seem to be able to find it...
Hope this question doesnt sound to stupid.
Thanx in advance,
Teun
- 04-07-2010 #2
Try to mount using the shell:
mount -t smbfs -o username=[username here] //[IP address or DNS name]/[share directory] /mnt/[where to mount it to]
for example (as root or sudo):
mount -t smbfs -o username=its_really_me //windows-server/public /mnt/networkdrive
Make sure the directory for the mount (i. e. /mnt/networkdrive) exists and the local user can read/write to it.
- 04-07-2010 #3
this is only useful for mounting windows samba shares, it doesn't have anything to do with network login
i should also add that smbfs is deprecated, and most distro's you should use cifs
- 04-07-2010 #4Just Joined!
- Join Date
- Jun 2007
- Posts
- 12
Pretty much what you are asking for is to login using LDAP on Linux. Why would you want to do that? Are you trying to access a windows share? If you just want access to the share you should use a cifs client or a samba client. If you login with LDAP it isn't going to get you what you would get on a windows box. You can open exchange and just have your email pop up.
What besides trying to login are you trying to do?
- 04-07-2010 #5Linux Guru
- Join Date
- Nov 2007
- Posts
- 1,695
I recommend reading the official Samba docs about Winbind and PAM.But.. now I want to login on my network with one of the users in the Active Directory.
But at the loginscreen I only get an option to login with my local account.
Just like in Windows where DOMAIN\username is used to login to a certain domain, the same is done on Linux. The only difference is what you specified in your smb.conf as the "winbind separator." With the default "+" character, the username would be DOMAIN+username.


Reply With Quote