Re: [FUG-BR] É possível proxy trabalhar em conjunto?

2016-08-19 Por tôpico Silvio Giunge Silva a . k . a kanazuchi
Sim, é possivel. Porque não squid?
http://wiki.squid-cache.org/Features/CacheHierarchy

ATS também é possivel
https://docs.trafficserver.apache.org/en/4.2.x/reference/configuration/parent.config.en.html
parent.config - Apache Traffic Server 4.2.3 
documentation
docs.trafficserver.apache.org
parent.config¶ The parent.config file identifies the parent proxies used in an 
cache hierarchy. Use this file to perform the following configuration:



Features/CacheHierarchy - Squid Web Proxy 
Wiki
wiki.squid-cache.org
Feature: Linking Squid into a Cache Hierarchy. Goal: To connect multiple Squid 
together forming a 'mesh' or hierarchy of caches. Status: completed.



-
Histórico: http://www.fug.com.br/historico/html/freebsd/
Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd
-
Histórico: http://www.fug.com.br/historico/html/freebsd/
Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd


Re: [FUG-BR] OT - Livro pirata: Poder dos servidores em suas mãos 2ed.

2015-02-05 Por tôpico Silvio Giunge Silva a . k . a kanazuchi
Eu havia denunciado também, a venda no mercado livre foi finalizada ontem.

> From: rbga...@gmail.com
> Date: Wed, 4 Feb 2015 11:14:52 -0200
> To: freebsd@fug.com.br
> Subject: Re: [FUG-BR] OT - Livro pirata: Poder dos servidores em suas mãos 
> 2ed.
> 
> 
> > On Feb 4, 2015, at 11:11, Gabriel Roubaldo dos Santos 
> >  wrote:
> > 
> > Legal é a cara de pau dele respondendo o questionamento de um usuário do 
> > mercado livre:
> > 
> > Bom dia! Isso que você está fazendo não seria pirataria?
> > 
> > Bom dia amigo, pirataria é você vender cópia de algo, o meu arquivo é o 
> > e-book original convertido em Pdf amigo. Obrigado, e antes de dizer que é 
> > pirata verifica anúncio de outros vendedores que realmente são piratas pdf 
> > em preto e branco e etc.
> 
> 
> HAHA, fui eu quem perguntou!
> 
> O nome do cara é Fernando Piffers, e ele é do ES. Alguém conhece?
> 
> Fiz a denúncia no Mercado Livre e alertei também o Denis, autor do livro.
> 
> O ideal é fazer o cara pagar por todas as cópias que vendeu.
> 
> --
> Renato Botelho
> 
> -
> Histórico: http://www.fug.com.br/historico/html/freebsd/
> Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd
  
-
Histórico: http://www.fug.com.br/historico/html/freebsd/
Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd


Re: [FUG-BR] OT: script

2014-11-25 Por tôpico Silvio Giunge Silva a . k . a kanazuchi
Bugou 
[kanazuchi@localhost ~]$ cat file_test.txtname nickname 
lastnamename|nickname|lastname[kanazuchi@localhost ~]$ sed -e 's/ /;/g' -i.bak 
file_test.txt [kanazuchi@localhost ~]$ cat 
file_test.txtname;nickname;lastnamename|nickname|lastname[kanazuchi@localhost 
~]$ sed -e 's/|/;/g' -i.bak file_test.txt [kanazuchi@localhost ~]$ cat 
file_test.txtname;nickname;lastnamename;nickname;lastname[kanazuchi@localhost 
~]$
> From: alvoli...@live.com
> To: freebsd@fug.com.br
> Date: Tue, 25 Nov 2014 22:23:15 +0300
> Subject: Re: [FUG-BR] OT: script
> 
> Tenta usar o -i
> [kanazuchi@localhost ~]$ cat file_test.txtname nickname 
> lastnamename|nickname|lastname[kanazuchi@localhost ~]$ sed -e 's/ /;/g' 
> -i.bak file_test.txt [kanazuchi@localhost ~]$ cat 
> file_test.txtname;nickname;lastnamename|nickname|lastname[kanazuchi@localhost 
> ~]$ sed -e 's/|/;/g' -i.bak file_test.txt [kanazuchi@localhost ~]$ cat 
> file_test.txtname;nickname;lastnamename;nickname;lastname[kanazuchi@localhost 
> ~]$
> > Date: Tue, 25 Nov 2014 17:06:04 -0200
> > From: ti...@freebsdbrasil.com.br
> > To: freebsd@fug.com.br
> > Subject: Re: [FUG-BR] OT: script
> > 
> > 
> > On 25-11-2014 17:00, Pedro Silva wrote:
> > > Desculpem o OT, mas é um coisa simples que não estou conseguindo resolver:
> > > estou tentando inserir, via "sed", delimitadores em um arquivo texto (link
> > > abaixo), mas não estou conseguindo.
> > >
> > > tentativas:
> > >
> > > sed 's/ /;/g' fx.txt
> > > sed 's/\t/;/g' fx.txt
> > > sed 's/\x0/;/g' fx.txt
> > >
> > > Nenhum desses comando consegue inserir o ";" entre as colunas; como
> > > descubro os caracteres entre as colunas?
> > >
> > > http://campuscolinas.org/ff.txt.gz
> > >
> > > Quem puder dar uma olhada, agradeço.
> > >
> > Opa Pedro...
> > Tente assim.
> > cat ff.txt | awk '{print $1";"$2";"$3";"$4}'
> > 
> > -- 
> > Tiago Drumond
> > Analista de Suporte
> > ti...@freebsdbrasil.com.br
> > 31 3516 0800
> > 
> > -
> > Histórico: http://www.fug.com.br/historico/html/freebsd/
> > Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd
> 
> -
> Histórico: http://www.fug.com.br/historico/html/freebsd/
> Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd
  
-
Histórico: http://www.fug.com.br/historico/html/freebsd/
Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd


Re: [FUG-BR] OT: script

2014-11-25 Por tôpico Silvio Giunge Silva a . k . a kanazuchi
Tenta usar o -i
[kanazuchi@localhost ~]$ cat file_test.txtname nickname 
lastnamename|nickname|lastname[kanazuchi@localhost ~]$ sed -e 's/ /;/g' -i.bak 
file_test.txt [kanazuchi@localhost ~]$ cat 
file_test.txtname;nickname;lastnamename|nickname|lastname[kanazuchi@localhost 
~]$ sed -e 's/|/;/g' -i.bak file_test.txt [kanazuchi@localhost ~]$ cat 
file_test.txtname;nickname;lastnamename;nickname;lastname[kanazuchi@localhost 
~]$
> Date: Tue, 25 Nov 2014 17:06:04 -0200
> From: ti...@freebsdbrasil.com.br
> To: freebsd@fug.com.br
> Subject: Re: [FUG-BR] OT: script
> 
> 
> On 25-11-2014 17:00, Pedro Silva wrote:
> > Desculpem o OT, mas é um coisa simples que não estou conseguindo resolver:
> > estou tentando inserir, via "sed", delimitadores em um arquivo texto (link
> > abaixo), mas não estou conseguindo.
> >
> > tentativas:
> >
> > sed 's/ /;/g' fx.txt
> > sed 's/\t/;/g' fx.txt
> > sed 's/\x0/;/g' fx.txt
> >
> > Nenhum desses comando consegue inserir o ";" entre as colunas; como
> > descubro os caracteres entre as colunas?
> >
> > http://campuscolinas.org/ff.txt.gz
> >
> > Quem puder dar uma olhada, agradeço.
> >
> Opa Pedro...
> Tente assim.
> cat ff.txt | awk '{print $1";"$2";"$3";"$4}'
> 
> -- 
> Tiago Drumond
> Analista de Suporte
> ti...@freebsdbrasil.com.br
> 31 3516 0800
> 
> -
> Histórico: http://www.fug.com.br/historico/html/freebsd/
> Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd
  
-
Histórico: http://www.fug.com.br/historico/html/freebsd/
Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd