username/passwd...
bin
hash
put "dd if=/dev/zero bs=32k count=1000" /dev/null
This blog is pirated,dilluted,contaminated & most of all no originality
According to Sommer Owens, manager of IT contract division at Robert Walters Hong Kong, IT salaries in the Chinese territory have been holding steady, but some employees are prepared to lower their pay expectations.
"Candidates who have been caught up in corporate restructuring are willing to accept a lower salary than they were previously getting to stay competitive in...[the] market," Owens said in an e-mail interview.
However, E. Balaji, CEO of India-based recruitment agency Ma Foi Management Consultants, noted that while it is true the bargaining power has swung in favor of employers, the expanding workers pool and lowering salaries relate more to generic IT skills.
A year ago, Balaji explained in an e-mail, most prospective candidates had more than one job offer and candidates were aggressively negotiating salaries and benefits, thereby pushing up the cost of quality talent. "With the current slowdown, this has subsided," he said, adding that the economic downturn has provided cash-rich companies with the opportunity to recruit quality talent at optimal cost.
"[However], for specific levels of expertise and niche skills, potential candidates in a company are generally 'ring-fenced'. Hopes of attracting them at less attractive terms may not materialize," he noted.
Yeo Gek Cheng, director of IT and telecommunications at Hudson Singapore, said the perception that employers now have a wider pool of candidates from which to choose "cannot be further from the truth", particularly for mid- to senior hires who are strong in their field.
"Those who are gainfully employed are unwilling to move due to the perceived risk of changing jobs now," Yeo told ZDNet Asia in an e-mail, adding that employees' annual salary increments have also remained unchanged.
While businesses still face a challenge recruiting candidates, this is less of an issue now as there are fewer job offers available to IT professionals, she said. Yeo noted that the lack of candidates in Asia cannot be resolved simply by an economic downturn. "What is a tight labor pool remains tight," she added.
Agreeing, Owens said some IT skills are still in short supply.
by Sol E. Solomon, ZDNet Asia
read more -->http://www.zdnetasia.com/news/business/0,39044229,62054088,00.htm
PROBLEM
Terminate a socket without terminating a process
RESOLUTION
Refer to man page on ndd:
#man 1m ndd
ndd -h supported (will display supported ndd parameters)
ndd -h unsupported (will display unsupported ndd parameters)
Here is an example using the tcp_discon parameter:
#ndd -get /dev/tcp tcp_discon number
NOTE: This number is obtained by running the following command:
#ndd -get /dev/tcp tcp_status
The tcp_status will give you a long list of connected sockets. Find the one
that needs to be killed (use netstat -a (if you have the name of the
host, use the -n option if you have the IP of the host you are looking
for) and then compare to ouput of the -get command below to find the
hostname or the ip). Then use the number on the far left of the output
(LEADING ZEROS must be removed from the number) and prepend it with a 0x to
show its hex.
Example of commands:
* #ndd -get /dev/tcp tcp_status
* #ndd -set /dev/tcp tcp_discon 0x010203404
If using the tcp_discon_by_addr variable convert the ip address into the
hexadecimal representation.
#ndd -set /dev/tcp tcp_discon_by_addr [hex number]
Where '[hex number]' is the one that needs to be killed.
:ciao..
30 18 * * * rm /home/someuser/tmp/*