if you want to share internet connection using ICS from windows 7 to another windows 7 ICS connection, you maybe receive ip 192.168.137.1 is being used by other connection.
you can change this ip anyway into other address to prevent conflict. there are some registry hack available from this location
http://www.windowsnetworking.com/kbase/WindowsTips/WindowsVista/RegistryTips/RegistryHacks/ChangingtheDefaultIPAddressofICSinVista.html
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet\Services\SharedAccess\Parameters
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\SharedAccess\Parameters
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\SharedAccess\Parameters
change into different IP address to enable internet sharing from WLan to Ethernet. this works for me! :)
Monday, June 28, 2010
Friday, June 18, 2010
Amazing : google image search with colors
Monday, June 14, 2010
yum and apt at RH9 machine
after a few headache i found this to install yum and apt in my rh9 machine
download and install rpm here and it's works!
lastly with root# type yum update and tadaa.. :)
SQL Inner Join
SELECT t1.username AS Pengguna, t2.username AS Upline
FROM reseller t1
INNER JOIN reseller t2 ON t2.user_id = t1.parentID
LIMIT 0 , 30
FROM reseller t1
INNER JOIN reseller t2 ON t2.user_id = t1.parentID
LIMIT 0 , 30
SELECT column_list FROM table_A A INNER JOIN table_A B ON A.column_name1 = B.column_name2…. WHERE row conditions
Subscribe to:
Posts (Atom)