Vous êtes sur la page 1sur 64

Samba PDC | GNU/Linux-BR.

com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Compartilhando Conhecimento !

Tutorial para configurao do Samba PDC.


Explicando alguns parmetros. smbclient Um programa que faz as vezes de cliente em um ambiente Linux. Com ele, voc pode acessar um compartilhamento em uma mquina Windows ou at mesmo em um outro servidor Samba. testparm No processo de configurao do servidor, esse comando ser seu melhor amigo. O testparm testa o arquivo de configurao do Samba e verifica se existe algum erro. smb.conf O arquivo de configurao do samba smbstatus Listar as conexes do servidor smbd e o status do servio. swat Uma das ferramentas mais conhecidas de administrao do samba. # apt-get install samba samba-doc smbclient smbfs

1 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

2 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

3 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Variveis
Algo que voc usuar muito ao criar seu arquivo smb.conf so as variveis. Variveis substituem determinados valores no parmetros, garantindo que seja possvel criar valores personalizveis para cada usurio ou grupo conectado. Por exemplo, a opo path = /tmp/%u pode ser interpretada como path =/tmp/evandro se o usurio evandro estiver conectado ao servidor. Listas de varveis mais comuns: %U nome do usurio conectado %G grupo primrio de %U %m o nome NetBios da mquina clentes %L o nome NetBios do servidor. Isso permite que voc mude as configuraes baseado em como o cliente chama o servidor. Assim, seu servidor pode ter dupla personalidade %d identificao (id) do processo atual no servidor %a a arquitetura da mquina remota %I o endereo IP da mquina cliente %i o endereo IP ao qual o cliente se conectou %T a data e hora aual

4 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

%D o nome do grupo de trabalho ou domnio do usurio atual %S o nome do servio atual, se houver %P o diretrio raiz do servio atual, se houver %u nome de usurio do servio atual, se houver %g grupo primrio de %u %H o diretrio home de %u # testparm

5 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

6 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Para um melhor entendimento de cada opo do arquivo de configurao do smb.conf, acesse o link abaixo, nele contm explicaes sobre cada opo desse arquivo. samba-para-quem-quer-sambar-um-pouco-do-seu-conf-comentado. Nesse tutorial vou apenas citar a confgurao do samba como um servidor de domnio PDC. Executando comandos ao acessar o compartilhamento Uma das muitas peculiaridade do Samba permitir criar compartilhamentos que executem comandos quando um usurio se conecta ou desconecta de um recurso. Isso pode ser til em centenas de situaes diferentes, ainda mais se levarmos em conta que os comandos podem ser scripts criados pro voc mesmo. Digamos que queira compartilhar uma unidade de disco externa ( que precisa ser montada para ser acessada pelo Linux), e quer que o prrpio Samba execute os comandos de montar/desmontar a unidade, quando o susurio acessar o compartihlamento. Ou queria que o Samba apague automaticament arquivos temporrios gerados pelo sistema quando o usurio se deslogar. Para isso, existem os parmetros preexec e posteexec, que executam comandos antes ou depois, de uma conexo ser feita. [exemplo] read only = yes locking = no path = /samba/exemplo guest ok = yes preeexec = script_a_ser_executado postexec = script_a_ser_executado

Criando uma Lixeira com o Samba


A primeira coisa que precisamos fazer chamar os mdulos VFS que iremos usar no Samba. Alinha abaixo deve ser includa na seo [globla]>

7 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

vfs objects = recycle Essa linha chama o mdulo recycle. Podemos chamar vrios mdulos com0700 esse prametro, mas por enquanto vamos ficar apenas como recycle. Agora vamos definir os prmetros da lixeira. recycle:repository O caminho do diretrio para o qual os arquivos apagados sero movidos. recycle:directory_mode O modo de acesso que voc deseja para o diretrio da lixeira. Com essa configurao setada, o diretrio ser criado caso ele no exista ou o primeiro arquivo for apagado. Se a opo recycle:subdir_mode no estiver definida, essa opo tambm se aplica aos subdiretrios, e se ela no existir, por padro o modo de acesso sera 0700 recycle:subdir_mode O modo de acesso desejado para os subdiretrios da lixeira, no qual eles sero criados. Se essa opo no estiver configurada os subdiretrios sero criados com o mesmo modo da opo directory_mode recycle:keeptree Define se a estrutura de diretrios deve ser mantida, ou se os arquivos na pasta que est sendo apagado devem ser mantidos separadamentena lixeira. recycle:versions Se essa opo estiver definida, dois arquivos com o mesmo nome que so apagados sero ambos mantidos na lixeira recycle:touch Determina se a data de acesso ao arquivo deve ser alterada quando o arquivo movido para a lixeira recycle:touch_mtime Determina se a data da ltima modificao do arquivo deve ser alterada quando o arquivo movido para a lixeira recycle:maxsize Arquivos maiores que determinado tamanho em bytesespecificados nesse prametro no sero movidos para a lixeira recycle:exclude_dir Contm uma lista de diretrios. Quando quaisquer arquivos desses diretrios forem apagados, eles no sero movidos para a lixeira, sendo apagados normalmente. recycle:noversions Determina uma lista de caminhos de diretrios ou arquivos para o qual o sistema de verses no deve ser utilizado. Obviamente, s til quando recycle:versions estiver habilitado recycle:maxsize = 10000 recycle:repository = /samba/lixeira recycle:noversions = .doc|.xls|.ppt|.txt| recycle:versions = true recycle:touch = true

8 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

recycle:keeptree = true recycle:exclude = *.tmp *.mp3 *.temp *.wma [ lixeira ] path = /samba/lixeira writable = yes

Criando um registro das aes dos usurios


Como administrador de sistemas, voc provavelmente vai precisar registrar de alguma forma as aes, acesso e possveis mensagens de erro para realizar a manuteno do seu sistema. O samba, como todo bom servidor, tambm oferece um recurso de log. Para ativ-lo, basta adicionar as linhas abaixo dentro da seo [global] do seu smb.conf log level = 1 log file = /var/log/samba.log max log size = 1000 Onde: log level - mostra o nvel das mensagens: o nvel 0 mostra apenas mensagens crticas do sistema. o nvel 1 mostra detalhes dos acessos e 2 a 10 mostram diversos nveis de informaes, teis para desenvolvedores log file - indica o caminho e o arquivo onde ele ser gerado max log size indica o tamanho mximo do arquivo, em kbytes Com o tempo voc ver que, embora o log nativo do samba traga informaes teis, um pouco incompleto. A partir do Samba 3, com a criao do VFS, foi includo um mdulo de auditoria chamado full_audit, que permite criar logs de acesso e de modificaes feitas de uma forma bem mais completa que o log do Samba. Ativando o mdulo: vfs objects = full_audit

9 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Se voc estiver usando o recycle, apenas liste os dois mdulos separados por vrgula. vfs objects = full_audit, recycle As opes do full_audit so: vfs_full_audit:prefix Define as informaes que sero gravdas no log. Aqui possvel a utilizao de variveis. Por padro, o Samba considera esses parmetros com o valor $u|%I vfs_full_audit:success Uma lista de todas as operaes que devem ser gravadas no log caso sejam realizadas com sucesso full_audit_:facility e full_audit:priority Definem o nvel e a prioridade dos alertas entre os suportados pelo syslog Agora, hora de incluirmos essas opes no smb.conf. Abra o arquivo de configurao e digite as linhas abaixo dentro da seo [global] # vim smb.conf full_audit:success = open, opendir, write, unlink, rename, mkdir, rmdir, chmod, chown full_audit:failure = none full_audit:prefix = %u|%I|%S full_audit:facility = local5 full_audit:priority = notice :x! full_audit:facility = local5 full_audit:priority = notice apenas especificam o nvel dos alertas, entre os suportados pelo syslog. Com as configuraes salvas no smb.conf, falta agora configurar o sysklogd ( o servio que gera os logs no Linux), para logar os eventos do Samba. Abra o arquivo /etc/syslog.conf e adicione a linha abaixo: local5.notice /var/log/samba-full_audit.log

10 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

11 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

12 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

13 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Forando permisses de acesso


create mask = 0755 directory mask = 0755 [ publico ] path = /samba/publico comment = Compartilhamento publico browseable = yes writeable = yes force create mode = 1777 force directory mode = 1777

Definindo o diretrio do usurio


[ homes ] comment = homes pessoal path = /home/%u/samba valid users = %S create mask = 0700 directory mask = 0700 read only = no browseable = no

Contas de usurios
# passwod root # smbpasswd -a root

14 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Com a senha criada, vamos a configurao do netlogon. # mkdir -p /samba/netlogn # chmod 775 /samba/netlogon

15 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

importante que as permisses do netlogon sejam 775 no caso de haver administradores de rede, ou 755 se apenas voc administrar o Samba. Se voc j criou alguns usurios, dever tambm criar um subdiretrio profiles.pds dentro do dietrio home de cada um deles. Esse diretrio usado pela mquinas clientes Windows para armazenar informaes das sesses cada vez que o usurio faz o logon no domnio. Para isso, use os comandos: # mkdir /home/evandro/profile.pds # chown -R evandro.evandro /home/evandro/profile.pds Perceba que isso dever ser feito para cada usurio, e o caminho pode ser diferente se na seo [homes] voc usou um path diferente do normal. Se voc ainda nocriou alguns usurios, pode tornar esse processo de criao do profile.pds mais rpido com o comando: # mkdir /etc/skel/profile.pds # mkdir /etc/skel/samba Como vimos, qualquer coisa inserida dentro do /etc/skel ir refletir na pasta home dos novos usurios.

16 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

17 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Contas de mquinas
No PDC, alm das contas de usurios, tambm necessrio cadastrar uma conta ( bloqueada) para cada mquina cliente. Essa conta dever ter o mesmo nome que o nome de rede da mquina cliente. Essa conta dever ter o mesmo nome que o nome de rede da mquina cliente. Digamos, por exemplo, que voc queira a mquina terminal-1. # useradd -d /dev/null -s /bin/false terminal-1\$ # passwd -l terminal-1\$ # smbpasswd -a -m terminal-1 Perceba que nos dois primeiros comandos, adicionado um CIFRO $ depois do nome, que indica que estamos criando uma conta de mquina, que no tem diretrio home ( -d /dev/null ), no possui um shell vlido ( -s /bin/false ) e est travada ( passwd -l ) ( smpasswd -a ) conta ser vlida apenas para o Samba, sendo cadastrada com a opo -m ( machine ). Dentro do arquivo /etc/shells, adicone a linha /bin/false. echo /bin/false >> /etc/shells

18 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Como alternativa, voc pode adicionar as contas da mquina dentro de um grupo MAQUINAS. Isso pode ser til para organizao das contas. # useradd -g maquinas -d /dev/null -s /bin/false terminal-1$ Outra maneira de adicionar clientes (mquinas) dentro do smb.conf usando o parmetro add machine script add user script = useradd -g maquinas -c Maquina de Dominio -s /bin/false -d /dev/null %u

Criando o script de inicializao


Crie o diretrio /etc/samba/netlogon/. Dentro desse diretrio criaremos os scirpts no formato Windows que ser executado sempre que houver um logon em uma mquina cliente. Como o arquivo conter comandos tpicos do prompt de comando (MS-DOS). Para mapear uma unidade de rede automaticamente, poderamos usar: net use f: \\servidor\diretrio-compartilhado Para sincronizar a mquina de todos os usurios com o servidor Samba, acrescente a linha abaixo no arquivo de configurao do samba (smb.conf) na seo [global]

19 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

time server = yes Esse parmetro determina se o Samba ir se aunciar para a rede como um servidor de data e hora. Com ele inserido no smb.conf. Voc pode adicionar ao netlogon.bat a linha abaixo: net time \\servidor

20 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

21 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Ao logar no Windows, o sistema ir automaticamente buscar a hora no servidor e se atualizar. Uma ltima dica sobre o netlogon que, como falado, podemos criar um script por usurio(%U.bat) ou grupo (%G.bat). Criando perfis mveis no Samba. #mkdir /samba/profiles # chmod 1777 /samba/profiles

22 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Com isso, cada usurio que se logar ter um diretrio pessoal com o seu nome dentro de /samba/profiles/, onde as configuraes sero salvas. Apesar de termos definido que as configuraes de acesso seriam para todos os usurios (1777), o prprio Samba se encarregar de fazer com que apenas o usurio logado tenha acesso ao prprio perfil. Adicione a linha abaixo no smb.conf na seo [global]. logon path = \\%L\Profiles\%U logon home = \\%L\Profiles\%U Onde logon home servir principalmente para verses mais antigas do Windows 95/98 e logon path, diz para o Windows XP/Vista/7 qual o caminho onde ficaro os perfis. No caso, como usamos variveis, terems algo como \\servidor\proflies\usuario durante o logon. [ profiles ] path = /samba/profiles writeable = yes browseable = no create mask = 0600 directory mask = 0700 Exemplo do conf smb.conf que usei para esse tutorial. ########################## [global] # Nome do seu Servidor comment = tl # Domnio do servidor PDC workgroup = FMC server string = Servidor de Arquivos Samba PDC netbios name = tl # Indica ser obrigatrio o uso de usurio e senha security = user

23 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

os level = 100 announce as = NT Server domain logons = yes passdb backend = tdbsam enable privileges = yes smb passwd file = /etc/samba/smbpasswd.db wins support = yes # Usuarios com poderes de root admin users = admin evandro # Caminho para logon de usuarios logon script = %U.bat logon path = \\%L\Profiles\%U logon home = \\%L\Profiles\%U # Sincronizar os horrios time server = yes # Preservar o nome do arquivo e criar arquivos somente com letras minsculas case sensitive = no default case = lower preserve case = no short preserve case = no mangle case = yes mangled names= yes # Opes principais para se tornar o PDC domain master = yes local master = yes preferred master = yes encrypt passwords = yes

24 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

keep alive = 20 debug level = 3 # Criando registros das aoes dos usuarios log level = 1 log file = /var/log/samba_log.%U null passwords = no socket options = IPTOS_LOWDELAY TCP_NODELAY vfs objects = recycle, full_audit full_audit:success = open, opendir, write, unlink, rename, mkdir, rmdir, chmod, chown full_audit:failure = none full_audit:prefix = %u|%I|%S full_audit:facility = local5 full_audit:priority = notice # Lixeira recycle:maxsize = 10000 recycle:repository = /samba/lixeira recycle:noversions = .doc|.xls|.ppt|.txt| recycle:versions = true recycle:touch = true recycle:keeptree = true recycle:exclude = *.tmp *.mp3 *.temp *.wma # Bloqueando arquivos no servidor veto files = /*.mp3/*.wmv/*.wma/*.ogg/ # Adicionando clientes ao domnio (grupo maquinas) add machine script = /usr/sbin/useradd -g maquinas -c \\192.168.6.4 -s /bin/false -d /dev/null %u

25 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

# Permitindo que o usurio possa alterar a senha password sync = yes passwd program = /usr/bin/passwd %u passwd chat = *Enter\snew\s*\spassword:* %n \ *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* # Resolvendo problemas com acentos unix charset = ISO8859-1 display charset = cp850 [ lixeira ] path = /samba/lixeira writable = yes [ profiles ] path = /samba/profiles writeable = yes browseable = no create mask = 0600 directory mask = 0700 [ homes ] comment = homes pessoal path = /home/%u/samba valid users = %S create mask = 0700 directory mask = 0700 read only = no browseable = no [netlogon ] comment = scritps de inicializao path = /etc/samba/netlogon/ public = no browseable = no

26 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

writeable = no [ publico ] path = /samba/publico comment = Compartilhamento publico browseable = yes writeable = yes force create mode = 1777 force directory mode = 1777 [ ti ] path = /samba/ti read only = no valid users = +ti Exemplo do diretrios criado para compartihamento

27 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Criando o usurio admin. Esse usurio ter poderes para adicionar mquinas ao domnio

28 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

29 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Script para adicionar usurio no samba


#!/bin/bash pergunta(){ echo echo Pressione ENTER para voltar echo read VOLTAR } while true do clear echo SCRIPT PARA CRIAR USURIO NO SERVIDOR SAMBA PDC echo echo 1 Adiconar usurio echo 2 Remover usurio

30 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

echo 3 Sair echo -ne \n: read op case $op in 1) echo -n Entre com o login do usurio:

read login echo -n Entre com o nome completo do usurio: read nome echo -n Entre com a senha do usurio: stty -echo read senha stty echo echo echo Mensagem do sistema: echo /usr/sbin/useradd $login -c $nome -d /home/$login -s /bin/bash ; echo $senha | /usr/bin/passwd $login /bin/mkdir -p /home/$login/samba ; /bin/chown $login.$login -R /home/$login/samba echo (echo $senha ; echo $senha ) | /usr/bin/smbpasswd -s -a $login echo echo Pressione qualquer tecla para continuar read msg ;; 2) echo -n Entre com o login do usurio a remover;

read login echo echo Mensagem do sistema: echo /usr/sbin/smbpasswd -x $login echo

31 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

/usr/sbin/userdel $login echo echo Pressione qualquer tecla para continuar read msg ;; 3) clear ; echo ; echo Finalizando Programa ; sleep 1; clear; break ;; *) echo ; echo Opo Invlida ; sleep 1 ; echo ;; esac done

POLICYS Para o Windows


Para quem deseja criar POLICYs e inserir na .BAT do usurio, segue algumas linhas do registro do Windows Bloqueia o Painel de Controle REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoControlPanel /t REG_DWORD /d 000000001 /f Habilitando Novamente Quase Todos assim ->Coloque um 0(ZERO) No Valor do Registro onde Esta o 1(UM) EXEMPLO REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoControlPanel /t REG_DWORD /d 000000000 /f Desabilita o Firewall do Windows Xp REG ADD HKLM\System\CurrentControlSet\Serices\SharedAccess\Parameters\FirewallPolicy\StandardProfile /v DisableFirewall /t REG_DWORD /d 000000000 /f Para Habilitar->v Enable Firewall Desabilita a Notificao de Firewall Desativado REG ADD HKLM\Software\Microsoft\Security Center /v FirewallDisableNotify /t REG_DWORD /d 000000001 /f Desabilitar Restaurao de Sistema REG ADD HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore\ /v DisableSR /t REG_DWORD /d 000000001 /f

32 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Remove o Gerenciador de Tarefas [Ctrl+Alt+Del] REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 000000001 /f Remove Executar do Menu Iniciar REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoRun /t REG_DWORD /d 000000001 /f Esconde Relogio do Windows REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v HideClock /t REG_DWORD /d 000000001 /f Desabilita Notificao de AntiVirus Desativado REG ADD HKLM\Software\Microsoft\Security Center /v AntiVirusDisableNotify /t REG_DWORD /d 000000001 /f Desabilita Windows Messenger REG ADD HKLM\Software\Policies\Microsoft\Messenger\Client /v PreventRun /t REG_DWORD /d 000000001 /f Bloqeuar Barra de Tarefas REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v LockTaskbar /t REG_DWORD /d 000000001 /f Forar o Menu Iniciar No Estilo Classico REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoSimpleStartMenu /t REG_DWORD /d 000000001 /f Desabilita Atualizaes Automaticas do Windows REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoAutoUpdate /t REG_DWORD /d 000000001 /f Oculta Meus Locais de Rede Da Area de Trabalho REG ADDHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoNetHood /t REG_DWORD /d 000000001 /f Remove o Internet Explorer da Area de Trabalho REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoInternetIcon /t REG_DWORD /d 000000001 /f Remove Logoff Do Menu Iniciar REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoLogoff /t REG_DWORD /d 000000001 /f

33 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Remove e Impede Acesso ao Boto Desligar do Menu Iniciar REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoClose /t REG_DWORD /d 000000001 /f Bloquear a Alterao do Papel de Parede REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoDesktopCleanupWizard /t REG_DWORD /d 000000001 /f Remove a Lixeira da Area de Trabalho REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\NonEnum /v {645FF040-5081-101B-9F08-00AA002F954E} /t REG_DWORD /d 000000001 /f Remove Meus Documentos da Area de Trabalho REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\NonEnum /v {450D8FBA-AD25-11D0-98A8-0800361B1103} /t REG_DWORD /d 000000001 /f Remove Meu Computador da Area de Trabalho REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\NonEnum /v {20D04FE0-3AEA-1069-A2D8-08002B30309D} /t REG_DWORD /d 000000001 /f Remove Propiedades do Menu de Contexto da Lixeira REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoPropertiesRecycleBin /t REG_DWORD /d 000000001 /f Forar o estilo clssico no Painel de Controle REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v ForceClassicControlPanel /t REG_DWORD /d 000000001 /f Bloquear a alterao do Papel de Parede REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoDesktopCleanupWizard /t REG_DWORD /d 000000001 /f Desabilitar a Limpeza da rea de Trabalho REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoDesktopCleanupWizard /t REG_DWORD /d 000000001 /f Remover a Lixeira da rea de Trabalho REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\NonEnum /v {645FF040-5081-101B-9F08-00AA002F954E} /t REG_DWORD /d 000000001 /f Remover Meus Documentos da rea de Trabalho REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\NonEnum /v {450D8FBA-AD25-11D0-98A8-0800361B1103} /t REG_DWORD /d 000000001 /f

34 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Remover Meu Computador da rea de Trabalho REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\NonEnum /v {20D04FE0-3AEA-1069-A2D8-08002B30309D} /t REG_DWORD /d 000000001 /f Remover Propriedades do Menu de Contexto de Meus Documentos REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoPropertiesMyDocuments /t REG_DWORD /d 000000001 /f Remover Propriedades do Menu de Contexto de Meu Computador REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoPropertiesMyComputer /t REG_DWORD /d 000000001 /f Remover Propriedades do Menu de Contexto da Lixeira REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoPropertiesRecycleBin /t REG_DWORD /d 000000001 /f Ocultar Meus Locais de Rede da rea de Trabalho REG ADDHKCU\Software\Microsoft\Windows\CurrentVersion \Policies\Explorer /v NoNetHood /t REG_DWORD /d 000000001 /f Remover o Internet Explorer da rea de Trabalho REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoInternetIcon /t REG_DWORD /d 000000001 /f No permitir que o usurio altere o caminho de Meus Documentos REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v DisablePersonalDirChange /t REG_DWORD /d 000000001 /f No Permitir o Compartilhamento de arquivos recentemente abertos REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoRecentDocsNetHood /t REG_DWORD /d 000000001 /f Remover Logoff do Menu Iniciar REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoLogoff /t REG_DWORD /d 000000001 /f REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v ForceStartMenuLogOff /t REG_DWORD /d 000000000 /f Remover e Impedir Acesso a Opo Desligar do Menu Iniciar REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoClose /t REG_DWORD /d 000000001 /f No manter Histrico de Documentos abertos recentemente REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoRecentDocHistory /t REG_DWORD /d 000000001 /f

35 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Limpar Histrico de Documentos abertos recentemente ao sair REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v ClearRecentDocsOnExit /t REG_DWORD /d 000000001 /f Remover Menus Personalizados REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v Intellimenus /t REG_DWORD /d 000000001 /f Desativar Rastreamento do Usurio REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoInstrumentation /t REG_DWORD /d 000000001 /f Bloquear Barra de Tarefas REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v LockTaskbar /t REG_DWORD /d 000000001 /f Forar Menu Iniciar no estilo Clssico REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoSimpleStartMenu /t REG_DWORD /d 000000001 /f Remover as dicas dos bales nos itens do Menu Iniciar REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoSMBalloonTip /t REG_DWORD /d 000000001 /f No Exibir Barras de Ferramentas Personalizadas na Barra de Tarefas REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoToolbarOnTaskbar /t REG_DWORD /d 000000001 /f Desabilitar Atualizaes Automticas do Windows REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoAutoUpdate /t REG_DWORD /d 000000001 /f Remover o Gerenciador de Tarefas [Ctrl+Alt+Del] REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\System /v DisableTaskMgr /t REG_DWORD /d 000000001 /f Limpar o Histrico de Urls acessadas no Internet Explorer a cada 1 dia REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\In ternet Settings\Url History /v DaysToKeep /t REG_DWORD /d 000000001 /f Bloco de Notas como Editor Html padro no Internet Explorer REG ADD HKCU\Software\Microsoft\Internet Explorer\Default HTML Editor /v Description /t REG_SZ /v Bloco de notas /f

36 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

No Permitir o Internet Explorer coletar informaes do AutoCompletar REG ADD HKCU\Software\Microsoft\Internet Explorer\Main /v Use FormSuggest /t REG_SZ /d no /f REG ADD HKCU\Software\Microsoft\Internet Explorer\Main /v FormSuggest Passwords /t REG_SZ /d no /f REG ADD HKCU\Software\Microsoft\Internet Explorer\Main /v FormSuggest PW Ask /t REG_SZ /d no /f Habilitar o Bloqueio de Foco REG ADD HKCU\Control Panel\Desktop /v ForegroundLockTimeout /t REG_DWORD /d 0x00030d40 /f REG ADD HKU\.DEFAULT\Control Panel\Desktop /v ForegroundLockTimeout /t REG_DWORD /d 0x00030d40 /f Finalizao Automtica das tarefas REG ADD HKCU\Control Panel\Desktop /v AutoEndTasks /t REG_SZ /d 1 /f REG ADD HKU\.DEFAULT\Control Panel\Desktop /v AutoEndTasks /t REG_SZ /d 1 /f Optimizao no Boot REG ADD HKLM\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction /v Enable /t REG_SZ /d Y /f REG ADD HKLM\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction /v OptimizeComplete /t REG_SZ /d Yes /f Ativar Num-Lock quando Entrar no Windows REG ADD HKCU\Control Panel\Keyboard\ /v InitialKeyboardIndicators /t REG_SZ /d 2 /f REG ADD HKU\.DEFAULT\Control Panel\Desktop /v InitialKeyboardIndicators /t REG_SZ /d 2 /fboardIndicators /t REG_SZ /d 2 /f Menu Iniciar Mais Rpido REG ADD HKCU\Control Panel\Desktop /v MenuShowDelay /t REG_SZ /d 100 /f REG ADD HKU\.DEFAULT\Control Panel\Desktop /v MenuShowDelay /t REG_SZ /d 100 /f Descarregar DLLs inutlizadas da Memria REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Ex plorer /v AlwaysUnloadDLL /t REG_SZ /d 1 /f Aumentar o Nmero de Downloads Simultneos no Internet Explorer REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\In ternet Settings /v MaxConnectionsPer1_0Server /t REG_DWORD /d 0x0000000a /f REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\In ternet Settings /v MaxConnectionsPerServer /t REG_DWORD /d 0000000a /f Aumentar a Taxa de Upload

37 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

REG ADD HKLM\SYSTEM\CurrentControlSet\Services\AFD\Parame ters /v DefaultSendWindow /t REG_DWORD /d 000018000 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Para meters /v EnablePMTUDiscovery /t REG_DWORD /d 000000001 /f Limpeza de Disco Mais Eficaz (Preveno contra Travamentos) REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Ex plorer\VolumeCaches\Compress old files /f Limpar o Arquivo de Troca ao Encerrar o Windows REG ADD HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management /v ClearPageFileATShutdown /t REG_SZ /d 1 /f Otimizao TCP/IP REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Lanmanserv er\parameters /v SizReqBuf /t REG_DWORD /d 000014596 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Serv iceProvider /v class /t REG_DWORD /d 000000001 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Serv iceProvider /v DnsPriority /t REG_DWORD /d 000000007 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Serv iceProvider /v HostsPriority /t REG_DWORD /d 000000006 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Serv iceProvider /v LocalPriority /t REG_DWORD /d 000000005 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Serv iceProvider /v NetbtPriority /t REG_DWORD /d 000000008 /f Pesquisa de Computadores Mais Eficaz REG DELETE HKLM\Software\Microsoft\Windows\CurrentVersion\Ex plorer\RemoteComputer\NameSpace\{D6277990-4C6A-11CF-8D87-00AA0060F5BF} /f Desabilitar Cache para Thumbnails (Miniaturas) REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Ex plorer\Advanced /v DisableThumbnailCache /t REG_SZ /d 1 /f Otimizao para o Cache de DNS REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Dnscache\P arameters /v CacheHashTableBucketSize /t REG_DWORD /d 000000001 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Dnscache\P arameters /v CacheHashTableSize /t REG_DWORD /d 000000180 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Dnscache\P arameters /v MaxCacheEntryTtLimit /t REG_DWORD /d 0x0000fa00 /f REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Dnscache\P arameters /v MaxSOACacheEntryTtLimit /t REG_DWORD /d 0x0000012d /f Remover Executar do Menu Iniciar REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoRun /t REG_DWORD /d 000000001 /f Limpar Arquivos Temporrios do Internet Explorer

38 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\In ternet Settings\Cache /v Persistent /t REG_DWORD /d 000000000 /f Desabilitar a Notificao de Antivrus Desativado REG ADD HKLM\Software\Microsoft\Security Center /v AntiVirusDisableNotify /t REG_DWORD /d 000000001 /f Desabilitar a Notificao de Firewall Desativado REG ADD HKLM\Software\Microsoft\Security Center /v FirewallDisableNotify /t REG_DWORD /d 000000001 /f Desabilitar a Notificao de Atualizaes Automticas Desativada REG ADD HKLM\Software\Microsoft\Security Center /v UpdatesDisableNotify /t REG_DWORD /d 000000001 /f Disabilitar Auto-Run do CD-ROM REG ADD HKLM\Software\CurrentControlSet\Services\Cdro m /v AutoRun /t REG_DWORD /d 000000001 /f Desabilitar o Sistema de Encriptao de Arquivos REG ADD HKLM\Software\Microsoft\Windows NT\CurrentVersion\EFS /v EfsConfiguratiom /t REG_DWORD /d 000000001 /f Desabilitar Mensagem de Notificao de Espao em Disco Insuficiente REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v NoLowDiskSpaceChecks /t REG_DWORD /d 000000001 /f Disabilitar Beeps de Erros REG ADD HKCU\Control Panel\Sound /v Beep /t REG_SZ /d no /f Desabilitar Restaurao de Sistema REG ADD HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore\ /v DisableSR /t REG_DWORD /d 000000001 /f Desabilitar Windows Messenger REG ADD HKLM\Software\Policies\Microsoft\Messenger\Client /v PreventRun /t REG_DWORD /d 000000001 /f Mostrar a Verso do Windows no Desktop REG ADD HKCU\Control Panel\Desktop /v PaintDesktopVersion /t REG_DWORD /d 000000001 /f Editar as Informaes de Registro do Windows

39 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

REG ADD HKLM\Software\Microsoft\Windows NT\CurrentVersion /v RegisteredOrganization /t REG_SZ /d CompanyNameHere /f REG ADD HKLM\Software\Microsoft\Windows NT\CurrentVersion /v RegisteredOwner /t REG_SZ /d OwnerNameHere /f Alterar Diretrio do CD do Windows REG ADD HKLM\Software\Microsoft\Windows NT\CurrentVersion /v SourcePath /t REG_SZ /d D:\I836 /f Alterar a Pasta Root do Sistema [Padro: C:\Windows] REG ADD HKLM\Software\Microsoft\Windows NT\CurrentVersion /v SystemRoot /t REG_SZ /d C:\Windows /f Alterar a Descrio do Computador REG ADD HKLM\System\CurrentControlSet\Services\Lanmanserv er\parameters /v srvcomment /t REG_SZ /d descrio /f Habilitar Assistncia Remota REG ADD HKLM\System\CurrentControlSet\Control\Termina l Server /v AllowTSConnections /t REG_DWORD /d 000000001 /f REG ADD HKLM\System\CurrentControlSet\Control\Termina l Server /v fDenyTSConnections /t REG_DWORD /d 000000001 /f REG ADD HKLM\System\CurrentControlSet\Control\Termina l Server /v fAllowToGetHelp /t REG_DWORD /d 000000001 /f Desocultar o Relgio do Windows REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Po licies\Explorer /v HideClock /t REG_DWORD /d 000000000 /f Exemplo:

40 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Bom, agora j temos um servidor de Samba PDC um pouco mais configurado, logo mais irei comentar sobre samba + OpenLDAP. Espero que seja til este artigo. At!

Curtir isso: Be the first to like this. Samba PDC, Servidores e seus servios Samba PDC

Instalao do Dell OpenManage CentOS.

Nagios instalao CentOS 5.5

134 Respostas para Samba PDC


math games janeiro 28, 2011 s 1:39 am post not working in firefox

Faa login para responder

math games janeiro 29, 2011 s 5:06 pm first!

Faa login para responder

Immigration solicitors abril 30, 2011 s 6:04 am Thank you for sharing with us, I believe this website genuinely stands out I have added your link to my blog here http://www.conveyancingquotes.info/?page_id=9 ,: D.

41 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Faa login para responder

Divorce Lawyers maio 1, 2011 s 7:21 am link for you on my blog here http://www.debtadvice123.info/?page_id=2 , Precisely what I was looking for, regards for putting up.

Faa login para responder

uk web marketing optimisation maio 1, 2011 s 3:20 pm I like this weblog very much, Its a real nice place to read and find information.

Faa login para responder

maio 1, 2011 s 8:38 pm Some really interesting information, well written and loosely user genial.

Faa login para responder

Bed And Breakfast maio 2, 2011 s 2:49 pm As far as me being a member here, I wasnt aware that I was a member for any days, actually. When the article was published I received a username and password, so that I could participate in Comments, That would explain me stumbuling upon this post. But were certainly all members in the world of ideas.

Faa login para responder

Jitterbug Cell Phone REVIEW maio 4, 2011 s 5:46 pm For some cause the picture just isnt loading effectively, is presently there an issue?

Faa login para responder

Milan Hotels maio 7, 2011 s 5:45 am Okay article. I just became aware of your blog and desired to say I have really enjoyed reading your opinions. Any way Ill be subscribing in your feed and Lets hope you post again soon.

Faa login para responder

42 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

solicitors cardiff maio 7, 2011 s 9:06 am Exactly where do you get this intel?

Faa login para responder

Carleen Nighbert maio 8, 2011 s 10:54 am Hello there, You have done an incredible job. Ill definitely digg it and personally recommend to my friends. I am sure theyll be benefited from this site.

Faa login para responder

Avery Boyte maio 9, 2011 s 1:23 am Im not sure where youre getting your information, but great topic. I needs to spend some time learning more or understanding more. Thanks for excellent information I was looking for this information for my mission.

Faa login para responder

Eddy Hohman maio 9, 2011 s 8:36 am I must convey my gratitude for your kindness giving support to folks who actually need assistance with this particular area of interest. Your real dedication to getting the message all around turned out to be incredibly good and has in most cases empowered individuals just like me to realize their goals. The helpful help and advice signifies so much to me and much more to my office workers. Regards; from everyone of us.

Faa login para responder

Conveyancing Solicitor maio 10, 2011 s 7:43 pm Keep up the good work , I read few articles on this internet site and I think that your web site is rattling interesting and has bands of great information. you have a link on my blog http://www.conveyancingquotes.info/?page_id=9

Faa login para responder

Divorce Solicitor maio 10, 2011 s 9:49 pm link for you on my blog here http://tinyurl.com/page-id-9 ,I gotta favorite this website it seems invaluable very beneficial

Faa login para responder

43 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Pingback: HIIT cardio

income entourage maio 14, 2011 s 7:35 pm The way that you have written it is just outstanding.

Faa login para responder

vandocouto maio 14, 2011 s 7:38 pm OBRIGADO A TODOS!!!!

Faa login para responder

Cheap hotels in nice maio 15, 2011 s 7:16 am Youre so cool! I dont suppose Ive read something like this before. So nice to search out someone with some original thoughts on this subject. realy thanks for starting this up. this web site is something that is needed on the web, someone with just a little originality. useful job for bringing one thing new to the internet!

Faa login para responder

nursery art maio 16, 2011 s 6:09 am I gotta bookmark this website it seems extremely helpful extremely helpful

Faa login para responder

apartments in copenhagen maio 16, 2011 s 10:10 am When I originally commented I clicked the -Notify me when new comments are added- checkbox and now each time a comment is added I get four emails with the same comment. Is there any way you can remove me from that service? Thanks!

Faa login para responder vandocouto maio 17, 2011 s 7:38 pm friend you can do the removal via your account on feeds thanks

44 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Faa login para responder

Edna Rotton maio 17, 2011 s 4:04 pm Admiring the time and energy you put into your blog and in depth information you provide. Its good to come across a blog every once in a while that isnt the same old rehashed information. Wonderful read! Ive saved your site and Im adding your RSS feeds to my Google account.

Faa login para responder

cheap conveyancing solicitors maio 19, 2011 s 5:41 am Its actually a cool and useful piece of info. Im satisfied that you just shared this helpful info with us. Please keep us up to date like this. Thanks for sharing.

Faa login para responder vandocouto maio 19, 2011 s 6:35 pm thanks!

Faa login para responder

boys wall art kids maio 19, 2011 s 5:14 pm Regards for all your efforts that you have put in this. very interesting information.

Faa login para responder vandocouto maio 19, 2011 s 6:35 pm thanks!

Faa login para responder

Nursery Art maio 21, 2011 s 1:20 pm I really enjoy reading on this web site , it has got wonderful posts .

45 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Faa login para responder

Immigration maio 24, 2011 s 2:50 pm You can definitely see your skills in the paintings you write. The arena hopes for even more passionate writers such as you who are not afraid to mention how they believe. At all times follow your heart.

Faa login para responder

Athens Hotels maio 25, 2011 s 8:54 am As far as me being a member here, I wasnt aware that I was a member for any days, actually. When the article was published I received a notification, so that I could participate in the discussion of the post, That would explain me stumbuling upon this post. But were certainly all members in the world of ideas.

Faa login para responder

cheap conveyancing solicitors maio 25, 2011 s 8:45 pm Pretty nice post. I just stumbled upon your blog and wanted to mention that Ive truly enjoyed browsing your blog posts. In any case Ill be subscribing for your rss feed and Im hoping you write once more very soon!

Faa login para responder vandocouto maio 25, 2011 s 9:53 pm thanks! Im happy to be recognized. very happy!

Faa login para responder

british citizenship applications maio 25, 2011 s 9:10 pm Ive been surfing on-line greater than 3 hours as of late, yet I never discovered any fascinating article like yours. Its beautiful price enough for me. In my opinion, if all webmasters and bloggers made excellent content material as you probably did, the net will probably be a lot more helpful than ever before.

Faa login para responder vandocouto maio 25, 2011 s 9:52 pm obrigado!

46 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

estou feliz por ser reconhecido. muito feliz!

Faa login para responder

property solicitors essex maio 25, 2011 s 10:47 pm Fantastic web site. A lot of useful info here. I am sending it to several buddies ans also sharing in delicious. And certainly, thanks on your sweat!

Faa login para responder

free games online maio 26, 2011 s 5:35 am Howdy! I know this is kinda off topic however Id figured Id ask. Would you be interested in trading links or maybe guest authoring a blog post or vice-versa? My blog covers a lot of the same topics as yours and I think we could greatly benefit from each other. If you are interested feel free to send me an e-mail. I look forward to hearing from you! Wonderful blog by the way!

Faa login para responder vandocouto maio 27, 2011 s 11:07 am hello, I would like to know more about your site and what the interest in my blog to trade relations. att, Evandro Couto.

Faa login para responder

Acai Berries maio 29, 2011 s 2:16 pm Just found your webblog on faves today and I have to say I love it! Bookmarked this and will be back again to check it out some more later.

Faa login para responder

47 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Best Registry Cleaner maio 30, 2011 s 2:17 pm Im bored about this, in case you trash my own site and also blog page 1 more time For certain I will expose yourself!

Faa login para responder

Immigration Lawyers maio 31, 2011 s 6:25 pm Generally I dont read post on blogs, but I wish to say that this write-up very forced me to try and do so! Your writing style has been surprised me. Thanks, quite nice article.

Faa login para responder

get rid of cellulite junho 3, 2011 s 4:44 am Appreciation with this interesting writing. From the time that I commenced focusing on understanding much more about this topic, my general life has advanced tremendously. I are generally looking at the alternative of adding the opposite thing to my career relating to a year. For a nice and pleased with know about information I have got gained from various websites, especially you. I have an inferior budget to certainly obtain ebooks and films but your site is a great help to me.

Faa login para responder vandocouto junho 3, 2011 s 11:10 am thanks

Faa login para responder

conveyancing Solicitors junho 3, 2011 s 4:08 pm Excellent goods from you, man. I have understand your stuff previous to and you are just extremely magnificent. I actually like what youve acquired here, really like what youre saying and the way in which you say it. You make it entertaining and you still care for to keep it sensible. I cant wait to read much more from you. This is actually a wonderful website.

Faa login para responder

student visas junho 5, 2011 s 5:18 pm You can certainly see your expertise in the work you write. The sector hopes for even more passionate writers like you who are not afraid to mention how they believe. Always follow your heart.

48 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Faa login para responder

cheap conveyancing solicitors junho 5, 2011 s 10:46 pm You could definitely see your expertise in the paintings you write. The world hopes for more passionate writers such as you who arent afraid to mention how they believe. All the time follow your heart.

Faa login para responder

http://www.youtube.com/watch?v=qHPJmKKmEww junho 5, 2011 s 11:30 pm Some genuinely great information, Gladiola I discovered this.

Faa login para responder

Immigration junho 8, 2011 s 9:53 am Thank you for another informative site. Where else could I get that type of info written in such an ideal way? Ive a project that Im just now working on, and I have been on the look out for such information.

Faa login para responder

asian cams junho 9, 2011 s 11:33 am this is very interesting and also important to read for me, appreciate it I will try to get on the diet . you have really good health care tops , bookmarked.

Faa login para responder

miraclesuit shapewear junho 9, 2011 s 1:22 pm Fantastic goods from you, man. Ive study your stuff ahead of and youre just as well amazing. I enjoy what youve got right here, adore what youre stating and the way you say it. You make it entertaining and you even now manage to help keep it wise. I cant wait to go through additional from you. That is really an incredible weblog.

Faa login para responder

child pornography junho 10, 2011 s 9:58 am so much superb information on here, : D.

49 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Faa login para responder

silver spot price today junho 11, 2011 s 8:10 am How can I discover out much more data on this subject?

Faa login para responder

pup file junho 12, 2011 s 12:14 pm I really like your writing style, good information, thankyou for putting up : D.

Faa login para responder

how to get rid of cellulite on thighs junho 13, 2011 s 6:48 am Hi I will be so glad I came across your web site, I really found a person by malfunction, while We was browsing on Askjeeve for another thing, Nonetheless Im here right now and would exactly like to say cheers for the incredible post as well as a all around enjoyable blog site (My partner and i also love the theme/design), I dont have time for it to look over all this at the moment but Ive got bookmarked it and as well included the RSS feeds, so once i have time I am back to see a lot more, Please do keep up the great work.

Faa login para responder

holland american cruises 2011 junho 15, 2011 s 1:21 am The title of this post Samba PDC GNU/Linux-BR.com caught my eye, so I came by to check it out. Glad I did. FYI I also bookmarked this page http://gnulinuxbr.com /2011/01/26/samba-pdc/ on Digg.com so others can find it too.

Faa login para responder

get rid of cellulite junho 17, 2011 s 12:33 am This may be a great weblog publish using thanks with regard to sharing this particular educational details.. Ill visit your net website regularly for a few newest publish. This is really such an incredible useful useful resource that youre providing and you give it absent absolutely free. I appreciate seeing internet websites which understand on-line of providing an excellent useful resource absolutely free. It? s the actual outdated what goes about comes about routine. Several of the points related to this website publish are generally beneficial on the other hand had us wanting to know, did these people critically entail? 1 place I need to say will be your writing expertise are incredibly good and Ill end up being returning back for almost any brand-new article you produce, you may possibly possibly employ a brand-new ally. I bookmarked your web site for research.

Faa login para responder

50 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Web Designer Somerset junho 17, 2011 s 5:48 pm My spouse and I just came across your web site while searching on yahoo, Exactly where does one get this info?

Faa login para responder vandocouto junho 17, 2011 s 6:40 pm search for http://www.samba.org/ att, Evandro Couto

Faa login para responder

kitchen doors junho 18, 2011 s 11:27 pm Hey , Thank you for this journal report, just how do you comment on lots of issues and it not be dull. . .

Faa login para responder

Jonatas junho 19, 2011 s 2:21 pm Perfeito, depois que entrei nesse site, meus conceitos sobre linux aumentaram significativamente, no linux , vc ver o que verdadeiramente acontece. Parabns mesmo.

Faa login para responder

decking ideas junho 19, 2011 s 7:49 pm How do you acquire this kind of unbelievable data? My spouse and I looked at writing a blog during the past however , My spouse and I discovered people today always bought better information before me? ? ?

Faa login para responder

best shed plans junho 20, 2011 s 12:27 am We just stumbled across your web site while searching on google, Where exactly on earth do you have this details? ? ?

51 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Faa login para responder

pornhub junho 21, 2011 s 2:43 am Im often to running a blog and i actually appreciate your content. The article has actually peaks my interest. I am going to bookmark your web site and preserve checking for new information.

Faa login para responder

Newport Beach Homes For Sale junho 21, 2011 s 5:46 am Best Blog page Article Weve Ever before Spotted !

Faa login para responder

Maria Pheonix junho 22, 2011 s 2:08 am I loved as much as youll receive carried out right here. The sketch is tasteful, your authored material stylish. nonetheless, you command get got an shakiness over that you wish be delivering the following. unwell unquestionably come further formerly again since exactly the same nearly very often inside case you shield this increase.

Faa login para responder

Conveyancing Solicitors London junho 24, 2011 s 9:52 pm excellent points altogether, you simply gained a new reader. What may you suggest in regards to your submit that you simply made some days ago? Any positive?

Faa login para responder

Newport Beach Ca Homes For Sale junho 26, 2011 s 12:39 pm Tips on how to search for this kind of outstanding important information? We tried using weblog in past times although My spouse and I discovered individuals normally obtained greater info ahead of me!

Faa login para responder

Brussels Hotels junho 30, 2011 s 5:30 am

52 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Id wish to thank you for the efforts youve got made in writing this write-up. Im hoping the same greatest perform from you inside the future also. In reality your inventive writing skills has inspired me to begin my very own blog now.

Faa login para responder

facts about poland julho 1, 2011 s 2:37 pm I need to bookmark this I surely will keep in mind your post.

Faa login para responder

Peluang Bisnis julho 6, 2011 s 3:58 am I wanted to create you a bit of remark to say thank you once again over the nice pointers youve discussed at this time. It was open-handed with you to convey unhampered what a lot of people wouldve sold as an ebook to end up making some cash for their own end, most importantly given that you might well have done it in the event you wanted. Those concepts likewise acted to provide a easy way to understand that other people have the identical fervor like my very own to figure out lots more with reference to this issue. I think there are numerous more fun opportunities ahead for many who start reading your website.

Faa login para responder

how to make your computer faster julho 7, 2011 s 1:20 am I conceive this website has very excellent composed content material articles .

Faa login para responder

upload to my mp3 julho 9, 2011 s 9:00 pm Right on!

Faa login para responder

get rid of cellulite julho 11, 2011 s 3:34 am Hi, i just wanted to drop which you line to mention that as i thoroughly enjoyed this post with yours, I have got subscribed for a RSS feeds and have skimmed several of your blogposts before but that one really stood out to me. I recognise that I am simply stranger back to you but I actually figured you may appreciate your appreciation: ) Make sure along with keep weblog.

Faa login para responder

53 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

software performance testing julho 12, 2011 s 10:43 am Okay article. I just became aware of your blog and desired to say I have really enjoyed reading your opinions. Any way Ill be subscribing in your feed and Lets hope you post again soon.

Faa login para responder

Immigration julho 12, 2011 s 4:47 pm Thank you for the good writeup. It if truth be told was once a enjoyment account it. Glance complicated to more brought agreeable from you! By the way, how can we keep in touch?

Faa login para responder

Immigration lawyer julho 13, 2011 s 4:34 am obviously like your web site but you need to check the spelling on quite a few of your posts. Many of them are rife with spelling problems and I find it very bothersome to tell the truth nevertheless Ill surely come back again.

Faa login para responder

how to make your computer faster julho 14, 2011 s 2:17 pm Thanks for this marvelous post, I am glad I discovered this site on yahoo.

Faa login para responder

hey look at this julho 15, 2011 s 10:03 pm I would like to get much more blogs like your. Its a really nicely written a single and also a true pleasure to go through! Create more about this topic make sure you !!

Faa login para responder

all three julho 18, 2011 s 6:27 am Good points

Faa login para responder

54 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

cool article julho 19, 2011 s 8:08 am I never thought of it that way, well put!

Faa login para responder

click here julho 19, 2011 s 6:41 pm Thank you for a great post.

Faa login para responder

nanoo julho 19, 2011 s 7:42 pm I didnt know that.

Faa login para responder

Website julho 21, 2011 s 10:16 am Heya i?m for the primary time here. I found this board and I find It really helpful & it helped me out a lot. I am hoping to give something again and aid others like you aided me.

Faa login para responder

read this julho 22, 2011 s 6:41 am Right on!

Faa login para responder

click here julho 22, 2011 s 7:38 am Good points

Faa login para responder

article julho 22, 2011 s 10:54 am

55 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Good points

Faa login para responder

rock bottom design julho 28, 2011 s 3:12 pm Exciting review I incredibly considerably liked the references to other blogs as I havent found lots of info on this topic. Thank you!

Faa login para responder

asian cam julho 30, 2011 s 5:30 am thanks to the author for taking his time on this one.

Faa login para responder

matt laclear {scam|scammer|ripoff} agosto 2, 2011 s 6:17 am Right on!

Faa login para responder

matt laclear {scam|scammer|ripoff} agosto 2, 2011 s 7:02 am I agree 100%

Faa login para responder

matt laclear agosto 2, 2011 s 7:02 am Thank you for a great post.

Faa login para responder

56 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

matt laclear seo agosto 2, 2011 s 8:34 am I agree 100%

Faa login para responder

matt laclear agosto 2, 2011 s 1:22 pm I agree 100%

Faa login para responder

matt laclear seo agosto 2, 2011 s 1:22 pm I never thought of it that way, well put!

Faa login para responder

matt laclear {scam|scammer|ripoff} agosto 2, 2011 s 1:22 pm Good points

Faa login para responder

matt laclear agosto 2, 2011 s 5:52 pm I didnt know that.

Faa login para responder

matt laclear agosto 2, 2011 s 5:52 pm Right on!

Faa login para responder

matt laclear {scam|scammer|ripoff} agosto 2, 2011 s 5:52 pm

57 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

I didnt know that.

Faa login para responder

Website agosto 3, 2011 s 2:10 pm Great post. I was checking constantly this blog and Im inspired! Very useful information specially the final part :) I take care of such info a lot. I used to be looking for this certain info for a long time. Thanks and good luck.

Faa login para responder

HCG diet drops agosto 3, 2011 s 11:10 pm Interesting take on this subject, Why do you think thats the case?

Faa login para responder

free ipod agosto 6, 2011 s 3:43 am - Hi , Thank you a lot for making this post . I found this weblog using search on bing . Will be sure to bookmark on facebook . I am promoter and have found your site very informational Gracias , cheers. ;)

Faa login para responder

hunting agosto 9, 2011 s 10:17 pm Hello, i feel that i saw you visited my web site so i came to ?return the want?.Im trying to to find things to improve my site!I assume its good enough to use some of your ideas!!

Faa login para responder

Website agosto 10, 2011 s 12:18 pm advertising and *********** with Adwords. Anyway I am including this RSS to my e-mail and can look out for much more of your respective intriguing content. Ensure that you replace this once more soon..

Faa login para responder

58 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Cruze7 agosto 11, 2011 s 4:23 pm Hey Admin/ Site Owner, This is an awesome blog. If you might ever need any backlinks visit- http://bit.ly/10k-backlinks .You would get 10,000 + links for $5, and youll see amazing result for this awesome site! Cheers & Wish your site all the success.

Faa login para responder

my article agosto 14, 2011 s 3:33 pm I didnt know that.

Faa login para responder

read my article agosto 14, 2011 s 4:04 pm I didnt know that.

Faa login para responder

read my article agosto 14, 2011 s 5:26 pm Right on!

Faa login para responder

interesting article agosto 14, 2011 s 5:29 pm Good points

Faa login para responder

my article agosto 14, 2011 s 6:14 pm Good points

Faa login para responder

lol agosto 14, 2011 s 8:46 pm

59 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Thank you for a great post.

Faa login para responder

interesting article agosto 14, 2011 s 9:14 pm I never thought of it that way, well put!

Faa login para responder

Haley Koskie agosto 16, 2011 s 7:06 pm Right on!

Faa login para responder

Cheri Brodbeck agosto 16, 2011 s 7:21 pm I never thought of it that way, well put!

Faa login para responder

Tyson Oropeza agosto 16, 2011 s 8:43 pm Good points

Faa login para responder

Laquita Hargrow agosto 16, 2011 s 10:41 pm I didnt know that.

Faa login para responder

60 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Anderson Fack agosto 16, 2011 s 11:30 pm Thank you for a great post.

Faa login para responder

Jann Kusick agosto 16, 2011 s 11:48 pm Thank you for a great post.

Faa login para responder

Michel Bolinger agosto 17, 2011 s 1:28 am I agree 100%

Faa login para responder

Gwyn Spuhler agosto 17, 2011 s 1:39 am I didnt know that.

Faa login para responder

Lee Mctaggart agosto 17, 2011 s 2:20 am Right on!

Faa login para responder

Gail Ashbacher agosto 17, 2011 s 2:56 am Good points

Faa login para responder

Allen Aljemal agosto 17, 2011 s 3:00 am

61 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

I didnt know that.

Faa login para responder

Nidia Weinand agosto 17, 2011 s 3:18 am I never thought of it that way, well put!

Faa login para responder

Cleo Muckelroy agosto 17, 2011 s 3:26 am Good points

Faa login para responder

Venita Conwill agosto 17, 2011 s 4:18 am I agree 100%

Faa login para responder

Hector Hallums agosto 17, 2011 s 5:31 am Good points

Faa login para responder

make money online agosto 17, 2011 s 7:35 am Good points

Faa login para responder

62 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

Juliet Riexinger agosto 17, 2011 s 8:01 am Good points

Faa login para responder

Adrianne Cardoza agosto 17, 2011 s 8:46 am I didnt know that.

Faa login para responder

Murray Ulerio agosto 17, 2011 s 9:37 am Thank you for a great post.

Faa login para responder

Clint Remak agosto 17, 2011 s 12:18 pm I didnt know that.

Faa login para responder

Buck Mendez agosto 17, 2011 s 2:17 pm I didnt know that.

Faa login para responder

Raguel Wykes agosto 17, 2011 s 3:26 pm I agree 100%

Faa login para responder

Milissa Georgiadis agosto 17, 2011 s 3:36 pm

63 de 64

17/06/2013 16:32

Samba PDC | GNU/Linux-BR.com

http://gnulinuxbr.com/2011/01/26/samba-pdc/

I agree 100%

Faa login para responder

Catina Wiesehan agosto 17, 2011 s 3:46 pm Thank you for a great post.

Faa login para responder

Blog no WordPress.com. Tema: zBench por zwwooooo.

Popular

64 de 64

17/06/2013 16:32

Vous aimerez peut-être aussi