How to mount ntfs/fat32 external USB drive to CentOS/Fedora/RHEL

| Monday, April 30, 2012

First you need ntfs mount. For that you need to install two packages.
This gets your ntfs-3g

wget http://marush.com/wp-content/uploads/2009/03/ntfs-3g-200921-el5i686.rpm
Then run to install ntfs-3g
rpm -ihv  ntfs-3g-200921-el5i686.rpm
Second get this fuse (I do not know why. Without fuse you can not mount ntfs-3g. Please go through fuse sourceforge document.)
wget http://pkgs.fedoraproject.org/repo/pkgs/fuse/fuse-2.6.0.tar.gz/fa6c7b07a0be3a3e30d6cf3a6bad5817/fuse-2.6.0.tar.gz

Read more >>>

New module to choose the fiscal position from the country

| Wednesday, April 4, 2012

In standard OpenERP, you can choose a fiscal position for every partner, and your choice will be used when you select a Partner in an Invoice or Sale Order. In many situations it’s convenient to set a default position for all partners belonging to a specific country.
he module we developed is called account_fiscal_position_country, and can be found on apps.openerp.com.

Configuration
Go to Sales > Configuration > Address Book > Localisation > Countries.
Choose a country, and enter the default Fiscal Position for that country.
Usage
Done that, when you create a Sale or Purchase Invoice and select a Partner, the Fiscal Position you defined for the country of the Partner will be selected. Note that the standard OpenERP behaviour is still defined: if you set a specific Fiscal Position for that Partner, that one (and not the one from the Country) will be used.
Sale Orders
To get the same functionality in Sale Orders, install the module account_fiscal_position_country_sale as well. The modules are kept separate to minimize dependencies.
Of course, feedback is welcome! You can use the bug tracker in launchpad for that:
source:http://adf.ly/4i5KS

Read more >>>

Installasi postgresql 9.0 ubuntu

|

hello …. im here to shared again about installation postgresql :D this is new version stable :D
This is a very quick and painless process. If you have not done so already, make your life easier by installing python-software-properties:



$sudo apt-get purge postgresql*
$sudo apt-get update
next :
$sudo apt-get install python-software-properties
Next up is adding the backports repo and updating apt:
$sudo add-apt-repository ppa:pitti/postgresql && sudo apt-get update
UPDATE: In the comments, Jason Froebe points out that if you already have an earlier version of PostgreSQL installed, you can just upgrade it:
$ sudo apt-get upgrade
Finally install postgresql-9.0:
$ sudo apt-get install postgresql-9.0 libpq-dev
The libpq-dev package is for compiling wrappers/clients against libpq.
There you’re done!
NOTE:
Default config directory is: /etc/postgresql/9.0/main
Default data directory is: /var/lib/postgresql/9.0/main
Cheers :D
Source : http://adf.ly/4i7Tt

Read more >>>