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 try " cat …
Read Moressh -qTfnN -D LocalPort remotehost All the added options are for a ssh session that's used for tunneling. -q :- be very quite, we are acting only as a tunnel. -T :- Do not allocate a pseudo tty, we are only acting a tunnel. -f :- move the ssh process to background, as we don't want to interact with this ssh session …
Read MoreClose Notes Double click c:\notes\notes.ini to open it. Add one new line "Display_font_adjustment=n" after the third line in notes.ini file. "n" is the number.It can be 1or 2 or 3....and the font will be larger with the number increasing. Launch note
Read MoreBuild c/c++ project always need third party library on linux, such as gtk+, glib. Writing their absolute path in Makefile is not flexible way. You can use pkg-config instead of the absolute path. Below is code snippet: GTK_LIB=$(shell pkg-config --libs gtk+-2.0) GTK_INC=$(shell pkg-config --cflags gtk+-2.0) gcc -o …
Read More