Sunday, August 29, 2010
PCI Diagnostics Card
http://www.uxd.com/phdpci2.shtml
Wednesday, August 25, 2010
TV Tuners
Looks like Hauppauge is one card, that has good Linux support.
PVR-500- Two Analog Tuners, two MPEG encoders
http://www.hauppauge.com/images/pvr500_b.jpg
------------------------------------------------------------------------
HVR-2200 - Either Dual Analog or Dual DVB-T - It is considered to be the successor of PVR-500
Review1
Review2
Installation and stuff
http://oss.casalogic.dk/doku.php/hal10k:hvr2200
------------------------------------------------------------------------
Maybe good site to search
http://www.newmagic.com.au/
PVR-500- Two Analog Tuners, two MPEG encoders
http://www.hauppauge.com/images/pvr500_b.jpg
------------------------------------------------------------------------
HVR-2200 - Either Dual Analog or Dual DVB-T - It is considered to be the successor of PVR-500
Review1
Review2
Installation and stuff
http://oss.casalogic.dk/doku.php/hal10k:hvr2200
------------------------------------------------------------------------
Maybe good site to search
http://www.newmagic.com.au/
Understanding x86, OSs
http://www.brokenthorn.com/Resources/OSDevIndex.html
http://en.skelix.org/skelixos/
The lost Skelix OS tutorial's Mirror
(1-page mirror, IE compatible, no rar files, better than nothing)
If anybody has those rar files, please share!
http://skelixos.cyberine.com/
Daniel's Blog
http://himmele.blogspot.com/2011/07/build-your-own-operating-system.html
German Tutorial
http://www.fh-zwickau.de/doc/prmo/pmtutor/text/index.htm
http://en.skelix.org/skelixos/
The lost Skelix OS tutorial's Mirror
(1-page mirror, IE compatible, no rar files, better than nothing)
If anybody has those rar files, please share!
http://skelixos.cyberine.com/
Daniel's Blog
http://himmele.blogspot.com/2011/07/build-your-own-operating-system.html
German Tutorial
http://www.fh-zwickau.de/doc/prmo/pmtutor/text/index.htm
Saturday, August 21, 2010
Cisco Information
The collection
CISCO Perfect CCNA/CCNP Lab 2950 2610XM 2924 2610 ADSL
WICs for 2500 series routers
http://www.cisco.com/en/US/products/hw/routers/ps274/products_tech_note09186a00800b1155.shtml
Cisco 2610 Series info
http://www.cisco.com/en/US/products/hw/routers/ps259/prod_technical_reference09186a00800a8535.html
Difference between 2600 & 2600XM
Source : http://www.velocityreviews.com/forums/t379644-2600-vs-2600xm.html
IOS images
http://www.mmnt.ru/int/get?st=c2600&cn=&in=f
Setting up all the routers to terminal servers
http://cisco.chinaitlab.com/CCIE/9957.html
CISCO Perfect CCNA/CCNP Lab 2950 2610XM 2924 2610 ADSL
WICs for 2500 series routers
http://www.cisco.com/en/US/products/hw/routers/ps274/products_tech_note09186a00800b1155.shtml
Cisco 2610 Series info
http://www.cisco.com/en/US/products/hw/routers/ps259/prod_technical_reference09186a00800a8535.html
Difference between 2600 & 2600XM
Source : http://www.velocityreviews.com/forums/t379644-2600-vs-2600xm.html
2600 vs 2600xm The recommended replacement products are the Cisco 2600XM routers introduced in May 2002. Customers are encouraged to migrate to the Cisco 2600XM models, which offer the same modular design and flexibility as the Traditional Cisco 2600 routers, but in addition offer more functionality for the same list price! In direct comparison, the Cisco 2600XMs provide more value and functionality by providing the following: ..Up to 33% performance increase for processor-intensive services ..Increased default memory ..Increased maximum flash memory to 48MB ..Increased maximum SDRAM memory to 128MB ..Integrated 10/100 Fast Ethernet ports on all Cisco 2600XM models ..Mainline IOS with the support of 12.1(14) and 12.2(12), in addition to 12.2(T1 ..Same feature and module support as the Traditional Cisco 2600 models ..Cisco 2650XM and Cisco 2651XM models supported on a 12.1 mainline (12.1.14) ..Enhanced security and broadband 2600XM product bundles for lower solution costs and easier ordering (worldwide announcement made on August 12, 2002) In addition to increased functionality, the new Cisco 2600XM routers provide the same platform applications and functionality as the current traditional Cisco 2600s: ..A DC and RPS version of each model ..NEBs Level 3 ..Same Module support, including Network Modules, WAN Interface Cards (WIC) and Advanced Integration Modules (AIM) ..Same chassis dimensions (1RU), power, environmental and regulator specifications | ||
http://www.mmnt.ru/int/get?st=c2600&cn=&in=f
Setting up all the routers to terminal servers
http://cisco.chinaitlab.com/CCIE/9957.html
Sunday, August 01, 2010
Compile GNU C program with Debuggin Symbols & Map files
int bbbbbb(){
int* x=0x1414512;
int y=0;
y=*x;
}
int aaaaaa(){
bbbbbb();
}
int main(){
aaaaaa();
}
$ gcc -v -g -o crashme.exe crashme.c -Xlinker -Map=crashme.map ; objdump -d crashme.exe > crashme.exe.objdump
int* x=0x1414512;
int y=0;
y=*x;
}
int aaaaaa(){
bbbbbb();
}
int main(){
aaaaaa();
}
$ gcc -v -g -o crashme.exe crashme.c -Xlinker -Map=crashme.map ; objdump -d crashme.exe > crashme.exe.objdump