Thursday, December 25, 2014

Friday, May 16, 2014

Dropbox in kubuntu

1- get the binary
   32 bit
   64 bit

2 - go the download folder,extract and move to home
  cd Downloads
  tar xf dropbox-lnx*.tar.gz
  mv .dropbox-dist/ ~/
  
 3 - link auto start
       ln -s ~/.dropbox-dist/dropboxd ~/.kde/Autostart/       
4 - manually start
~/.dropbox-dist/dropboxd

Monday, July 29, 2013

Apache tomcat self-signed certificate using java keytool

1.  open terminal and type below
   keytool -genkey -alias tomcat -keyalg RSA -keystore <filename>
 2. key in the parameter

3. configuring tomcat 
    
    
    <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
               maxThreads="150" scheme="https" secure="true"
               keystoreFile="<filename>"
               keystorePass="<password>"
               clientAuth="false" sslProtocol="TLS" />
    


Monday, June 24, 2013

Java 1.5

1. Get the java sdk from http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase5-419410.html
2. extract it and move " /usr/lib/jvm"
3. then do
sudo update-alternatives --config java

if they is one alternative , do this :
sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/java-5-oracle/bin/java" 2
sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/lib/jvm/java-5-oracle/bin/javac" 2
sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/lib/jvm/ava-5-oracle/bin/javaws" 2



 

Thursday, March 21, 2013

HTML CSS


<a>
display the tip on the link
<a href="[address]" title="[tooltip tip]">[label]</a>  
 open link on new window
<a target="_blank" href="[address]" title="[tooltip tip]">[label]</a> 
 open link on the location
<a href="[address]#[location]" title="[tooltip tip]">[label]</a>