Ubuntu 9.10 Karmic Koala Release Party In Tehran

Hello :P

Ubuntu 9.10 Karmic Koala Release Party will be held in Tehran, Iran soon:

Ubuntu 9.10 Karmic Koala Release Party

Ubuntu 9.10 Karmic Koala Release Party

Date: Thursday, Nov 12, 2009 from 9 to 14
Location: Forum Conference martyr Ghandi, Opposite St. Hoveyze, above the intersection martyr Ghoddosi (Castle), Shariati St. – Tehran, Iran

More information

P.S.
Above is designed by Sedigheh Ahmadi.

I hope to see you in Party :D

  • Share/Bookmark

How to get special lines data from file (Linux)

If you want to get file’s head lines, you can use:
$ head FILE

If you want to get file’s footer lines, you can use:
$ tail FILE

If you want to print some line that they not in first part or last part of file, you can use:
$ more +num10 FILE | head -n20

The above command print from line 10 to 30 (20 lines) of FILE

  • Share/Bookmark

Ubuntu 8.10 release party held in Tehran, Iran

ubuntu logo
Hi All,

Ubuntu 8.10 Intrepid Ibex release party held in Tehran, Iran.

Iranian Ubuntu Team

Iranian Ubuntu Team

Ubuntu-ir Digest, Vol 9, Issue 1

Hiya,

The Iranian Local Community had their greatest ever Ubuntu Release Party in
Tehran with more than 100 attendee and celebrated Ubuntu-ir’s 2nd
anniversary!
The Iranian Team started their public work with Ubuntu 6.10 release and soon
became a big mature Open Source promoter team in the area and now with more
than 3000 users in forums and ~80 posts per day is a very fast growing
comunity.

We’ve had 8 Presentations in this release party. Ubuntu 8.10 features tour,
Kubuntu 8.10 features tour, Joomla CMS Introduction, Zekr project
Introduction, Desktop effects in Ubuntu & Kubuntu, Ubuntu Server
presentation, Linux Kernel comipation howto and finally the Iranian team
future plan and roadmap.

I would like to thank all contributers, all talkers, and Farhang Saraye
Rasane again for the conference room.
You guys all rock and did a great job, THANKS A LOT :-)

The whole Story, Photos and Presentations:
http://wiki.ubuntu.ir/IntrepidIbexReleaseParty

Cool figures ;-)
Ubuntu 7.04 Release Party: 15 attendee
Ubuntu 7.10 Release Party: 25 attendee
Ubuntu 8.04 Release Party: 50 attendee
Ubuntu 8.10 Release Party: 100 attendee
Ubuntu 9.04 Release Party: ???

Bests,

Yours Sincerely, Mehdi Hassanpour

Good luck

  • Share/Bookmark

Install Oracle Instant Client and PHP OCI8 module

If you want to connect to an Oracle database with PHP, you can use Oracle’s Instant Client and the oci8 module from pear.

Download the Basic and the SDK packages from oracle.com. At the time of this writing, the filenames are instantclient-basic.zip and instantclient-sdk.zip.

Unzip these files in a new directory, e.g. /opt/oracle/instantclient.

Code:

sudo su
mkdir -p /opt/oracle/instantclient
cd /opt/oracle/instantclient
unzip instantclient-basic.zip
unzip instantclient-sdk.zip
echo /opt/oracle/instantclient >> /etc/ld.so.conf
ldconfig

The previous two lines are supposed to create symlinks named libclntsh.so and libocci.so which we will need later. In my case these symlinks were not created by ldconfig, so I created them manually.

Code:

ln -s libclntsh.so.11.1 libclntsh.so
ln -s libocci.so.11.1 libocci.so

In the next step we will download the oci8 module with pear. Pear is in the php-pear package.

Code:

apt-get install php-pear

Also, you need php5-dev and build-essential packages for compiling oci8 module.

Code:

apt-get install php-pear php5-dev build-essential

“Normally” we should be able to just use pecl install oci8 now, but apparently pear is not able to figure out where the instantclient libraries are. So we will just download the oci8 module and build it on our own.

Code:

mkdir -p /usr/local/src
cd /usr/local/src
pecl download oci8
tar xzf oci8-1.3.4.tgz
cd oci8-1.3.4
phpize
./configure --with-oci8=shared,instantclient,/opt/oracle/instantclient
make
make install

The oci8-1.3.4.tgz filename will of course change for newer releases.

To enable the oci8 module in the php.ini (/etc/php5/apache2/php.ini and /etc/php5/cli/php.ini), add a line
Code:

extension=oci8.so

(put this line after the examples starting with ;extension).

Now stop and start Apache. You should see the oci8 module in the output of phpinfo().

Good luck

  • Share/Bookmark

Hardy Party held in Tehran, Iran

Ubuntu
Hi All,

Ubuntu 8.04 Hardy Heron release party held in Tehran, Iran.

From Ubuntu 8.04 Hardy Heron Release Party

Ubuntu-ir Digest, Vol 8, Issue 3:

Hi all,

Yesterday the Iranian Team had a great hardy party held in Tehran. Although
it was the uni. exams time/date more than 50 attended the party and made a
great day for the Team.

We’ve had 5 presentation: Ubutnu Installation, Kubuntu 3.5 Tour, KDE 4
features and Tour, Desktop Effects in Ubuntu, Ubuntu Overview and Hardy
Tour, Iranian Team report and future plan.
We had also K/ED/Ubuntu CD, DVD, sticker, MUGs distribution.

I hope we can plan for an Install Fest in near future, since we really need
more face to face talk and free chatting.

And I would like to thank all contributers, all talkers, and Farhang Saraye
Rasane for the conference room. You guys all rock and did a great job,
THANKS A LOT :-)

Shots:
http://picasaweb.google.com/saeid.zebardast/Ubuntu804HardyHeronReleaseParty
The whole story and Presentations:
http://wiki.ubuntu-ir.org/Meetings/13870302

Bests,
Mehdi Hassanpour

Good luck

  • Share/Bookmark