Wednesday, October 31, 2007

arm-linux-gcc zlib

it was so easy this time... i just love when i things do work. This time it was just:

cd /usr/src/zlib-1.2.3
./configure --prefix=/usr/arm-linux
make
make install

Ummmm!

Monday, October 29, 2007

samba PDC on fluxbuntu 7.10 rc

first, this post is still a work in progress. it is not yet complete.

to follow this instructions you should be able to download and burn fluxbuntu 7.10 (rc) iso file and follow some steps.

  1. 13:25
  2. boot from cdrom.
  3. select boxname, language, keyboard layout, partition hdd ( i'm lazzy: use entire disk )
  4. select timezone ( based on kb layout: just the relevant options )
  5. select main username ( not root, since all ubuntus do prefer the sudo way )
  6. skip download language support ( i'm in a hurry now )
  7. 13:39. intallation is complete, rebooting

customize the system a bit...

  1. boot into the system
  2. [optional] change the fluxbox style: (leftclick on desktop)->Menu->Fluxbox->Style->Meta
  3. [optional] apt-get remove nano ( i hate nano )
  4. sudo apt-get install samba system-config-samba

edit the /etc/samba/smb.conf file to read

[global]
 workgroup = MYDOMAINNAME
 server string = %h server
 username map = /etc/samba/smbusers
 domain master = yes
; local master = yes
 domain logons = yes
 security = user

# a bit of security (these you should tweak to your needs)
 ;hosts allow = 192.168.0.0/16 127.0.0.1
 ;hosts deny = ALL

 ;interfaces = 192.168.0.0/24 127.0.0.1
 ;bind interfaces only = yes

[ homes ]
 comment = Personal folders
; guest ok = no
 read only = no

[ proyectos ]
 comment = Proyectos ( everyone RW )
 path = /export/projects
 writable = yes
        #these will make the share to allways use these users.
        #and simplify the permisions management.
 force user = ntuser_projects
 force group = ntgroup_projects

[ netlogon ]
 comment = Netlogon Service
 path = /export/netlogon
 guest ok = yes
 share modes = no