Re: Tips/advice for installing latest version of fzf?

2021-09-04 Thread Richard Hector
On 1/09/21 3:32 am, Greg Wooledge wrote: In bash, which is *not* a shell builtin -- it's a separate program, /usr/bin/which. Well _that_ took a while to parse correctly :-) I know bash is not a shell builtin, that would be weird ... Cheers, Richard

Re: Tips/advice for installing latest version of fzf?

2021-09-01 Thread Anssi Saari
Steve Dondley writes: > I'm using zsh. > > What am I missing? In zsh, run rehash. Or start a new terminal.

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Steve Dondley
"sudo which hash" shows nothing. Not sure whey. sudo is an external program, which launches other external programs. When you type "sudo which hash", your shell (zsh) forks a child, and that child executes "sudo". sudo does its authentication/authorization dance, and then executes "which

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Greg Wooledge
On Tue, Aug 31, 2021 at 02:20:12PM -0400, Steve Dondley wrote: > Ok, it is there after all, as a built-in. I was mindlessly trying "sudo hash > -d fzf". I guess trying with sudo doesn't work. > > "sudo which hash" shows nothing. Not sure whey. sudo is an external program, which launches other

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Steve Dondley
(tl;dr: use type, not which) OK, thanks.

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Steve Dondley
There's `hash -r' for that (bash, dash). I'd bet that zsh has something along that lines, too. Cheers - t Ok, it is there after all, as a built-in. I was mindlessly trying "sudo hash -d fzf". I guess trying with sudo doesn't work. "sudo which hash" shows nothing. Not sure whey.

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread tomas
On Tue, Aug 31, 2021 at 11:19:10AM -0400, Steve Dondley wrote: > > >This sounds like a stale-hash situation. According to my understanding, > >the shell will typically keep a cache of what path it found a given > >command at when it checked for that command in $PATH, so it > >doesn't have > >to

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Greg Wooledge
On Tue, Aug 31, 2021 at 11:32:12AM -0400, Steve Dondley wrote: > The "hash" command does not appear to even be installed on my system, even > with sudo, maybe because I'm using zsh. But I did a little googling around > and found this tip: unicorn:~$ zsh greg@unicorn ~ % type hash hash is a shell

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Greg Wooledge
On Tue, Aug 31, 2021 at 10:58:12AM -0400, Steve Dondley wrote: > However, "which fzf" reports the /usr/bin as the location: > > /usr/bin/fzf > > I'm using zsh. unicorn:~$ zsh greg@unicorn ~ % type which which is a shell builtin Zsh is caching the old location, and because "which" is a shell

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Steve Dondley
On 2021-08-31 11:19 AM, Steve Dondley wrote: This sounds like a stale-hash situation. According to my understanding, the shell will typically keep a cache of what path it found a given command at when it checked for that command in $PATH, so it doesn't have to re-do the filesystem accesses on

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Steve Dondley
This sounds like a stale-hash situation. According to my understanding, the shell will typically keep a cache of what path it found a given command at when it checked for that command in $PATH, so it doesn't have to re-do the filesystem accesses on every run of the command; this mapping of

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread The Wanderer
On 2021-08-31 at 10:58, Steve Dondley wrote: > OK, so I dropped the new fzf into /usr/local/bin. I confirmed it is the > correct version with: > > admin@ip-172-30-0-226 /usr/local/bin >> $ ./fzf --version > 0.27.2 (e086f0b) > > "echo $PATH" reports: > > /usr/local/bin:/usr/bin:/bin:/usr/games

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Steve Dondley
OK, so I dropped the new fzf into /usr/local/bin. I confirmed it is the correct version with: admin@ip-172-30-0-226 /usr/local/bin $ ./fzf --version 0.27.2 (e086f0b) "echo $PATH" reports: /usr/local/bin:/usr/bin:/bin:/usr/games So it looks like any binary in /usr/local/bin should load

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Steve Dondley
On 2021-08-31 10:48 AM, Greg Wooledge wrote: On Tue, Aug 31, 2021 at 10:45:50AM -0400, Steve Dondley wrote: Now I'm just wondering if it would be better to keep the old fzf around and put the new fzf into a directory that $PATH loads before /usr/bin. I'm thinking this might be the proper way

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Greg Wooledge
On Tue, Aug 31, 2021 at 10:45:50AM -0400, Steve Dondley wrote: > Now I'm just wondering if it would be better to keep the old fzf around and > put the new fzf into a directory that $PATH loads before /usr/bin. I'm > thinking this might be the proper way of doing this instead of my quick > hack.

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Steve Dondley
Either way, the simplicity of the tool (in terms of it being a single binary artifact that is deployed) makes it unlikely that you would encounter any issues in doing this. Regards, -Roberto OK, thank you, Roberto. fzf comes with some shell integration tools like key bindings that can be

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Steve Dondley
Their build tooling seems very sparse. In particular, it does not support DESTDIR or PREFIX variables. However, that might be OK in this case, as it appears to only produce and install a single artifact: a binary called fzf. If I were in your position, I would run 'make' and then manually

Re: Tips/advice for installing latest version of fzf?

2021-08-31 Thread Roberto C . Sánchez
On Tue, Aug 31, 2021 at 09:07:59AM -0400, Steve Dondley wrote: > Running bullseye with fzf package 0.24.3-1+b6. > > Newer versions of fzf (> .27.) have some advanced abilities I'd like to use > but newer versions are not available in backports (at least not that I could > tell) > > I'm thinking

Re: tips to export as pdf

2011-12-29 Thread Ashton Fagg
On 29/12/11 17:19, lina wrote: Print to file is a cool choice. but how can I get rid of the head line: File: /home/lina/Desktop/.doc Page 1 of 4 in the output file. Very easily. In gedit, go to File-Print, select the CUPS PDF printer. Then go to the Text Editor tab. From there you can

Re: tips to export as pdf

2011-12-29 Thread lina
On Thursday 29,December,2011 04:02 PM, Ashton Fagg wrote: On 29/12/11 17:19, lina wrote: Print to file is a cool choice. but how can I get rid of the head line: File: /home/lina/Desktop/.doc Page 1 of 4 in the output file. Very easily. In gedit, go to File-Print, select the CUPS PDF

Re: tips to export as pdf

2011-12-29 Thread lina
On Thursday 29,December,2011 04:02 PM, Ashton Fagg wrote: On 29/12/11 17:19, lina wrote: Print to file is a cool choice. but how can I get rid of the head line: File: /home/lina/Desktop/.doc Page 1 of 4 in the output file. Very easily. In gedit, go to File-Print, select the CUPS PDF

Re: tips to export as pdf

2011-12-29 Thread Claudius Hubig
lina lina.lastn...@gmail.com wrote: Thanks, I do notice the PDF printer and also unchecked the Print page headers but after click print, I don't know which/where the newly-printed PDF? sounds silly, I checked the currently working directory and also the possible directories, but none. Try

Re: tips to export as pdf

2011-12-28 Thread Lisi
On Thursday 29 December 2011 06:22:36 lina wrote: Hi, I have one file, I wish it can be saved as pdf, mainly keep it's present formate (the original space) from gedit view. https://docs.google.com/open?id=0B93SVRfpVVg3NjA0ZDk5ZmQtODZiMC00ZWM2LTlkZD ItYjg0N2U2YWRhZWE1 Thanks for any

Re: tips to export as pdf

2011-12-28 Thread Ashton Fagg
On 29/12/11 16:22, lina wrote: Hi, I have one file, I wish it can be saved as pdf, mainly keep it's present formate (the original space) from gedit view. If you install the cups-pdf package you will be able to print to a PDF straight from gedit, just as if you were printing it on a piece

Re: tips to export as pdf

2011-12-28 Thread lina
On Thursday 29,December,2011 03:09 PM, Ashton Fagg wrote: On 29/12/11 16:22, lina wrote: Hi, I have one file, I wish it can be saved as pdf, mainly keep it's present formate (the original space) from gedit view. If you install the cups-pdf package you will be able to print to a PDF

Re: tips to export as pdf

2011-12-28 Thread lina
On Thursday 29,December,2011 02:57 PM, Lisi wrote: On Thursday 29 December 2011 06:22:36 lina wrote: Hi, I have one file, I wish it can be saved as pdf, mainly keep it's present formate (the original space) from gedit view.

Re: tips to export as pdf

2011-12-28 Thread Lisi
On Thursday 29 December 2011 07:34:21 lina wrote: On Thursday 29,December,2011 02:57 PM, Lisi wrote: On Thursday 29 December 2011 06:22:36 lina wrote: Hi, I have one file, I wish it can be saved as pdf, mainly keep it's present formate (the original space) from gedit view.

Re: Tips for compiling VirtualBox OSE on lenny

2010-02-20 Thread Osamu Aoki
Hi, On Fri, Feb 19, 2010 at 07:05:33PM +0500, surreal wrote: I compiled VirtualBox OSE from source on my machine. Everything went fine, till I got an error from VirtualBox - libpython2.6.sonot found. then I did the following - r...@indiaforce:/usr/local/lib# locate libpython2.6.so

Re: Tips for compiling VirtualBox OSE on lenny

2010-02-20 Thread Alex Samad
On Sat, Feb 20, 2010 at 05:34:09PM +0900, Osamu Aoki wrote: Hi, On Fri, Feb 19, 2010 at 07:05:33PM +0500, surreal wrote: I compiled VirtualBox OSE from source on my machine. curious to know why you don't use virtualbox, precompile debs ? [snip] -- Well, that's going to be up to the

Re: Tips på remote access utöver ssh

2009-01-22 Thread Kim Christensen
Per Eric Rosén wrote: Ett bra paket att ha till en server är watchdog som startar om systemet i fall att det låser sig. Sen finns heartbeat, ldirectord mm för HA (hög tillgänglighet), men de förutsätter flera datorer (och är nog overkill). En HTPC med HA-lösning vore inte helt dumt; jag

Re: Tips på remote access utöver ssh

2009-01-21 Thread Per Eric Rosén
Ett bra paket att ha till en server är watchdog som startar om systemet i fall att det låser sig. Sen finns heartbeat, ldirectord mm för HA (hög tillgänglighet), men de förutsätter flera datorer (och är nog overkill). /Per Eric -- ^): Per Eric Rosén http://rosnix.net/~per/ / p...@rosnix.net

Re: Tips på remote access utöver ssh

2009-01-19 Thread Kim Christensen
maillist.pe...@home.se wrote: Hej! Sitter med ett problem som kanske inte är världens mest viktiga men det känns ändå väldigt frustrerande att inte kunna lösa det. Min HTPC har tuffat och gått åtminstone sedan i somras utan att behöva starta om den eller haft några problem. Just nu är jag

Re: Tips på remote access utöver ssh

2009-01-19 Thread maillist . peter
On Mon, Jan 19, 2009 at 03:42:16PM +0100, Kim Christensen wrote: maillist.pe...@home.se wrote: Hej! Sitter med ett problem som kanske inte är världens mest viktiga men det känns ändå väldigt frustrerande att inte kunna lösa det. Min HTPC har tuffat och gått åtminstone sedan i somras utan

Re: Tips på remote access utö ver ssh

2008-12-28 Thread Anders Lagerås
On Tue, 23 Dec 2008 23:32:44 +0100 maillist.pe...@home.se wrote: Jag tvivlar, men finns det något sätt att komma åt den förutom ssh? Telnet är avstängt så det funkar inte. Port 80 verkar inte heller svara på tilltal längre. Köra script via en ftp-server kan man ibland, men då får det ju vara

Re: Tips på remote access utöver ssh

2008-12-23 Thread Anders Jackson
Den den 23 december 2008 23:32 skrev maillist.pe...@home.se: Hej! Hej. Gud Jul. Sitter med ett problem som kanske inte är världens mest viktiga men det känns ändå väldigt frustrerande att inte kunna lösa det. Min HTPC har tuffat och gått åtminstone sedan i somras utan att behöva starta om

Re: Tips / Hjälp med server.

2008-03-25 Thread Stefan Alfredsson
Markus Viitamäki wrote: Jag är i behov av lite råd och föresalg, har nämligen ett litet problem. Jag har fått på mig en uppgift att driva en server för shell-konton. Och ja, de kommer bli en heldel såna, så nu frågar jag er hur nu skulle installera den, med säkerhet och så. Tanken är att de

Re: Tips på ftpserver

2006-02-07 Thread Håkan Kvist
On Tue, Feb 07, 2006 at 09:13:50AM +0100, wado wrote: Hej Någon som har tips på en bra ftpserver? De krav jag har är kryptering på både controll och data channel, chroot och helst (men ej ett måste) virtuella users. Jag har kört pure-ftpd och gillar den, men den stödjer bara kryptering på

Re: Tips på ftpserver

2006-02-07 Thread Kim Christensen
VSFTPd är något jag haft varmt om hjärtat på senaste; http://vsftpd.beasts.org/ -- Kim Christensen [EMAIL PROTECTED] On 2/7/06, wado [EMAIL PROTECTED] wrote: Hej Någon som har tips på en bra ftpserver? De krav jag har är kryptering på både controll och data channel, chroot och helst (men ej

Re: Tips på ftpserver

2006-02-07 Thread Torbjörn Svensson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 wado wrote: Hej Hej! Någon som har tips på en bra ftpserver? De krav jag har är kryptering på både controll och data channel, chroot och helst (men ej ett måste) virtuella users. Jag har kört pure-ftpd och gillar den, men den stödjer bara

Re: Tips på rescue-metoder, var: Mardr öm

2005-12-17 Thread Anders Arnholm
On Sat, 17 Dec 2005 07:29:45 +0100, Karolina [EMAIL PROTECTED] wrote: ett engelskt tangentbord. Dessutom har den inte samma version på en hel del utilities som debian, så lilo t.ex. fungerar inte. Jag har inte helt hundra koll på senaste debian, men derviater Ubuntu har en bra live-cd

Re: Tips på rescue-metode r, var: Mardröm

2005-12-17 Thread Tomas Nykung
On Sat, Dec 17, 2005 at 07:29:45AM +0100, Karolina wrote: Min knoppix-version, som har några år på nacken, förstår inte svenskt tangentbord och förutsätter dessutom att skärmen har högre upplösning än VGA. Så text-mode fungerar inte och man får lära sig var specialtecknen finns på ett

Re: Tips på rescue-metoder, var: Mardröm

2005-12-17 Thread Helgi Örn Helgason
On 12/17/05, Karolina [EMAIL PROTECTED] wrote: fredag 16 december 2005 17:05 skrev Per Blomqvist: Knoppix är genialt som sk rescue system iö. (TYCKER JAG) Jag håller med om att Knoppix är genialt, jag har använt det så pass mycket att jag vet en del om vad det är kapabelt till. Hoppas ni

Re: Tips på rescue-metoder, var: Mardröm

2005-12-17 Thread Vincent Lönngren
lör 2005-12-17 klockan 07:29 +0100 skrev Karolina: fredag 16 december 2005 17:05 skrev Per Blomqvist: Knoppix är genialt som sk rescue system iö. (TYCKER JAG) Min knoppix-version, som har några år på nacken, förstår inte svenskt tangentbord och förutsätter dessutom att skärmen har

Re: Tips de seguridad con SSH... Algo Basico...

2005-11-01 Thread Angel Claudio Alvarez
El lun, 31-10-2005 a las 23:21 -0300, Blu escribió: On Mon, Oct 31, 2005 at 10:44:23PM -0300, Angel Claudio Alvarez wrote: [...] Y si le dejas la frase de autenticacion en blanco le estabas bajando el nivel. Propone en algun foro de seguridad dejar en blanco las claves publica/privada y

Re: Tips de seguridad con SSH... Algo Basico...

2005-11-01 Thread Angel Claudio Alvarez
El mar, 01-11-2005 a las 08:50 +0100, Pablo Braulio escribió: El Martes, 1 de Noviembre de 2005 03:21, Blu escribió: Nuncas escupas al cielo que te puede caer en la cara. Que pasa si quiero hacer respaldos remotos periodicos?. Tengo que levantarme a las cuatro de la ma~ana a tipear la

RE: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Alfonso Pinto
--- AleX Barrios [EMAIL PROTECTED] escribió: Hola a todos! Tengo un server OpenSSH en el debian de mi casa, mas que todo siempre esta prendido para poder enviarme archivos directo a mi computadora desde el debian de mi oficina. Hice una instalacion normalita con apt-get, por lo

RE: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Alfonso Pinto
--- Alfonso Pinto [EMAIL PROTECTED] escribió: --- AleX Barrios [EMAIL PROTECTED] escribió: Hola a todos! Tengo un server OpenSSH en el debian de mi casa, mas que todo siempre esta prendido para poder enviarme archivos directo a mi computadora desde el debian de mi

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Martin C.
Tambien podes usar algun programita de llamada, que es un pasito mas hacia algo mas de seguridad. http://www.inconnection.com.ar/blog/?page_id=30 Saludos. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Alfonso Pinto
--- Martin C. [EMAIL PROTECTED] escribió: Tambien podes usar algun programita de llamada, que es un pasito mas hacia algo mas de seguridad. http://www.inconnection.com.ar/blog/?page_id=30 Saludos. Lo que hace el programita ese es Port Knocking jejejeje. Estuve leyendo sobre ello hace

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread AleX Barrios
Alfonso Pinto wrote: --- Alfonso Pinto [EMAIL PROTECTED] escribió: --- AleX Barrios [EMAIL PROTECTED] escribió: Hola a todos! Tengo un server OpenSSH en el debian de mi casa, mas que todo siempre esta prendido para poder enviarme archivos directo a mi

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Alfonso Pinto
--- AleX Barrios [EMAIL PROTECTED] escribió: Alfonso Pinto wrote: --- Alfonso Pinto [EMAIL PROTECTED] escribió: --- AleX Barrios [EMAIL PROTECTED] escribió: Hola a todos! Tengo un server OpenSSH en el debian de mi casa, mas que todo siempre

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Pablo Braulio
El Lunes, 31 de Octubre de 2005 12:40, AleX Barrios escribió: SSh sin contraseñas aumenta la seguridad?? Si. Eso no quiere decir que se puede entrar sin contraseña, sino que en lugar de usar contraseñas para la autenticación de los usuarios, puedes hacerlo a través de claves públicas. Esto

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Ricardo Frydman Eureka!
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 AleX Barrios wrote: Hola a todos! Tengo un server OpenSSH en el debian de mi casa, mas que todo siempre esta prendido para poder enviarme archivos directo a mi computadora desde el debian de mi oficina. Hice una instalacion normalita con

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Ricardo Frydman Eureka!
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 SSh sin contraseñas aumenta la seguridad?? ???¿?¿? Y algun link para la implementación de llaves publicas? Saludos a todos y muchisimas gracias por sus respuestas!!! oye...y si empezamos a sacarle el jugo a tio google que (por ahora) es

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Angel Claudio Alvarez
El lun, 31-10-2005 a las 14:07 +0100, Pablo Braulio escribió: El Lunes, 31 de Octubre de 2005 12:40, AleX Barrios escribió: SSh sin contraseñas aumenta la seguridad?? Si. Eso no quiere decir que se puede entrar sin contraseña, sino que en lugar de usar contraseñas para la autenticación de

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Ricardo Araoz
Y si tratamos un poco de respetar el ancho de banda ajeno? Son innumerables las veces que tus consejos se limitan a leer el man o buscar en google. Te propongo que asumas que todos conocemos y te damos las gracias por tan encumbrados consejos, y que NO LOS REPITAS MAS ! Si la gente pregunta

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Pablo Braulio
El Lunes, 31 de Octubre de 2005 22:59, Angel Claudio Alvarez escribió: No es para nada recomendable dejar las keys en blanco, deberia tener un clave de por lo menos 16 caracteres Creo que estás un poco confundido. Yo me refería a la contraseña con la que usas la clave publica ssh de tu

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Angel Claudio Alvarez
El mar, 01-11-2005 a las 00:27 +0100, Pablo Braulio escribió: El Lunes, 31 de Octubre de 2005 22:59, Angel Claudio Alvarez escribió: No es para nada recomendable dejar las keys en blanco, deberia tener un clave de por lo menos 16 caracteres Creo que estás un poco confundido. por que??

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread consultores1
El Lunes 31 Octubre 2005 2:47 PM, Ricardo Araoz escribió: Y si tratamos un poco de respetar el ancho de banda ajeno? Pues yo sumo mi peticion, para que se respete de una vez por todas el hecho de que para algunos de la lista, que dicho sea de paso es una burda copia de los anglo-parlantes, se

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Blu
On Mon, Oct 31, 2005 at 10:44:23PM -0300, Angel Claudio Alvarez wrote: [...] Y si le dejas la frase de autenticacion en blanco le estabas bajando el nivel. Propone en algun foro de seguridad dejar en blanco las claves publica/privada y vas a ver que te contestan [...] Nuncas escupas al cielo

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-31 Thread Pablo Braulio
El Martes, 1 de Noviembre de 2005 03:21, Blu escribió: Nuncas escupas al cielo que te puede caer en la cara. Que pasa si quiero hacer respaldos remotos periodicos?. Tengo que levantarme a las cuatro de la ma~ana a tipear la frase de paso?. Esa es la ventaja de usar claves sin contraseña. El

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-30 Thread Alejandro Garrido Mota
El 30/10/05, AleX Barrios[EMAIL PROTECTED] escribió: Hola a todos! Hola Tengo un server OpenSSH en el debian de mi casa, mas que todo siempre esta prendido para poder enviarme archivos directo a mi computadora desde el debian de mi oficina. Hice una instalacion normalita con apt-get, por lo

Re: Tips de seguridad con SSH... Algo Basico...

2005-10-30 Thread Pablo Braulio
Cambiale el puerto a uno muy extraño, eso lo haces en el archivo de configuración de ssh, donde esta la directiva Port Coloca el puerto que quieras, ojo eso yo no lo considero muy seguro pero sin enbargo lo hago para prevenir. Cualquier Hackers/Cracker podría descifrar facilito que en X

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-31 Thread Steve Lamb
Vikki Roemer wrote: One thing people have told me (which I haven't tried yet, so I can't give a firsthand opinion on) is to run a proxy because pages that you go to often load faster. As I said, I haven't used any, so I can't give a recommendation. Even better, run Squid + Adzapper.

RE: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Byron Hillis
Can anyone share some tips, tricks, or favorite applications to increase the useability of a dial-up Internet connection? Lots of patience, overnight downloading, and a friend with a good broadband connection. Byron -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Basajaun
Darrell Bellerive wrote: [snip] Can anyone share some tips, tricks, or favorite applications to increase the useability of a dial-up Internet connection? [snip] I have found (command-line) pon/poff to be (far) more reliable than (graphical) kppp. Well, actually is probably a configuration

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Kai Grossjohann
Basajaun [EMAIL PROTECTED] writes: One question I would like to make myself (I mean... not _to_ myself, hehehe) is: how does one get the modem not to produce its annoying noises with pon? There is an AT command you can send to the modem to tell it about the noise. I believe the options are:

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Byron Hillis
On Tue, 30 Aug 2005 18:21, Kai Grossjohann wrote: Basajaun [EMAIL PROTECTED] writes: One question I would like to make myself (I mean... not _to_ myself, hehehe) is: how does one get the modem not to produce its annoying noises with pon? There is an AT command you can send to the modem to

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Steve Lamb
Darrell Bellerive wrote: Can anyone share some tips, tricks, or favorite applications to increase the useability of a dial-up Internet connection? Just remember this: On an infinite timeline bandwidth is also infinite. ;) -- Steve C. Lamb | I'm your priest, I'm your

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Derrick Hudson
On Mon, Aug 29, 2005 at 06:11:46PM -0700, Darrell Bellerive wrote: | I will soon be moving into a house in the rural country. Nice. I like the countryside too :-). Last night my dad showed me an article about the company CrossUSA that purposely hires software people out in the boonies. It's a

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Derrick Hudson
On Tue, Aug 30, 2005 at 07:14:32AM -0700, Steve Lamb wrote: | Darrell Bellerive wrote: | Can anyone share some tips, tricks, or favorite applications to increase | the useability of a dial-up Internet connection? | | Just remember this: On an infinite timeline bandwidth is also infinite. ;)

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Stephen Patterson
On Tue, 30 Aug 2005 16:40:12 +0200, Derrick Hudson wrote: | and keeping my Debian stable system up to date. Use a cron job such as @daily root aptitude update /dev/null aptitude -d -y u= pgrade /dev/null If you track stable/sarge then there won't be many new/upadated

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Yuri Gorshkov
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Derrick Hudson wrote: BTW, the exact command to make (almost) all Hayes-compatible modems quiet is ATM0L0. I suggest you to make your init-string something like ATF1M0L0 (add any local customizations here). Well, I live in Russia where dial-up access

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Daniel B.
Darrell Bellerive wrote: Can anyone share some tips, tricks, or favorite applications to increase the useability of a dial-up Internet connection? Set up auto-dialing. Maintain a local Debian mirror (so when you decide to install or upgrade a package you can install it right away (without

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Katipo
Derrick Hudson wrote: On Mon, Aug 29, 2005 at 06:11:46PM -0700, Darrell Bellerive wrote: | I will soon be moving into a house in the rural country. Best dial-up modems in the world are... http://www.maestro.com.au/special%20modems.htm In the country you have special situations that gift

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Katipo
On Tue, 30 Aug 2005 16:40:12 +0200, Derrick Hudson wrote: | and keeping my Debian stable system up to date. Do it at night. 'Aptitude update' before bedtime, then 'aptitude upgrade' as you're heading off to bed. Wake up in the morning and it's all done. Debian can do it all by itself.

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Sean Davis
On Tue, Aug 30, 2005 at 10:21:34AM +0200, Kai Grossjohann wrote: Basajaun [EMAIL PROTECTED] writes: One question I would like to make myself (I mean... not _to_ myself, hehehe) is: how does one get the modem not to produce its annoying noises with pon? There is an AT command you can

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-30 Thread Vikki Roemer
On Mon, Aug 29, 2005 at 06:11:46PM -0700, Darrell Bellerive wrote: I will soon be moving into a house in the rural country. Nice place except no ADSL or cable Internet services. Until I can get a wireless link going, I will be forced to use dial-up Internet access. Residents in the area report

Re: Tips and Tricks for Dial-Up Internet Access?

2005-08-29 Thread j Mak
I also use usrobotics external modem. When I installed sarge, I simply filled out the pppconfig wizard and that was basically it. After that you can type 'pon' in the terminal to connect and 'poff' to disconnect from the internet. If you run kde you can use its graphic Internet connection

Re: Tips på bra FTP-serve r till debian med stöd för LDAP.

2004-08-18 Thread Per Olofsson
Christoffer Sawicki: Det jag nu letar efter är en bra FTP-server som har stöd LDAP eller på annat sätt kan få behörighets info från en Windows 2003 server som är domänkontrollant och jag vill ha att alla system ska få sin info från den servern. proftpd (och säkert de flesta andra

Re: tips on using screen?

2004-07-01 Thread Thomas Adam
--- Will Trillich [EMAIL PROTECTED] wrote: we'd love to hear more about your setup. ~/.bashrc aliases or settings, any keyboard macros, ~/.screenrc coolness... we're not picky. There's a _plethora_ of information about this already -- search the net. -- Thomas Adam = The Linux Weekend

Re: tips on using screen?

2004-07-01 Thread Robert L. Harris
Have you looked at split mode ? In my .screenrc I have this: bind b eval split resize -13 select 19 redisplay focus select 0 redisplay redisplay That creates a new window at the top of my screen and puts screen 19 in it then puts screen 0 in the bottom. You can do a ctrl-a, : and paste

Re: tips on using screen?

2004-07-01 Thread Will Trillich
On Thu, Jul 01 at 06:00PM +0100, Thomas Adam wrote: --- Will Trillich [EMAIL PROTECTED] wrote: we'd love to hear more about your setup. ~/.bashrc aliases or settings, any keyboard macros, ~/.screenrc coolness... we're not picky. There's a _plethora_ of information about this already --

Re: tips on using screen?

2004-07-01 Thread Wayne Topa
Thomas Adam([EMAIL PROTECTED]) is reported to have said: --- Will Trillich [EMAIL PROTECTED] wrote: we'd love to hear more about your setup. ~/.bashrc aliases or settings, any keyboard macros, ~/.screenrc coolness... we're not picky. There's a _plethora_ of information about this

Re: tips on using screen?

2004-07-01 Thread Thomas Adam
--- Wayne Topa [EMAIL PROTECTED] wrote: That wasn't very nice of you Adam. You may have notices that Will The name's Thomas. Adam is my surname. :) As long as your in a bad mood, did you notice that Will had the Well the problem there is that with e-mail being ambiguous, you read it

Re: tips on using screen?

2004-07-01 Thread Zenaan Harkness
On Fri, 2004-07-02 at 06:38, Thomas Adam wrote: If the OP were to be more specific as to the *kind* of things he wants to do with screen, then I can draft together some of my own notes. I do have a question: In gnome-terminal, I use CTRL-PGUP and CTRL-PGDN to cycle between tabs. How can I

Re: tips on using screen?

2004-07-01 Thread Thomas Adam
--- Zenaan Harkness [EMAIL PROTECTED] wrote: How can I get screen to accept keyboard shortcuts for these two cycling functions? You can use bind and bindkey for screen. And back on xterms - does anyone know something that doesn't have the redraw problems of gnome-terminal, yet is included

Re: tips on using screen?

2004-07-01 Thread Brad Sims
On Thursday 01 July 2004 11:53 am, Will Trillich wrote: we'd love to hear more about your setup. ~/.bashrc aliases or settings, any keyboard macros, ~/.screenrc coolness... we're not picky. inquiring minds want to know. :) Well I got tired of .screenrcs found via google being so poorly

Re: tips on using screen?

2004-07-01 Thread Brad Sims
On Thursday 01 July 2004 3:51 pm, Zenaan Harkness wrote: In gnome-terminal, I use CTRL-PGUP and CTRL-PGDN to cycle between tabs. How can I get screen to accept keyboard shortcuts for these two cycling functions? Hrm I am not sure of the keybindings for your need but the .screenrc commands

Re: tips on using screen?

2004-07-01 Thread Benedict Verheyen
Brad Sims wrote: Feel free to take a gander at my .screenrc at: http://home.insightbb.com/~bmsims1/Scripts/Screenrc.html Let me know if anything isn't entirely clear to ya. I wrote this for plain people like me g Hi Brad, in the keybindings section, there's a statement like this: bindkey

Re: tips on using screen?

2004-07-01 Thread Brad Sims
On Thursday 01 July 2004 6:18 pm, Benedict Verheyen wrote: n the keybindings section, there's a statement like this: bindkey -k k7 detatch Shouldn't it be: bindkey -k k7 detach (spelling of detatch?) Indeed it should, sorry. Fixed now... -- If women knew, if they even had the slightest

Re: tips on using screen?

2004-07-01 Thread Zenaan Harkness
On Fri, 2004-07-02 at 07:03, Thomas Adam wrote: --- Zenaan Harkness [EMAIL PROTECTED] wrote: Alternatively (or in addition), is it easy to start xterms on the different virtual desktops - I can specify x,y,w,h but can I specify virtual desktop? This depends on the window manager. But as

Re: tips on using screen?

2004-07-01 Thread Stephen Patterson
On Thu, 01 Jul 2004 19:00:18 +0200, Will Trillich wrote: we'd love to hear more about your setup. ~/.bashrc aliases or settings, any keyboard macros, ~/.screenrc coolness... we're not picky. I use a lightly mofified version of Sven Guckes' configuration, the only interesting bits I've got are

Re: tips on using screen?

2004-07-01 Thread Zenaan Harkness
Can I make screen 'copy' its output into xterms scrollback buffer? I find the following lines in my .screenrc: --- # To get screen to add lines to xterm's scrollback buffer, uncomment the # following termcapinfo line which tells xterm to use the normal screen buffer # (which has scrollback), not

Re: Tips på skärmdump-applet?

2003-09-08 Thread Anders Wallenquist
David Westlund wrote: Har någon något tips på skärmdumps-applet? Hade en trevlig (glömt namnet) tillsammans med Gnome 1.4, men efter uppgraderingen till Gnome 2.2 fick jag med Skärmdump som bara kan dumpa hela skärmen, jag vill kunna dumpa enskilda fönster också :-( Det kan du med

Re: Tips for serial terminal file transfer?

2003-09-06 Thread Todd Pytel
On Sat, 6 Sep 2003 06:36:56 +0100 Karsten M. Self [EMAIL PROTECTED] wrote: Waddyaknow (not much, you?). PLIP works. Sorta. I get some long periods of timeout, but currently have an ssh session into the box. I don't know if this is going to be feasible... I've played a tad with

Re: Tips for serial terminal file transfer?

2003-09-06 Thread Karsten M. Self
on Sat, Sep 06, 2003 at 09:46:32AM -0500, Todd Pytel ([EMAIL PROTECTED]) wrote: On Sat, 6 Sep 2003 06:36:56 +0100 Karsten M. Self [EMAIL PROTECTED] wrote: Waddyaknow (not much, you?). PLIP works. Sorta. I get some long periods of timeout, but currently have an ssh session into the

Re: Tips for serial terminal file transfer?

2003-09-05 Thread Karsten M. Self
on Tue, Sep 02, 2003 at 08:19:33AM +0100, Karl E. Jorgensen ([EMAIL PROTECTED]) wrote: On Mon, Sep 01, 2003 at 12:41:24PM +0100, Karsten M. Self wrote: I'm trying to bootstrap an old 486 Thinkpad. It's got two PCMCIA slots, and might make a decent gateway. Why not run a laplink cable and

Re: Tips for serial terminal file transfer?

2003-09-04 Thread Karl E. Jorgensen
On Thu, Sep 04, 2003 at 02:29:21AM +0100, Karsten M. Self wrote: on Tue, Sep 02, 2003 at 08:19:33AM +0100, Karl E. Jorgensen ([EMAIL PROTECTED]) wrote: On Mon, Sep 01, 2003 at 12:41:24PM +0100, Karsten M. Self wrote: I'm trying to bootstrap an old 486 Thinkpad. It's got two PCMCIA slots,

Re: Tips for serial terminal file transfer?

2003-09-03 Thread Karsten M. Self
on Tue, Sep 02, 2003 at 08:19:33AM +0100, Karl E. Jorgensen ([EMAIL PROTECTED]) wrote: On Mon, Sep 01, 2003 at 12:41:24PM +0100, Karsten M. Self wrote: I'm trying to bootstrap an old 486 Thinkpad. It's got two PCMCIA slots, and might make a decent gateway. Never throw working hardware

  1   2   >