Elvis Woo

To whom be glory forever and ever. Amen.

Skip to: Content | Sidebar | Footer



Month: January, 2008

Improve RDP Speed on Windows Vista.

31 January, 2008 (09:45) | Windows

Run cmd window in administrator mode
the command is:
netsh interface tcp set global rss=disabled
netsh interface tcp set global autotuninglevel=disabled
**************************************************

Hide the Apache Software Version

12 January, 2008 (15:08) | Linux

Hide the apache software version and OS information.
………………
# ServerTokens
# This directive configures what you return as the Server HTTP response
# Header. The default is ‘Full’ which sends information about the OS-Type
# and compiled in modules.
# Set to one of: Full | OS | Minor | Minimal | Major | Prod
# where Full conveys the most [...]

Bash Proxy Settings

11 January, 2008 (22:53) | Linux

export http_proxy=http://proxy_ip_address:port
if you want to save this setting
# vi /etc/profile
add " http_proxy=http://proxy_ip_address:port"
source /etc/profile
**************************************************

Using scp Transfer Files between Linux.

6 January, 2008 (09:55) | Linux

transfer file:
scp local_file_name user@host:/path/to/files
transfer folder:
scp -r local_folder user@host:/path/to/files
**************************************************