Import RF sources as eclipse projects in JBoss Tools

    To import RF as eclipse project into workspace you need to do following steps
  • Download RF from SVN repository
    svn co http://anonsvn.jboss.org/repos/richfaces/root 
  • Then install library
    cd root
    mvn install -Dmaven.test.skip=true -P components,trunk 
  • Then add sources and make projects eclipse projects
    mvn eclipse:eclipse -Dmaven.test.skip=true -P components,trunk 
  • Import projects from root folder into eclipse

How to add svn ignore property to folder

    If you want add some folder to svn ignore, you should follow next steps
  • First check status of folder
    svn stat <folder_name>
    ?       test
  • Next add svn ignore to folder
    svn propset svn:ignore target <folder_name>
    svn ci <folder_name> -m"Folder has been marked for ignoring"
  • Check folder status again
    svn stat <folder_name>
    #nothing should be printed

How to determinate version of glibc library under Ubuntu Linux

    To determinate glibc version you can by following steps:
  • #1 at any distributive you can cal library as a programm
    /lib/libc.so.6 

    Result:
    GNU C Library (EGLIBC) stable release version 2.10.1, by Roland McGrath et al.
    Copyright (C) 2009 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
    PARTICULAR PURPOSE.
    Compiled by GNU CC version 4.4.1.
    Compiled on a Linux >>2.6.24-23-server<< system on 2009-10-07.
    Available extensions:

Installation mozilla thunderbird 3.0 mail client on Ubuntu 9.10(Karmic Koala)

    For installation mozilla thunderbird 3.0 mail client on Ubuntu you need to do following steps
  • Add mozilla daily repository to you sources list
    gksudo gedit /etc/apt/sources.list
    #and add following lines
    deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu karmic main
    deb-src http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu karmic main

    If you use another dist of ubuntu, change karmic to jaunty, hardy, karmic and intrepid
  • Import GPG key
     

Connect to openvpn server using Linux Ubuntu 9.10(Karmic Koala)

    Here steps for conection to vpn server
  • Ininitialy install open vpn client for ubuntu
    sudo apt-get install openvpn
  • Then run following command from terminal
    sudo openvpn openvpn-config.ovpn

    Have fun!

Mount ftp share under Ubuntu linux

    To mount a ftp share under ubuntu linux, you need perfom following actions
  • install ftp file system support
    sudo apt-get install curlftpfs
  • run mount command
    sudo curlftpfs -o allow_other,iocharset=utf8,codepage=cp1251  ftp://hudson.eltegra.by/common /home/mareshkau/Desktop/Share/ftp/

Recursively Remove .svn Directories in Linux

Recursively Remove .svn Directories in Linux

rm -rf `find . -type d -name .svn`

How to enable compiz fusion desktop extra effects in ubuntu 9.10 karmic koala

To enable extra effects for ubuntu you first should install following packages

sudo apt-get install compizconfig-settings-manager compiz-fusion-plugins-extra compiz-fusion-plugins-main compiz-plugins emerald

Then go to Preferences->CompizSettings Manager and enable effects that you want.

Installation google chrome browser on Ubuntu 9.10(Karmic Koala)

    To install google chrome browser on Ubuntu 9.10 you need to do following:
  • Add repository with chromium browser
    sudo gedit /etc/apt/sources.list
    #add following lines
    deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main
    deb-src http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main
  • Import GPG key
    sudo add-apt-repository ppa:chromium-daily/ppa
  • Update sources list and install chrome browser
    sudo apt-get update
    sudo apt-get install chromium-browser

Eclipse buttons, some shortcuts not woks under Ubuntu 9.10(Karmic Koala)

Problem
Some buttons not react on mouse clicks under Ubuntu 9.10, shortcust like CTRL+SHIFT+T not works to, Updates not works for eclipse.
Solution
set following environment variable

export GDK_NATIVE_WINDOWS=1
#and than run eclipse
./eclipse

You should run eclipse at the same terminal window where set GDK_NATIVE_WINDOWS=1
Useful links
Details of problem

Syndicate content