Days ago I updated my p2 replication tool. It's easier to install it in your Eclipse.
A new component named 'Eclipse marketplace' is added into Eclipse SDK since Helios, which is an application store for Eclipse. People could be easy to install third party plug-ins into their Eclipse.You can launch marketplace via …
Read More- 1. tcpdump
tcpdump -n port 80 -i eth0|lo
monitor all package transferred on 80 port on the network interface eth0/lo
2. netstat
netstat -anp|grep java
trace all network traffic on the process named java
netstat -anp|grep 128.224.159.xxx
trace all network traffic on the host whose ip address is 128.224.159.xxx
3. …
Read More Using -exec command like below, need add escape character for semicolon that separated two commands in shell
1find directory/ -type d -exec chmod a+x {} \\;
Feb 24, 2010 - update:
1find . -maxdepth 4 -type d -name 'g-vxworks' 2>/dev/null -print
Jan. 7, 2024 - update: You might see
No such file or …
Read More- I suffered p2 installation failed on the configure parse. Becase I try to add vm arguments for my application.
For example, I added '-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8272' in the product configuration.
P2 will fail when parsing the argument, because it contains ':' and ',' that should be …
Read More - mount -t cifs -o username=xxx,password=xxx,workgroup=xx,iocharset=utf8 //share.domain/folder /localfolder
Read More public class NameRuleTest { @Rule public TestName name = new TestName(); @Test public void testA() { assertEquals("testA", name.getMethodName()); } @Test public void testB() { assertEquals("testB", name.getMethodName()); }}
Read More- P2 install wizard firstly query the repository to find out the root installable unit(as well as top installable). Then p2 recalculate the dependency and try to search the requirements in all available repositories after user submits their installation request. Go to the license agreement page if all the dependencies …
Read More - Setup SSH without password.
a) execute "ssh-keygen -t rsa" under your linux/unix login to get the RSA keys.
(press Enter for all)
You will get 2 files uner ~/.ssh/, id_rsa and id_rsa.pub
b) Put the public key id_rsa.pub to your remote host: ~/.ssh/authorized_keys If the remote host share the same nfs, just …
Read More