Re: HTTP proxy over ssh recommendation?

2011-11-10 Thread Timo Boettcher
Hi!

* Bob Proulx  wrote:
> Philipp Tölke wrote:
> > Did you look at the -D option for ssh?
> 
> But I don't know how to make it operate as an http proxy.  Perhaps
> there is a way but unknown to me.  I don't want to run my local
> firefox under socksify.  I am sure that would work but then I couldn't
> easily switch it on and off as needed.  Therefore having an actual
> external http proxy works better as far as I can tell.
What about running privoxy over an ssh -D socks-proxy?

Timo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/2011023418.ga19...@spinnennetz.org



Re: Put date on log file names?

2010-05-17 Thread Timo Boettcher
Hi!

* vr  wrote:
> I'd like to have the date in the file names so visually I'll know
> what span is in each file.
>
> Can this be done? (put dates into the file name)
Depends. See the other posts about logrotate
> Should this be done? (put the date into the file name)
No clue

> If you're doing something like this already, how did you do it?
I am logging to syslog (the protocol) and replaced syslog (the package)
with syslog-ng. syslog-ng can be configured to do this:

destination df_syslog {
file("/var/log/$HOST/$YEAR/$MONTH/$DAY/syslog"
template("$ISODATE $HOST $MSG\n")
owner(root) group(root) perm(0600) dir_perm(0700) create_dirs(yes));
};

This is a snipped that configures a file in a directory-structure matching
the hostname and the date (you should be able to guess the details...)

http://www.syslog.org/syslog-ng/v2/ has some more examples.

 Timo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100517211206.ga5...@spinnennetz.org



Installing Debian into an existing encrypted volume with lvm

2010-03-29 Thread Timo Boettcher
Hi!

 Is it possible to install Debian (lenny or squeeze) into an existing
 encrypted volume (partition or raid with lukscrypt) which contains
 a lvm with an existing installation of debian which shouldn't be
 deleted? The testing-installer in expert-mode has only two options to
 configure encrypted volumes: "Create encrypted volumes" and "Finish".
 Both don't let me add an existing encrypted volume to add a logical
 volume to install into. Is it possible to install at all in this
 situation, or do I have to backup - install - restore?

 Timo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100329171115.ga4...@spinnennetz.org



Re: Any Linux CAD tools?

2010-01-19 Thread Timo Boettcher
Hi!

* Ogya Chief  wrote:
> I am looking for a CAD tool to draw among other things contours.
[...]
> What other options are available on the Linux platform?
There is a list on http://wiki.debian.org/DebianScience/Engineering

 Timo


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Re: OT: Audiophile grade music server using several flavors of Debian

2008-07-22 Thread Timo Boettcher
I am in the finishing steps of building something similar myself.

* Nick Lidakis <[EMAIL PROTECTED]> wrote:
> There are several flavors, one of which caught my attention immediately:  
> The ALIX 3c2 (http://www.pcengines.ch/index.htm). A 500Mhz AMD Geode CPU  
> (fanless), 256MB RAM, 2 USB ports, 1 serial, 1 Ethernet, 2 mini PC-I all  
> on a board sized 100x1600mm. The whole thing runs off a small 12V, 18  
> watt adapter.
Why did you use the 3c2 that is intended as a router, but not the 1c [1]?
It has vga, network, usb, and even sound onboard (spdif, too, if you are
willing to build an adapter yourself [2]). Be careful with the PCI-slot
of the alix1c though, it doesn't provide +12V/-12V, so most soundcards
won't work.

> Software wise, I wanted: MPD on the server, FLAC files served to the MPD  
> server 
No real alternatives to that...

> A Nokia N800 running MMPC (http://mmpc.garage.maemo.org/) if I could
> find one used at a decent price.
I didn't find this gui at that time, so I wrote my own [3]. It runs
without X (just SDL+framebuffer), and uses a touchscreen I got on ebay from
some car-modding-guy. GPM has experimental support for these kind of
touchscreens in the current version.
I can control it via touchscreen or via my own LIRC-compatible infrared
receiver [4].


> My Kill-A-Watt registers 3 watts max consumption when the ALIX is
> playing FLAC files
I have a small via epia system since I wanted to use a real soundcard, 
with a via C3 533MHz, 512MB ram, and a CF-to-IDE [5] adapter.

> FLAC output is via USB, which is plugged into a Trends Audio  
> USB-to-S/PDIF converter. The trends is plugged into a Adcom GDA-700 DAC.

Timo

[1] http://www.pcengines.ch/alix1c.htm
[2] http://www.beis.de/Elektronik/ADDA2496/SPDIF-Converter.html
[3] http://www.spida.net/projects/pympdtouchgui/
[4] http://www.spida.net/projects/usbtiny-ir/
[5] http://www.pcengines.ch/cflash.htm


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Read-only root (/) except /etc

2008-04-13 Thread Timo Boettcher
* Daniel Dickinson <[EMAIL PROTECTED]> wrote:
> Is it possible to have /etc on a separate partition from / (root) so
> that root can be read-only while /etc is read-write?
Making a read-only root-fs is quite complex.
You didn't write why you do want to do this. If you have a medium that
may break by to many writes (like a flash-disk), you can try mounting
another (tmpfs?) over it with unionfs or aufs (I got better results with
that). If you want to use that as a security feature, it won't work. If
you really want read-only-root, you should have a log at grml-live [1].
Grml is a debian-based live-cd aimed for advanced users with a focus on
text-tools (no kde, no ooo), and grml-live is its automated build-tool.

HTH

 Timo

[1] http://www.grml.org/grml-live/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]