find tux comic picture help

2009-05-03 Thread Erik Xavior
does anyone knows/have that comic picture of "tux" the Linux penguin that: - has four pictures in it - it defines 4 "levels" of the knowledge of tux, who is "symbolizing a learning person" - the first one: tux is just a Linux "fanboy"; second: tux is working, and say's: "...stupid rpm"; three: I c

webgui, gui

2009-05-03 Thread Erik Xavior
Are there any good "GUI"s, webGUIs for managing an "Linux" server? For several use, like the mandriva directory server? thanks

shutdown firewall

2009-04-27 Thread Erik Xavior
Hi How to shut down a firewall "officaly"? Related to this: url

magic sysRq

2009-04-27 Thread Erik Xavior
Hi I recently read about "Magic SysRq"! wow :) # sysctl -a | grep sysrq kernel.sysrq = 1 But it doesn't reboot, when i press "AltGr+sysrq+b", what am I missing? :S 2.6.26-2-amd64 Thank you!

Re: wget file name is too long

2009-04-27 Thread Erik Xavior
e (/href=\"(.+?)\"/ig)' site.html | grep "attredirects=" | grep "http://";); do wget -O $(echo "${URL#*://}" | tr / _) "$URL"; done wow. thanks!! :) On Sun, Apr 26, 2009 at 11:04 PM, Florian Kulzer < florian.kulzer+deb...@icfo.es > wrote:

Re: wget file name is too long

2009-04-26 Thread Erik Xavior
$ wget -tc '?' URL wget: --tries: Invalid number `c'. $ wget --trimcharacter '?' URL wget: unrecognized option `--trimcharacter' Usage: wget [OPTION]... [URL]... Try `wget --help' for more options. man wget says nothing about -tc my wget version: 1.11.4-2 "--content-disposition" still gives "

wget file name is too long

2009-04-26 Thread Erik Xavior
Hi! I've got a little script, what gives wget some URLs to download, the URL-s are not soo long, but, the URL's are redirected, then they are too long: wget $(script) Cannot write to something?attredirects=0auth=ANoY7cqi24QEtZt9tVRYpcBnR5N5Y6sU0eERgXUdKmJCYKN7thBmfdghjfdsdo6ihFwUpTG1Wmtp4qjzZmwT

Re: iceweasel firegpg noexec

2009-04-24 Thread Erik Xavior
thanks for the correction :) ok, then... problem solved :D >what's the biggest point to not set the noexec on /home? Users don't have anywhere to put scripts or custom binaries. You may also get random breakage due to programs using small, temporary scripts without the user's knowledge. As a u

Re: iceweasel firegpg noexec

2009-04-24 Thread Erik Xavior
I just thought that would be a good idea :O what's the biggest point to not set the noexec on /home?

iceweasel firegpg noexec

2009-04-24 Thread Erik Xavior
When I set noexec option on my home partition/mount point, I get the following error on Debian Lenny, With Iceweasel 3.0.6, GNOME: http://img262.imageshack.us/img262/249/93353289.jpg Has someone seen similar? thank you!

Re: wput file

2009-04-23 Thread Erik Xavior
Wow. It worked :O !!! Thank you! ps.: Thank you again :) !! If you have a percent sign in PASSWORD then it will be interpreted as an escape character that is to be followed by a two-digit hexadecimal number that encodes one character (i.e. the next two characters have to be members of the se

wput file

2009-04-23 Thread Erik Xavior
Hi I'm trying to put a file to an ftp site: wput -v file.txt ftp://USER:passw...@foo.com/public_html/pub/ file.txt is just a normal plain text file. But it says: parse-error in escaped character: is not a hexadecimal character and it doesn't uploads the file :S what am I missing? Thank you

Re: iptables - computer hangs

2009-04-20 Thread Erik Xavior
now I fully removed network manager: apt-get remove --purge -y network-manager-gnome network-manager-openvpn-gnome network-manager-pptp-gnome network-manager-vpnc-gnome network-manager network-manager-openvpn network-manager-pptp network-manager-vpnc because I read in forums, when I want to "use"

Re: iptables - computer hangs

2009-04-19 Thread Erik Xavior
*OK, my brains dead. :)* It still doesn't work :D :\ :( I'm using Debian Lenny, with GNOME 1) First I removed the network-manager, to be sure, it doesn't do anything: apt-get remove --purge -y network-manager-gnome network-manager-openvpn-gnome network-manager-pptp-gnome network-manager-vpnc-gno

Re: redirect time to file

2009-04-17 Thread Erik Xavior
wow. Thank you!! and can I append the output of "time" to a file? [like "time echo hi >> file"] eg.: it could be good, for measuring a commands running time several times, then avg the "time"'s output!! :D :O

redirect time to file

2009-04-17 Thread Erik Xavior
$ time echo hi > file real0m0.000s user0m0.000s sys 0m0.000s $ why doesn't it redirect the: real0m0.000s user0m0.000s sys 0m0.000s to the "file"? even time echo hi 2>&1 > file doesnt work :O

Re: date - if - bash

2009-04-17 Thread Erik Xavior
it gives an output, yes, but if "date +%H" is smaller then 10, it still says "later then 10h" if [ $(date +%H) > 10 ]; then echo "later then 10h"; else echo "before 10h"; fi;

date - if - bash

2009-04-17 Thread Erik Xavior
why isn't working? :S if [ $(date +%H) > 10 ]; then echo "later then 10h"; else echo "before 10h"; fi;

iptables - computer hangs

2009-04-17 Thread Erik Xavior
I have a simple iptables script. If I put it in rc2.d, it runs at boot, works OK...but. when I want to shutdown OR restart the pc, it just hangs (I can see the shutdown button is still pressed). :S I can only shutdown the pc, when I press ctrl+alt+backspace if it helps, I can post my firewall

apt-p2p

2009-04-12 Thread Erik Xavior
Is apt-p2p safe? I just read it on slashdot, does anybody use it?

Re: reduce XFS

2009-04-12 Thread Erik Xavior
I was only thinking that XFS size can be extended with "xfs_growfs" after an lvextend - online. But is there a stable way to shrink XFS size online? With LVM it would be great :D :) Thank you! ps.: or is there any other stable FS that supports online shrink/extend?

reduce XFS

2009-04-11 Thread Erik Xavior
Is there a way reducing XFS size? :)