Wednesday, May 28, 2008

Instruksi Dasar Linux

Linux punya instruksi dasar yang diwariskan turun temurun :) Karena berbasis UNIX, maka instruksi dibawah ini umumnya Kompatible untuk semua distro linux, keluarga BSD,dan Solaris.

Untuk menjalankan instruksi di Linux, gunakan Terminal atau Shell. Ada banyak program shell, salah satu yang paling banyak digunakan adalah BASH (Bourne Again Shell)


cat
Perintah untuk menampilkan isi teks file

cat [namafile]
#cat /etc/rc.d/rc.module
$cat /tmp/Hash

cd
Perintah untuk Pindah direktori

$ cd [nama direktori]
$ cd /home/mic/picture

maka direktori aktif akan berpindah ke /home/mic/picture

cfdisk
Perintah untuk mempartisi hardisk
#cfdisk /dev/sda

chfn
change finger information -perintah untuk merubah finger informatin user

chfn [user name]
$ chfn mic

chgrp
Memilih group owner dari sebuah file/direktori (hanya root yang bisa melakukannya ! )

#chgrp [group] [file/direktori name]
#chgrp eagle /tmp/flames/data/test1.doc
#chgrp eagle -r /tmp/flames/picture

r=recursive

chmod
Perintah untuk Mengubah mode proteksi /file permission file atau direktori

$ chmod [permission] file/direktori

RWX RWX RWX
Owner Group Other

$ chmod 755 /home/mic/picture/*.*
RWXRWXRWX
111101101


$ chmod 700 /home/mic/secret
rwxrwxrwx
111000000

clear
Perintah untuk membersihkan layar
$clear

cp
Perintah untuk Mencopy file

$ cp [source] [destination]
$ cp xxx.jpg /home/x/picturexxx

maka file gambar xxx.jpg akan dipindahkan ke direktori /home/x/picturexxx

grep
Perintah untuk melakukan scan file terhadap karakter tertentu
grep "pattern" filename
$grep "xxx" /tmp/doc/*


halt
Perintah untuk meng-halt system (hanya root yang bisa ! )

#halt –h now

Matikan system sekarang !!

init*
Perintah melakukan perpindahan antar level.

init 0123456

0=halt the system
1=single user mode
2=multi user without NFS
3=Full Multi user
4=unused
5=start X window
6=reboot system

# init 6
reboot
# init 5
startx window

Umumnya default adalah init 3

ln- Symbolic Link
Perintah untuk memberikan nama link terhadap suatu file
$ ln -s [file] [ link name]
$ ln -s /home/x/picture/xxx.jpg saku

locate*
Perintah untuk pencarian file dengan cepat

locate [file name]
$locate document1.doc

ls
Perintah untuk Melihat isi direktori

$ ls

Akan ditampilkan isi folder Anda.

$ ls -la

akan ditampilan isi folder lengkap dengan hak akses (file permission)

mkdir
make directory- perintah untuk membuat direktori

#mkdir /mnt/flashdisk
#mkdir 755 /tmp/musik/Rock

mv
Perintah untuk Memindah file /direktori

$ mv [source] [destination]
$ mv xxx.jpg /home/x/picture
file xxx.jpg akan dipindahkan ke direktori /home/x/picture
Hati-hati ! memindah berbeda dengan mencopy lho !

$ mv xxx.jpg gbr-x.jpg

Nama file xxx.jpg berubah menjadi gbr-x.jpg

$ mv /home/x/picture /home/x/gambar

Direktori /home/x/picture berubah nama menjadi /home/x/gambar

ping
Perintah untuk mengecek keaktifan suatu komputer/server dalam jaringan

ping [hostname/IP number]
#ping skylarx2
#ping 192.168.0.17
#ping www.yahoo.com (jika terhubung ke-internet)

pkgtool
Perintah pada slackware untuk menambah, meremove, melihat program. Pkgtool juga dapat digunakan untuk mengatur konfigurasi global sistem Linux. (Hanya berlaku bagi root ! )
#pkgtool

pwd
Perintah untuk melihat direktori aktif

$ pwd

Jika Anda berada di /home/root/mp3/SOAD, maka setelah mengetikkan pwd akan muncul

/home/root/mp3/SOAD

rm
Perintah untuk Menghapus file /direktori
$ rm [file name]
$ rm /home/x/gambar/gbr-x.jpg
$ rm -r /home/x/gambar
$ rm /tmp/mp3/barat/Sky is 0ver.mp3

pada contoh ke-3, penggunaan r akan menyebabkan semua file dan folder /home/x/gambar akan 'habis' (r= recursive)

rmdir
remove direktory - perintah untuk meremove directory


#rmdir /tmp/mp3/Rock/SerjTankian

shutdown
Perintah untuk shutdown

Shutdown
#shutdown -h now
shutdown tanpa ada peringatan.
#shutdown -t 15
shutdown 15 detik lagi.....
#shutdown -r now
merestart komputer !

startx
Perintah untuk mengaktifkan system X window
$startx

Jika terjadi "kecelakaan" tekan Ctrl-Alt-Backspace untuk keluar dari system X window

su
Menjadi superuser atau log sebagai user ID lain

$su [username]
$su
password :***************
# (sudah sebagai superuser)
$su fog
password :***************
$ (log sebagai fog)

top
Perintah untuk mengetahui proses yang terjadi

$top

touch
Perintah untuk membuat file kosong
touch [file name]
$touch /tmp/dirBaru

useradd /userdel*
Perintah untuk menambah /menghapus user (hanya root yang bisa! )
useradd [user name]

#useradd flames
#userdel x-fog

which
Perintah untuk menunjukan letak file yang diakses
which [file name]
$which /tmp/data

whereis
Perintah untuk mencari sebuah file
Whereis [namafile]
$whereis bab2.doc

xinit
Init X window tanpa perlu masuk ke window manager

mounting the usb dvd drive

Since the dvd drive which came along with my laptop can only “read-write” dvd-r’s (and not dvd+r), it was imperative for me to be able to mount my usb dvd+r drive on slackware. Here is how it is done:

mount -r /dev/scd0 /mnt/dvd/

/dev/scd0: seems like this is used for scsi devices

removing kde’s trash can from the desktop

I prefer to keep the program shortcuts on the panel and so it became an annoying to see that lone trash can teasing me into deleting it. But ofcourse, right-clicking on it gives no such option. So we had to do it in the hacker’s spirit. First I made a shortcut for the icon on my panel. Then I opened the terminal and typed:

rm -R ~/Desktop/trash.desktop

viola! a clean desktop finally

how to build a program in linux

In linux, its the trinity of commands “configure_make_make-install” which you use to install most programs. But before you do that, it is advisable to take a look at the “install.txt” file before proceeding because there might be some extra flags or commands one have to add to get it correct. Else, first extract the file by right clicking on it in kde (or gnome) and selecting extract here. Then open a terminal, “cd” to the location you have extracted your file to and type:

su
//system asks for password. Enter it.
./configure
//system spits out crap
make
//more console crap
make install
//more… yeah! you get it
exit
//goes out of su mode

now all one has to do is to either type the name of the program in the console or make a shortcut on the desktop

mounting the pendrive

mount -rw -t auto /dev/sda1 /mnt/pendrive

-rw: readable and writable
-t auto: filetype detected automatically
/dev/sda1: seems that this is the type of device for pendrives
/mnt/pendrive: i had to create the “pendrive” folder in the “/mnt” directory

after having done this, open the “/mnt/pendrive” folder to access its contents. After you are finished with it, close all related “/mnt/pendrive” folders and konsoles, and unmount it with the command:

umount /mnt/pendrive

if it gives an error message saying that it is busy, then give the command:

umount -l /mnt/pendrive

-l: “lazy” unmount which means, it will unmount as soon as the device stops being busy

Monday, May 26, 2008

FBI Wireless Hacking Live



live Cd For Wireless Hacking, Also Used By The Fbi

This version is for all systems except systems with the Intel B/G wireless cards (IPW2200).

- Live CD with all the tools you need to hack a WLAN / wireless Access point - Linux Live-CD - OS runs from CD - 635 mb - .iso
- also used by the FBI ...


WEP Hacking - The Next Generation

WEP is an encryption scheme, based on the RC-4 cipher, that is available on all 802.11a, b and g wireless products. WEP uses a set of bits called a key to scramble information in the data frames as it leaves the access point or client adapter and the scrambled message is then decrypted by the receiver.

Both sides must have the same WEP key, which is usually a total of 64 or 128 bits long. A semi-random 24 bit number called an Initialization Vector (IV), is part of the key, so a 64 bit WEP key actually contains only 40 bits of "strong" encryption while a 128 bit key has 104. The IV is placed in encrypted frame's header, and is transmitted in plain text.

Traditionally, crac*ing WEP keys has been a slow and boring process. An attacker would have to capture hundreds of thousands or millions of packetsâ€"a process that could take hours or even days, depending on the volume of traffic passing over the wireless network. After enough packets were captured, a WEP crac*ing program such as Aircrac* would be used to find the WEP key.

Fast-forward to last summer, when the first of the latest generation of WEP cracking tools appeared. This current generation uses a combination of statistical techniques focused on unique IVs captured and brute-force dictionary attacks to break 128 bit WEP keys in minutes instead of hours. As Special Agent Bickers noted, "It doesn't matter if you use 128 bit WEP keys, you are vulnerable!"


WEP is an encryption scheme, based on the RC-4 cipher, that is available on all 802.11a, b and g wireless products.

WEP uses a set of bits called a key to scramble information in the data frames as it leaves the access point or client adapter and the scrambled message is then decrypted by the receiver.

Both sides must have the same WEP key, which is usually a total of 64 or 128 bits long.

A semi-random 24 bit number called an Initialization Vector (IV), is part of the key, so a 64 bit WEP key actually contains only 40 bits of "strong" encryption while a 128 bit key has 104.

The IV is placed in encrypted frame's header, and is transmitted in plain text.

Traditionally, cracking WEP keys has been a slow and boring process.

An attacker would have to capture hundreds of thousands or millions of packets a process that could take hours or even days, depending on the volume of traffic passing over the wireless network.

After enough packets were captured, a WEP cracking program such as Aircrack would be used to find the WEP key.

Fast-forward to last summer, when the first of the latest generation of WEP cracking tools appeared.

This current generation uses a combination of statistical techniques focused on unique IVs captured and brute-force dictionary attacks to break 128 bit WEP keys in minutes instead of hours.

Sunday, May 25, 2008

Portable Apps

PortableApps Menu ScreenshotConvenient
Now you can carry your favorite computer programs along with all of your bookmarks, settings, email and more with you. Use them on any Windows computer. All without leaving any personal data behind.


Open
PortableApps.com provides a truly open platform that works with any hardware you like (USB flash drive, iPod, portable hard drive, etc). It's open source built around an open format that any hardware vendor or software developer can use.

Free
The Portable Apps Suite™ is free. It contains no spyware. There are no advertisements. It isn't a limited or trial version. There is no additional hardware or software to buy. You don't even have to give out your email address. It's 100% free to use, free to copy and free to share.

Installation BackTrack On USB Dogle [Backtrack USB Version]


BackTrack is a Live Linux distribution based on SLAX that is focused purely on penetration testing. Distributed by remote-exploit.org, BackTrack is the successor to Auditor. It comes prepackaged with security tools including network analyzers, password crackers, wireless tools and fuzzers. Although originally designed to Boot from a CD or DVD, BackTrack contains USB installation scripts that make portable installation to a USB device a snap. In the following tutorial, we cover the process of installing BackTrack to a USB flash drive from within a working Windows environment. BackTrack running from USB Screenshot: BackTrack in action running from USB

How to install BackTrack to a USB device: Note: USB installation of BacktTack performs like the Live CD. Currently a persistence BackTrack feature is outside the scope of this tutorial.

  • Download
  • the (Portable Backtrack) USB BackTrack version
  • Extract the Boot and BT3 folders to the root of your USB device
  • Navigate to the Boot folder on your "USB device" and click bootinst.bat (click continue if the following error appears)
  • BackTrack Error

    goo Green


    goo Green Label is an "environmentally-friendly" search engine You can contribute to the protection of the global environment by using our search engine, which generates money mainly from the advertisements. The fund raised will be donated to an environmental non-government organization (NGO).

    For example, the earth temperature is hiking up from the CO2 exhausted from our daily lives. (※1) Apart from living a convenient life, we should act up to save this precious earth for the next generation. What can we do to save the environment?

    Now, "goo" takes the action to solve the global environmental problems, in cooperation with the environmental conservation organization. We need your help, i.e., a web user’s support, to make a difference by this project. All you have to do is to simply change your search engine to "goo Green Label" for your regular web search. →use now

    Wireless Cards And Drivers Work with Bactrack

    o 2.1 PCI
    + 2.1.1 Asus WL-138g v2
    + 2.1.2 Belkin F5D8001
    + 2.1.3 CNet CWP-854
    + 2.1.4 Dlink DWL-AG530
    + 2.1.5 Dlink DWL-G520
    + 2.1.6 Dlink DWL-G510
    + 2.1.7 Foxconn WLL-3350
    + 2.1.8 MSI PC60G
    + 2.1.9 Netgear WG311T
    + 2.1.10 Netgear WPN311
    + 2.1.11 SMC SMCWPCI-G

    o 2.2 Mini PCI (Built in)
    + 2.2.1 Broadcom BCM4306 802.11b/g (rev 3)
    + 2.2.2 Broadcom BCM4318 802.11b/g
    + 2.2.3 IBM AR5212 802.11abg NIC (rev 01)
    + 2.2.4 IPW2100
    + 2.2.5 IPW2200
    + 2.2.6 IPW3945
    + 2.2.7 IPW3945
    + 2.2.8 WN360G

    o 2.3 Mini PCIe (Built in)
    + 2.3.1 Broadcom BCM4311 802.11b/g

    o 2.4 PCMCIA Cards
    + 2.4.1 3COM 3CRWE154G72 v1
    + 2.4.2 3COM 3CRPAG175B with XJACK Antenna
    + 2.4.3 Agere Systems ORiNOCO GOLD PC Card Classic
    + 2.4.4 AirLink101 AWLC4130
    + 2.4.5 ASUS WL100G
    + 2.4.6 Belkin F5D6020 v3
    + 2.4.7 Belkin F5D7010 V1000
    + 2.4.8 Belkin F5D7010 V3000UK
    + 2.4.9 Belkin F5D7010 V5000
    + 2.4.10 Belkin F5D7010 V6000
    + 2.4.11 Belkin F5D7011
    + 2.4.12 Buffalo WLI-CB-G54HP
    + 2.4.13 Cisco AIR-LMC350
    + 2.4.14 Cisco AIR-PCM350-T
    + 2.4.15 Cisco Aironet AIR-CB21AG-A-K9
    + 2.4.16 Dlink DWA-645
    + 2.4.17 Dlink DWL-650+
    + 2.4.18 Dlink DWL-G650
    + 2.4.19 Dlink DWL-G630, 650+/-
    + 2.4.20 Dlink DWL-G650M
    + 2.4.21 Dlink DWL-G650+
    + 2.4.22 D-Link WNA-1330
    + 2.4.23 Enterasys Roamabout 802.11 DS High Rate
    + 2.4.24 Gigabyte GN-WM01GT AirCruiserG Mach G
    + 2.4.25 Lucent Technologies Orinoco Silver
    + 2.4.26 Linksys WPC11v4
    + 2.4.27 Linksys WPC11v4
    + 2.4.28 Linksys WPC54G v3
    + 2.4.29 Motorola WN825G v2
    + 2.4.30 NetGear MA401
    + 2.4.31 NetGear WPN511
    + 2.4.32 NetGear WPN511 - Range Max
    + 2.4.33 NetGear WG511T
    + 2.4.34 NetGear WAG511v2
    + 2.4.35 NetGear WG511 v1
    + 2.4.36 NetGear WG511v2
    + 2.4.37 Netgear WG511U
    + 2.4.38 NetGear WPN511GR
    + 2.4.39 Netgear WPNT511
    + 2.4.40 PROXIM ORiNOCO 802.11b/g Gold (Model: 8470-WD)
    + 2.4.41 Senao NL-2511CD PLUS EXT2
    + 2.4.42 Senao Sl-2511CD Plus EXT2
    + 2.4.43 Senao SL-2511 CD PLUS (the one w/o external connectors)
    + 2.4.44 Sitecom WL-100b
    + 2.4.45 SMC 2532W-B
    + 2.4.46 SMC SMC2536W-AG
    + 2.4.47 SMC WCB-G
    + 2.4.48 SWEEX LW051 ver:1.0
    + 2.4.49 TP-link SuperG&eXtended Range 108M Wireless Cardbus Adapter(TL-WN610G)
    + 2.4.50 TP-link eXtended Range 54M Wireless Cardbus Adapter (TL-WN510G)
    + 2.4.51 Ubiquiti SRC
    + 2.4.52 Wistron WLAN 802.11a/b/g Cardbus CB9-GP
    + 2.4.53 X-Micro WLAN 11g PCMCIA Card (XWL-11GPAG)
    + 2.4.54 ZCom XI-325HP+
    + 2.4.55 Zyxel ZyAIR G-100 PCMCIA Card (FCC ID:N89-WE601l)

    o 2.5 USB Dongles
    + 2.5.1 Airlink101 AWLL3026
    + 2.5.2 ALFA Networks AWUS036H
    + 2.5.3 ASUS WL-167G
    + 2.5.4 AVM Fritz!Wlan USB V1.1
    + 2.5.5 Belkin F5D7050 V1
    + 2.5.6 Belkin F5D7050 (4000 series)
    + 2.5.7 Belkin F5D7050B
    + 2.5.8 Belkin F5D7051
    + 2.5.9 Buffalo Airstation G54 WLI-U2-KG54-AI (2A)
    + 2.5.10 Chiefmax
    + 2.5.11 D-Link DWL 122 (USB) F/W 3.2.1 H/W A1
    + 2.5.12 D-Link DWL G122 (USB) F/W 2.03 B1
    + 2.5.13 D-Link WUA-1340
    + 2.5.14 Edimax EW-7317UG
    + 2.5.15 Edimax EW-7318USG
    + 2.5.16 Linksys WUSB54g v4
    + 2.5.17 Linksys WUSB54GC
    + 2.5.18 MicroEdge MEG55A Wireless-G USB Dongle
    + 2.5.19 NetGear WG111v2
    + 2.5.20 NetGear WG111T
    + 2.5.21 Netopia ter/gusb-e
    + 2.5.22 OvisLink Evo-w54usb
    + 2.5.23 SafeCom SWMULZ-5400
    + 2.5.24 ZyDAS 1211
    + 2.5.25 SMCWUSB-G EU
    + 2.5.26 MSI US54SE
    + 2.5.27 Hawking HWUG1

    Laptop Compatibility List With Bactrack

    * 1 Laptop Compatibility List
    o 1.1 Acer
    + 1.1.1 Acer Travelmate
    # 1.1.1.1 Travelmate 212TXV
    # 1.1.1.2 Travelmate 290
    # 1.1.1.3 Travelmate 331
    # 1.1.1.4 Travelmate 345
    # 1.1.1.5 Travelmate 2200
    # 1.1.1.6 Travelmate 2301LC
    # 1.1.1.7 Travelmate 2350
    # 1.1.1.8 Travelmate 2492WLMi
    # 1.1.1.9 Travelmate 3302WXMI
    # 1.1.1.10 Travelmate 4000LCi
    # 1.1.1.11 Travelmate 4101LMi
    # 1.1.1.12 Travelmate C110
    # 1.1.1.13 Travelmate C200

    + 1.1.2 Acer Ferrari
    # 1.1.2.1 Ferrari 1000
    # 1.1.2.2 Ferrari 4005 WLMi

    + 1.1.3 Acer Aspire
    # 1.1.3.1 Aspire 1350
    # 1.1.3.2 Aspire 1355
    # 1.1.3.3 Aspire 1520
    # 1.1.3.4 Aspire 3102WLMi
    # 1.1.3.5 Aspire 3628AWXMI=
    # 1.1.3.6 Aspire 3680, 3690 + Aspire 5512 wlmi
    # 1.1.3.7 Aspire 1692 WLMi
    # 1.1.3.8 Aspire 1692 WLMi (DDR2 version)
    # 1.1.3.9 Aspire 1682WLMi
    # 1.1.3.10 Aspire 4315
    # 1.1.3.11 Aspire 5051AWXMi
    # 1.1.3.12 Aspire 5100
    # 1.1.3.13 Aspire 5101AWLMi
    # 1.1.3.14 Aspire 5102WLMi
    # 1.1.3.15 Aspire 5050
    # 1.1.3.16 Aspire 5610/5610z
    # 1.1.3.17 Aspire 7004WSMi
    # 1.1.3.18 Aspire 9302wsmi

    o 1.2 Alienware
    + 1.2.1 Area 51m
    + 1.2.2 m7700 Aurora

    o 1.3 Apple
    + 1.3.1 MacBook Pro Core 2 Duo (2008, nVidia Geforce 8600M GT)
    + 1.3.2 MacBook Pro Core 2 Duo (2006, ATI Mobility Radeon X1600)
    + 1.3.3 MacBook Pro Core 2 Duo (2007 Santa Rosa, nVidia Geforce 8600M GT)
    + 1.3.4 MacBook Core Duo
    + 1.3.5 MacBook Core 2 Duo

    o 1.4 Asus
    + 1.4.1 Eee PC
    + 1.4.2 A2500H
    + 1.4.3 A6Km Q012H
    + 1.4.4 A6JA
    + 1.4.5 A6T AP008B
    + 1.4.6 A6Va B028H
    + 1.4.7 L3000D
    + 1.4.8 A8JS
    + 1.4.9 A6R
    + 1.4.10 A6Rp
    + 1.4.11 L3S/L3800 with a Netgear WGT511 PCMCIA Wireless card
    + 1.4.12 A6Vc
    + 1.4.13 R1F
    + 1.4.14 M6800Ne


    o 1.5 Averatec
    + 1.5.1 AV3715-EH1
    + 1.5.2 AV1020-ED1
    + 1.5.3 AV3250HX-01

    o 1.6 Aristo
    + 1.6.1 Aristo Smart 250D

    o 1.7 Dell
    + 1.7.1 Inspiron
    # 1.7.1.1 Inspiron 1000
    # 1.7.1.2 Inspiron 1100
    # 1.7.1.3 Inspiron 1150
    # 1.7.1.4 Inspiron 1501
    # 1.7.1.5 Inspiron 600m
    # 1.7.1.6 Inspiron 510m
    # 1.7.1.7 Inspiron E1505 / 6400
    # 1.7.1.8 Inspiron E1705 / 9400
    # 1.7.1.9 Inspiron 1300
    # 1.7.1.10 Inspiron 2200
    # 1.7.1.11 Inspiron 4100
    # 1.7.1.12 Inspiron 5150
    # 1.7.1.13 Inspiron 6000
    # 1.7.1.14 Inspiron 8100
    # 1.7.1.15 Inspiron 8200
    # 1.7.1.16 Inspiron 9100
    # 1.7.1.17 Inspiron 9200
    # 1.7.1.18 Inspiron 9400
    # 1.7.1.19 Inspiron XPS Gen 1
    # 1.7.1.20 Inspiron XPS Gen 2
    # 1.7.1.21 XPS M1210
    # 1.7.1.22 XPS M1530
    # 1.7.1.23 XPS M140
    # 1.7.1.24 Inspiron 6400
    # 1.7.1.25 Inspiron 630m
    # 1.7.1.26 Inspiron 640m

    + 1.7.2 Latitude
    # 1.7.2.1 Latitude CPI xx
    # 1.7.2.2 Latitude C600
    # 1.7.2.3 Latitude D420
    # 1.7.2.4 Latitude D505
    # 1.7.2.5 Latitude D510
    # 1.7.2.6 Latitude D520
    # 1.7.2.7 Latitude D531
    # 1.7.2.8 Latitude D600
    # 1.7.2.9 Latitude D610
    # 1.7.2.10 Latitude D620
    # 1.7.2.11 Latitude D810
    # 1.7.2.12 Latitude D820
    # 1.7.2.13 Latitude L400
    # 1.7.2.14 Latitude X1
    # 1.7.2.15 Latitude C640
    # 1.7.2.16 Latitude C610
    # 1.7.2.17 Latitude 120L
    # 1.7.2.18 Latitude 110L
    # 1.7.2.19 Precision M65
    # 1.7.2.20 Vostro 1500

    o 1.8 ECS
    + 1.8.1 Model GREEN220

    o 1.9 Everex
    + 1.9.1 Stepnote SA
    + 1.9.2 StepNote XT5000T

    o 1.10 Fujitsu Siemens
    + 1.10.1 Lifebook
    # 1.10.1.1 Lifebook A-3130
    # 1.10.1.2 Lifebook B-2630
    # 1.10.1.3 Lifebook C-1110
    # 1.10.1.4 Lifebook E-4010
    # 1.10.1.5 Lifebook E-6560
    # 1.10.1.6 Lifebook P-5020
    # 1.10.1.7 Lifebook P-7010
    # 1.10.1.8 Lifebook T-4010
    + 1.10.2 Amilo
    # 1.10.2.1 Amilo Xi1526
    # 1.10.2.2 Amilo M 7405
    # 1.10.2.3 Amilo Xi1554

    o 1.11 Gateway
    + 1.11.1 CX320X-CTO
    + 1.11.2 CX210S
    + 1.11.3 M275
    + 1.11.4 MX6025
    + 1.11.5 MX6453
    + 1.11.6 MX6625
    + 1.11.7 MX6920
    + 1.11.8 MX6927
    + 1.11.9 MX6428
    + 1.11.10 7422GX
    + 1.11.11 MX7515
    + 1.11.12 Solo 5300

    o 1.12 Gericom
    + 1.12.1 1st Supersonic
    + 1.12.2 Hummer FX 5600

    o 1.13 HP/Compaq
    + 1.13.1 Armada 1750
    + 1.13.2 Armada 6500
    + 1.13.3 Armada E500
    + 1.13.4 Armada M700
    + 1.13.5 Evo N160
    + 1.13.6 Evo N410c
    + 1.13.7 Evo N600c
    + 1.13.8 Evo N610c
    + 1.13.9 Evo N620c
    + 1.13.10 HDX 9000
    + 1.13.11 HP 510
    + 1.13.12 nc4200
    + 1.13.13 nc6000
    + 1.13.14 nc6120
    + 1.13.15 nc6220
    + 1.13.16 nc6230
    + 1.13.17 nc8430
    + 1.13.18 nx6110
    + 1.13.19 nx6310
    + 1.13.20 nx6315
    + 1.13.21 nx6325
    + 1.13.22 nx7400
    + 1.13.23 nx9020
    + 1.13.24 nx9420
    + 1.13.25 nw9440
    + 1.13.26 Pavilion dv5100 OC
    + 1.13.27 Pavilion dv5215us
    + 1.13.28 Pavilion dv1664ea
    + 1.13.29 Pavilion dv2222la
    + 1.13.30 Pavilion dv2098ea
    + 1.13.31 Pavilion dv2104eu
    + 1.13.32 Pavilion dv2275ea
    + 1.13.33 Pavilion DV6000
    + 1.13.34 Pavilion DV6152
    + 1.13.35 Pavillion DV6226
    + 1.13.36 Pavilion DV9000
    + 1.13.37 Pavillion ZE4935
    + 1.13.38 HP Pavilion ZV6170us/ca
    + 1.13.39 HP Pavilion ZV6195
    + 1.13.40 HP Pavilion ZV6068EA
    + 1.13.41 HP Pavilion dv8218ea
    + 1.13.42 HP Pavilion (TX1220US)
    + 1.13.43 HP G5000
    + 1.13.44 Presario R4000
    + 1.13.45 Presario 1400
    + 1.13.46 Presario 2100
    + 1.13.47 Presario V2405
    + 1.13.48 Presario V2570n
    + 1.13.49 Presario V4000
    + 1.13.50 Presario V6410TU
    + 1.13.51 Omnibook 6100
    + 1.13.52 Compaq tc1100

    o 1.14 IBM
    + 1.14.1 Thinkpad A21m
    + 1.14.2 Thinkpad 600
    + 1.14.3 Thinkpad 600E
    + 1.14.4 R30
    + 1.14.5 R31
    + 1.14.6 T22
    + 1.14.7 T23
    + 1.14.8 T30
    + 1.14.9 T40
    + 1.14.10 T41
    + 1.14.11 T42
    + 1.14.12 T43
    + 1.14.13 T60
    + 1.14.14 T60p
    + 1.14.15 R50e
    + 1.14.16 X20
    + 1.14.17 X23
    + 1.14.18 X30
    + 1.14.19 X31
    + 1.14.20 X40
    + 1.14.21 Z61m
    + 1.14.22 R40
    + 1.14.23 Lenovo 3000 N200
    + 1.14.24 Lenovo R60
    + 1.14.25 Lenovo R61
    + 1.14.26 Lenovo Z61

    o 1.15 Itronix
    + 1.15.1 Go Book ix250

    o 1.16 Maxdata
    + 1.16.1 PRO 7000X

    o 1.17 Medion
    + 1.17.1 MD 95694
    + 1.17.2 MD 96400
    + 1.17.3 SIM 2000

    o 1.18 Olidata
    + 1.18.1 Theom CW 1300

    o 1.19 Packard-Bell
    + 1.19.1 Easynote w7200
    + 1.19.2 Easynote MZ35-V-065

    o 1.20 Panasonic
    + 1.20.1 Toughbook CF-29
    + 1.20.2 Toughbook CF-28
    + 1.20.3 Toughbook CF-M34

    o 1.21 Philips freevents
    + 1.21.1 x55

    o 1.22 SAMSUNG
    + 1.22.1 Q30
    + 1.22.2 X20
    + 1.22.3 R65

    o 1.23 Sony
    + 1.23.1 Vaio SZ-1 VP
    + 1.23.2 Vaio SZ-2 VP
    + 1.23.3 Vaio VGN-S1XP
    + 1.23.4 Vaio VGN-FE21M
    + 1.23.5 Vaio VGN-FE11H
    + 1.23.6 Vaio VGN-FS980
    + 1.23.7 Vaio PCG-FX340
    + 1.23.8 Vaio VGN-S360
    + 1.23.9 Vaio VGN-TX651/750P

    o 1.24 Targa (Lidl)
    + 1.24.1 Traveller 856WA MT34

    o 1.25 Toshiba
    + 1.25.1 Equium
    # 1.25.1.1 Equium A100
    # 1.25.1.2 Equium A60

    + 1.25.2 Portege
    # 1.25.2.1 Toshiba Portege 7000CT
    # 1.25.2.2 Portege 4010
    # 1.25.2.3 Portege M400

    + 1.25.3 Satellite
    # 1.25.3.1 Satellite A45-S150
    # 1.25.3.2 Satellite A100-811
    # 1.25.3.3 Satellite A100-VA1
    # 1.25.3.4 Satellite A105-S2236
    # 1.25.3.5 Satellite A105-S4034
    # 1.25.3.6 Satellite A105-S4094
    # 1.25.3.7 Satellite A135-S2276
    # 1.25.3.8 Satellite A135-S2356
    # 1.25.3.9 Satellite A135-S4527
    # 1.25.3.10 Satellite A200-12C2D
    # 1.25.3.11 Satellite A215-S4767
    # 1.25.3.12 Satellite M105-S3041
    # 1.25.3.13 Satellite A85-S107
    # 1.25.3.14 Satellite A- (incomplete model number)
    # 1.25.3.15 Satellite P105-S6197
    # 1.25.3.16 Satellite Pro A100
    # 1.25.3.17 Satellite Pro 460CDT
    # 1.25.3.18 Satellite Pro 4600
    # 1.25.3.19 Satellite Pro 6100
    # 1.25.3.20 Satellite A135-S2386
    # 1.25.3.21 Satellite U305-5077
    # 1.25.3.22 Satellite 2805-S301
    # 1.25.3.23 Satellite Pro 4600
    # 1.25.3.24 Satellite A70
    # 1.25.3.25 Satellite m105-s3064
    # 1.25.3.26 Satellite A110
    # 1.25.3.27 Satellite L10-236
    # 1.25.3.28 Satellite L20-182
    # 1.25.3.29 Satellite L30-113
    # 1.25.3.30 Satellite M30X
    # 1.25.3.31 Satellite S1800-804
    # 1.25.3.32 Satellite L35-S2366

    + 1.25.4 Tecra
    # 1.25.4.1 Tecra A7
    # 1.25.4.2 Tecra S1
    # 1.25.4.3 Tecra M2
    # 1.25.4.4 Tecra M5
    # 1.25.4.5 Tecra

     

    Subscribe in Bloglines Msn bot last visit powered by MyPagerank.Net Yahoo bot last visit powered by MyPagerank.Net
    I heart FeedBurner downtime checker The Ubuntu Counter Project - user number # 31290

     
    Twitter Delicious Facebook Digg Stumbleupon Favorites More

     
    Powered by TadPole
    FOG FLAMES