hey guys, i have been trying to setup a samba share on my newly installed kubuntu 10.10. i have followed several different how-tos on the web, trying to get a little something from each of them. i want to change my IP to static, but this is all that is present...
i assume that since i am connected to the internet with this machine, and my samba shares are visible in other computers browsers, that eth0/eth1 should be present somewhere?
secondly, from either mac os, winxp, or even other linux VM's, i cannot login to the share. i have added users, set/reset passwords, enabled users, and even used GADMIN to verify permissions. but i still get incorrect uname/pword when trying to login.
DISTRIB_RELEASE=10.10
KDE 4.5.1
GRUB
Version: 0.97-29ubuntu60
Description: GRand Unified Bootloader (Legacy version)
any help or direction is appreciated.
EDIT
i thought i would also point out my current addressing scheme.
DSL modem 192.168.1.1
wireless router 192.168.2.1
kubuntu box 192.168.2.2 (will be static)
macbook 192.168.2.3
xp laptop 192.168.2.4
should it read?
Code:
sudo kate /etc/network/interfaces
Code:
auto lo iface lo inet loopback
secondly, from either mac os, winxp, or even other linux VM's, i cannot login to the share. i have added users, set/reset passwords, enabled users, and even used GADMIN to verify permissions. but i still get incorrect uname/pword when trying to login.
Code:
sudo kate /etc/samba/smb.conf
Code:
[global] workgroup = MSHOME interfaces = 192.168.2.1/8 [drive_c] comment = C path = /home/chris/drive_c/ read only = no create mask = 0600 directory mask = 0700 guest ok = yes valid users = chris,christopherhagmaier admin users = chris hosts allow = 192.168.2.0/5 only user = yes
Code:
chris@chris-Dimension-4600i:~$ lscpu Architecture: i686 CPU op-mode(s): 32-bit CPU(s): 2 Thread(s) per core: 2 Core(s) per socket: 1 CPU socket(s): 1 Vendor ID: GenuineIntel CPU family: 15 Model: 3 Stepping: 4 CPU MHz: 2992.811 L1d cache: 16K L2 cache: 1024K
KDE 4.5.1
GRUB
Version: 0.97-29ubuntu60
Description: GRand Unified Bootloader (Legacy version)
any help or direction is appreciated.
EDIT
i thought i would also point out my current addressing scheme.
DSL modem 192.168.1.1
wireless router 192.168.2.1
kubuntu box 192.168.2.2 (will be static)
macbook 192.168.2.3
xp laptop 192.168.2.4
should it read?
Code:
auto lo iface lo inet loopback auto eth0 iface eth1 inet static address 192.168.2.2 gateway 192.168.2.1 netmask 255.255.255.0 network 192.168.2.0 broadcast 192.168.2.255
Comment