Sabtu, 26 Desember 2009

Install Google Earth from linux

Install Google Earth from linux

From the menu bar, choose Applications - Accessories -Terminal
This will open a command line terminal.
Type each command as follows, pressing the Enter key after the line.

cd Path_Where_Google_Earth_bin_file_is_saved
sudo sh Google_Earth_bin_file

NOTE: sudo will ask for your password, Enter it and press Enter
This will install Google Earth or give any any error messages in the terminal
After the install has finished you can close the terminal.
Now you know how to use a terminal, you are on the way to becoming a Linux Power User

Rabu, 23 Desember 2009

Cleaning head epson from linux

Epson head cleaner and other printer tools?
You'll need either "escputil" or "mtink", both are in Synaptic.

The mtink utility doesn't work with our 825, it could be usable by normal people if it supports your printer, although you have to be a geek to run it from the command line as no menu entries are setup by synaptic.


Epson check ink levels:
escputil -r /dev/usblp0 -s

Epson print nozzle check:
escputil -r /dev/usblp0 -n

Epson clean:
escputil -r /dev/usblp0 -c

Of course the -r parameter will depend on how your printer is connected

How non-geeks are supposed to make any use of this I'll never fathom.

There needs to be buttons in the printer properties box to launch these commands and display the output so normal people can use Epson printers effectively.

Rabu, 16 Desember 2009

Install CCL Billing

CCL Billing Install (PCLINUXOS)
——————-
#su
#mkdir /root/master
#cd /root/master

|Install Paket2 Pendukung|

#apt-get install libsqlite3_0 libsqlite3_0-devel libsqlite3_0-static-devel libfox1.4 libfox1.4-devel libopenssl0.9.7 libopenssl0.9.7-devel libopenssl0.9.7-static-devel

|CCL Billing Source Code|
wget http://optusnet.dl.sourceforge.net/sourceforge/ccl/libccls-0.7.0.tar.bz2
wget http://optusnet.dl.sourceforge.net/sourceforge/ccl/libcclc-0.7.0.tar.bz2
wget http://optusnet.dl.sourceforge.net/sourceforge/ccl/cclfox-0.7.0.tar.bz2
wget http://optusnet.dl.sourceforge.net/sourceforge/ccl/cclcfox-0.7.0.tar.bz2

|install libcclc|
#tar xvfj libcclc-0.7.0.tar.bz2
#cd cd libcclc-0.7.0
#./configure
#make && make install

|install libccls|
#tar xvfj libccls-0.7.0.tar.bz2
#cd libccls-0.7.0
#./configure
#make && make install

|install cclcfox|
#tar xvfk cclcfox-0.7.0.tar.bz2
#cd cclcfox-0.7.0
#./configure
#make && make install

|install cclfox|
#tar xvfj cclfox-0.7.0.tar.bz2
#cd cclfox-0.7.0
#./configure
#make && make install

Edit File /etc/ld.so.conf
Tambahkan 2 Baris Berikut
/usr/lib
/usr/local/lib

Simpan, jalankan perintah
#ldconfig

Filed under: LTSP


Tambahan informasi :

Cafe Con Leche actually is a library project that intends to make the development of internet cafe programs easier, it consists of two library : libccls is used to make the server part, and libcclc is used to make the client. But The developers also made a GPL version Billing based on these library called CCLFox.

CCL is very popular here in Indonesia where Internet Cafes are starting to turn to Free Open Source Operating System since Microsoft and the Police starts sweeping internet cafes for illegal use of Microsoft Windows. But nonetheless it’s hard to find a How to on installing and using libCCL and CCLfox, especially on Ubuntu, I’ve done some googling last night and didn’t find anything satisfying. I’ve found some very good reference tough, like the one one linux.or.id and at Mr.Handri’s Blog.This How To is actually based on Linux Mint 3.0 but i think it’ll work just fine on Fiesty and you can download CCL here.

==Common Installation==

Both side of the application (client & server) has to meet their depdencies, since this is not a debian package, we have to install the dependencies manually. CCL depdencies are

* sqlite3
* glib2.0
* libfox1.4
* openssl

so on both computer (clien & server) run these command :

$ sudo apt-get install sqlite3 libsqlite3-dev

$ sudo apt-get install libfox1.4 libfox1.4-dev

$ sudo apt-get install libglib2.0-dev

$ sudo apt-get install libssl-dev

Don’t forget the build essentials for compiling from source :

$sudo apt-get install build-essential

Then edit your /etc/ld.so.conf file with :

$gksudo gedit /etc/ld.so.conf

and add these lines :

/usr/lib
/usr/local/lib

Then execute this :

$sudo ldconfig

== Billing Server ==

for the server side you’ll need these to files :

cclfox-0.7.0.tar.bz2
libccls-0.7.0.tar.bz2

Put these files on your home folder an do these steps :

$tar -xjvf libccls-0.7.0.tar.bz2
$cd libccls-0.7.0
$./configure
$make
$sudo make install
$cd ..
$tar -xjvf cclfox-0.7.0.tar.bz2
$cd cclfox-0.7.0
$./configure
$make
$sudo make install

Then create a launcher on your desktop and add :

cclfox -nossl

on the “command” text box

== Billing Client ==

for the server side you’ll need these to files :

cclcfox-0.7.0.tar.bz2
libcclc-0.7.0.tar.bz2

Put these files on your home folder an do these steps :

$tar -xjvf libcclc-0.7.0.tar.bz2
$cd libcclc-0.7.0
$./configure
$make
$sudo make install
$cd ..
$tar -xjvf cclcfox-0.7.0.tar.bz2
$cd cclcfox-0.7.0
$./configure
$make
$sudo make install

Then create a launcher on your desktop and add :

cclcfox -host -name -nossl

on the “command” text box

That’s about it! Now my internet cafe is 100% sugar *M$* free!

Trouble Shooting :

this errors bellow usually happens because we have installed the depdencies but we didn’t installed the dev of the library that is used for compiling the CCL from source :

1. configure: error: please install openssl
cure : $sudo apt-get install libssl-dev
2. configure: error: please install sqlite3
cure : $sudo apt-get install libsqlite3-dev
3. configure: error: please install glib
cure : $sudo apt-get install libglib2.0-dev
4. configure: error: please install fox
cure : $sudo apt-get install libfox1.4-dev
5. configure: error: installation or configuration problem: C++ compiler cannot create executables.
cure :$sudo apt-get install build-essential

If you find any error please let me know, and forgive my english, it’s getting rusty :p

Freedom!

Free Press Release.

product or website you want quickly recognized by everyone in the world?
with the ability and experience of Free Press Release as well as with our extensive network, products or your website can quickly appear in the top rankings in search engines like Google are already known by everyone in the world.
with features and options are varied and tailored to your needs, Free Press Release provides flexibility for you to promote your product or website.
many of our clients who have tried our services and all provide ratings
Good for Free Press Release.
Let's wait and let alone the product you want to quickly website known world, let's list for the Free Press Release. we are ready to serve you quickly.

Free Press Release Content is very informative especially for beginners who want to know about
Free Press Release, with a FAQ menu, allows beginners who want to know more about the Free Press Release.
besides that, if there are users who are interested in Free Press Release, users stay
click feature & pricing, allowing users to stay choose which features to use.
to convince potential users, Free Press Release also provides the member testmonial Free Press Release. this will increase the attractiveness for prospective users who would use the service Free Press Release for the media promotion of products or websites.

Rabu, 09 Desember 2009

Yahoo In molester profitable Tiger Woods


"The affair golf idol Tiger Woods has become an online gift, especially for Yahoo," said Yahoo Chief Executive Carol Bartz.

"God bless Tiger," Bartz said during a discussion of user traffic and Yahoo ads on the conference Global Media & Communications, UBS Investment Bank.

"This week we can raise a big story, the main page, news, sports, gossip. Molester Tiger Woods is better than Michael Jackson because it was difficult to put ads next to a cemetery," he added.

Woods has become a media storm in adulterous affairs. The furor broke out when he crashed his car last November 27 outside his home in Florida where he lives with his wife Elin, a former Swedish model, and their two children.

Woods does not give a statement to the police about the accident and he failed to stifle the media speculation.

He cited as an argument to harm his wife about the affair with the owner of the New York nightclub Rachel Uchitel


Selasa, 08 Desember 2009

Print to PDF using cups-pdf

I have been looking for a solution to print any file to pdf using a pdf printer driver.

cups-pdf is the package I was looking for apparently. But unfortunately, this takes just a little setting up.

Install cups-pdf by using:
$sudo apt-get install cups-pdf

Edit /etc/cups/cupsd.conf and change the line that says:
RunAsUser Yes
to
RunAsUser No

Restart cupsys:
$sudo /etc/init.d/cupsys restart

Add a new printer (System->Administration->Printing) selecting the “Local Printer” “PDF Printer” option. In the next step choose “Generic Printer” and then used the “Postscript Color Printer (Ver 3)” driver.

Now you should be able to print to pdf by selecting the newly setup printer.

Cribs:
1) The output .pdf files are stored in your “Home” directory. I can’t find a way to change this output directory to something of my liking
2) The output files are named with pre-defined names (job_8-untitled_document.pdf is an example). It would have been nice to select a name while printing.
3) One shouldn’t have to edit the cupsd.conf file to enable printing! (I found that I might have to edit the configuration file by visiting the homepage of the package, and trying out what I did). At the very least, the README.Debian file for the package should have informed me of the need to edit the configuration file.

Shortcut :
Ubuntu :
Go to menu System-->Administration-->Synaptic Package Manager. and type "cups-pdf" from quick search. if show it, please check and apply.
if success, please open printer manager, you can see "pdf printer" from printer manager

------------------------------ good luck ----------------------------------------------------

Install Driver For Printer Epson Series TX111

Before install driver printer Epson TX111, please off printer epson TX111, and please following step below as :
1. Install Library tiff and png with command :
$ sudo apt-get install libtiff4 libpng2
2. Download driver Epson TX 111 with address : http://www.avasys.jp/lx-bin2/linux_e/spc/DL1.do
3. into root privilage and extract file you have download.
$ su
$ sudo bash
# tar xfz pips-snx110-debian4.0-3.7.0-CG.tgz
4. Execute the extracted file by clicking it from within the file manager
or with the following command. Always install the files using root privileges
# ./pips-snx110-debian4.0-3.7.0-CG.install
5. on your printer, and then screen show choice printer for epson TX111, and you can choice
Epson TX 111 or TX 109. following on the screen. if finish, please check print.

----------------------- Good Luck -----------------------------------------------



Sebelum menginstall driver TX 111, matikan dahulu printer epson TX111

1. Install lib tiff dan png dengan perintah :
$ sudo apt-get install libtiff4 libpng2
2. Download Driver Epson TX 111 di http://www.avasys.jp/lx-bin2/linux_e/spc/DL1.do
3. masuk ke root privilage dan extract file yang sudah di download tadi
$ su
$ sudo bash
# tar xfz pips-snx110-debian4.0-3.7.0-CG.tgz
4. eksekusi file yang sudah di extract tadi
# ./pips-snx110-debian4.0-3.7.0-CG.install
5.kemudian nyalakan printer Driver TX 111, maka dilayar akan menampilkan pilihan printer, pilih
printer TX111 atau TX 109. setelah itu finish. untuk mengetest, klik tombol test print

Installing VirtualBox 3.0 On An Ubuntu 9.04 Desktop

This tutorial shows how you can install Sun VirtualBox 3.0 (released on June 30, 2009) on an Ubuntu 9.04 desktop. With VirtualBox you can create and run guest operating systems ("virtual machines") such as Linux and Windows under a host operating system. There are two ways of installing VirtualBox: from precompiled binaries that are available for some distributions and come under the PUEL license, and from the sources that are released under the GPL. This article will show how to set up VirtualBox 3.0 from the precompiled binaries.

As of version 2.0 VirtualBox supports 32 and 64bit host and guest operating systems (if you want to install 64bit guests your processor must support hardware virtualization and, of course, the host operating system must be 64bit as well).

This document comes without warranty of any kind! I want to say that this is not the only way of setting up such a system. There are many ways of achieving this goal but this is the way I take. I do not issue any guarantee that this will work for you!

Installing VirtualBox From Precompiled Binaries

Open /etc/apt/sources.list...

sudo gedit /etc/apt/sources.list

... and add the VirtualBox repository to it:

[...]
deb http://download.virtualbox.org/virtualbox/debian jaunty non-free

Then add the public key of the VirtualBox repository to your system...

wget -q http://download.virtualbox.org/virtualbox/debian/sun_vbox.asc -O- | sudo apt-key add -

... and update the package database:

sudo aptitude update

Afterwards you can install VirtualBox 3.0 as follows:

sudo aptitude install virtualbox-3.0 dkms

In the Create Launcher window, please fill in the following details:

* Type: Application
* Name: VirtualBox
* Command: VirtualBox (please take care about upper/lower case - this is a command, if you don't write it right, the application won't start)
* Comment: You can fill in anything you like or leave it blank.

If you like, you can also select an icon for the new application, but this is no must.

good luck

Error subprocess post-installation script returned error exit status 1

Problem install package with message :
" subprocess post-installation script returned error exit status 1 "
Solution :
removing the file /var/lib/dpkg/info/.postinst
and reinstall again.

Minggu, 06 Desember 2009

That Stanford PhD graduate, now So Driver


Cai Mingjie never thought before if his life turned around 180%. Understandably, this bespectacled man was formerly a scientist with a good reputation. Last education completed PhD in biochemistry from leading universities, Stanford University.

But the man who had been a principal investigator in the field of genetics IMCB cells are going to leave that prestigious institution and choose a taxi driver.

"I was forced out of the research work at my career at the top, and could not get another job, for reasons I can only say as" the uniqueness of Singapore, "he said in his blog a site.

"As a result, I was driving taxis to make a living and write real-life story is just to make a boring job a little more interesting. I hope that these stories are interesting to you, too, "said Dr. Cai.

News about Dr. This is very surprising Cai Singapore society, a country considered the level of higher education progress and no doubt.

A white-collar worker who was shocked to say, before he was convinced that doctoral-level degree and experience a myriad of security to have a steady job and lasting success.

"If he eventually had to be a taxi driver, then what chance have ordinary people like us?" he asked.
I've met with a number of taxi drivers who have high qualifications in the last few years, including those who used to be a manager and engineer.

A cheerful driver, one day surprised me because it gives a complete description of what the stock should be bought and which ones should be avoided. Apparently he used to be a stockbroker.

"At times like this, maybe only the taxi business is still actively receiving employees in Singapore, said Dr. Cai.
For me, the change of life Dr. Cai was brought Singapore into a new phase.

"I'm probably the only driver with a PhD from Stanford and has a recognized experience in the field of science ..." writes Dr. Cai in his blog.

Doctoral Degree




Story Dr. Cai spread quickly in cyberspace. Most of Singapore expressed their appreciation for its ability to adapt so quickly to her new life. Two Singaporean youths asked the cab number, saying that they would be very happy if you can walk around with his cab and chatted.

"Many (lesson) that he could give me," said one.

Others asked why he could not get a teaching job, given the scientific experience is so amazing.

Out of work long he actually is mainly due to personal reasons (he was accused of causing trouble by the lead investigator), and not because of sluggish biotechnology projects in Singapore, which still survive in this crisis period.

The case made iitu general weakness in the field of R and D (research and development) Singapore spotlight.

"Poor economic conditions meant not many companies that can afford a professional scientist," said a cyber surfers. "Academic degree is not much help - history proves that many PhD degrees looking for a job hunt."

While the image of taxi drivers into high terdongkrak, not that way with Singapore biomedika projects, especially their efforts to grow the seeds of new research talent in the country.

"More and more people away from Singapore's career in science," said one blogger.

Someone wrote, "In my opinion, a PhD is not useful, especially in Singapore. It's just a certificate, not more."
Another added, "In the United States the situation worse. Many who come here to look for a job."

"I do not want my child to school for years finally just a taxi driver," said housewife seornag who have teenage daughters.

The case against Singapore citizens, who through his PhD research at Stanford University with research subjects that developers around the protein, it is not unique.

American research scientist, Douglas Prasher, who succeeded in isolating the gene that could produce a green glowing protein - and has just failed to gain the Nobel Prize in 2008, facing the same situation.

Prasher moved from a research institution to another institution when research funds run out. At last he stopped to cultivate science, and turned into shuttle driver in Alabama.

"Nevertheless, he remained humble and happy and seemed pleased with the work of his minivan driving," said one Internet surfer.

With the market changing world of work is available, and the increasing number of business owners who want a job can be done by one person with a short work contract, the more the people of Singapore are pursuing different degrees. Eg legal or accounting with computers with business.

Some people began to avoid a postgraduate degree or field-specific disciplines. They prefer a more scientific field of general or cross-sectoral.

"Experience is king," was his motto now. And the people in droves looking for an internship without pay.
"In the future, what is needed is that graduates with diverse skills and flexible career, people who can adapt to a variety of different jobs," said a businessman.
Over the last few years, in which globalization is increasing in, there ketidaksinkronan between what is learned by the people of Singapore at the university with a lived career.

Singapore followed the trend in the developed world, where old businesses can be lost instantly in one night, then came a new business, which became a problem for those who can not adjust.

I know a young man, civil engineers from leading universities in the United States, which abandoned the construction world for teaching the world cultivate.

The other engineers that I meet, taking care of her father's coffee shop is very profitable. Another, a lawyer who later became a musician or a journalist, and so forth.

Cases in which the people doing the work that had nothing to do with their educational background, the day more. So that the interviewer is asking prospective employees are no longer asked, "Why would a seasoned scientist as you want to work as a low-level employees?"

In the past parents dizzy thinking about what field of study that must be taken by his son, accounting or law or engineering, fields that promise success. And they will determine a field, and continue to pursue and menggelutinya to be a profession.
A doctor will work to become a doctor, a biologist will work in the laboratory, and the lawyers will argue in the courts busy.

Dr Cai is a China-born man who later became a citizen of Singapore, after gaining a PhD in molecular biology from Stanford University in 1990. He joined IMCB two years later and worked as a chief researcher in the field of cell genetics until his departure.

He was suspended from the Institute of Molecular and Cell biology (IMCB) in Singapore Astar, a place where he had worked for 16 tahundan can not guarantee jobs until penghentiannya in May 2008. Towards November 2008, he decided to become a taxi driver.
Now, the man with seambrek curriculum vitaes and university experience, government agencies and companies driving the Toyota Crown vehicle. "At a time like this, the taxi business may be the only business in Singapore is still actively recruiting people," he said. [On / ts

Sabtu, 05 Desember 2009

World's Most Expensive iPod for Sale 230,000 USD



iPod Supreme is a special version of the iPod Touch, a digital music player Apple besutan. Special indeed, because the Supreme as the iPod Touch claimed the world's most expensive, with the price of U.S. $ 233,000

Supreme iPod was designed by Katherine Hughes, the wife of the British designer, Stuart Hughes, who some time ago also released the most expensive iPhone. There are only three course, the iPod line of Supreme decorated all over her expensive jewelry bodinya.

Supreme iPod casing is made of 22 carat gold, while the Apple logo studded with glittering diamonds. Quoted from UberGizmo, Sunday (6/12/2009), the edge of the iPod is also decorated with a special 300 grain diamond.

Not just only that, the main navigation buttons on this popular gadget is also planted with a grain of pink diamond surrounded by smaller diamonds. With the official price exorbitant price, obviously it is only the affluent can afford an iPod Supreme.

Stuart Hughes is known as a designer of luxury gadgets. Dress the various types of company mobile phones with jewelry and exclusive designs, so the price is so much higher than the original.

This is Resume SBY Before the imposition of 100 days

In it is mentioned that there had been a meeting at the Hotel Dharmawangsa. Surprisingly, some names of important figures mentioned in the resume. They are Prabowo Subianto, Surya Paloh, Suryopratomo, Syafii Maarif, Din Syamsudin, Jusuf Kalla, Yudi Latif, Fajroel Rahman, Ray Rangkuti. This content was outstanding resume:

Situation analysis:

1. The issue of corruption is indeed a middle class issue

2. Do not touch the people directly

3. However, based on experience in a liberal democracy, these issues effectively to bring down the power SBY (ex: Gus Dur, Joseph Estrada, etc.) through the mechanism of parliamentary

4. At the popular level the issue of corruption could make the power kehilangkan trust and apathy toward the political elite

5. If this issue continues to grow and the problems of poverty and employment will be a potential acute acute sentiment as well: will be a common economic issues, political issues will be encouraged to repeat the incident in May 1998.

Clarification Target:

1. Increasing the issue of clean and effective government to SBY terdelegitimasi

2. Repositioning of office and replace bargaining position

3. SBY toppled before the 100-day parliamentary

4. SBY with fury to overthrow the masses

Movement Patterns

Encouraging Movement Top:

1. Will remain driven group that gathered at Imparsial and Contrast assigned to Syafii Maarif and Din Syamsudin who could still talk with Todung Mulya Lubis, Komarudin Hidayat, Goenawan Mohamad / Bambang Harry Murti.

Platform: Clean Government

Priority targets: the eradication of corruption in law enforcement institutions to clean. These groups tend to bargaining because they support the liberalization, and quit after the team formed (but when SBY speech about the disclosure of the bank will be sacrificed Century VP Boediono, then they immediately attacked SBY is going to fall before 100 days.

2. Compact will remain driven, (kpd assigned Fadjroel Rahman, Ray Rangkuti and Yudi Latif) political position with the bag as if he would encourage all state institutions abide by the recommendations and encouraged the team to topple SBY.

3. Forum Rector, the line almost as refusing to criminalize the Commission and entered into the issue of Century Bank (Syafii Maarif)

4. Forum 28 (assigned to Yudi Latif and Fadjroel Rahman)

5. Parliament, the right bank questionnaire Century, the task with JK and Prabowo with lobbying Aburizal Bakrie and Megawati Sukarnoputri.

6. Media, providing enough energy for the movement is under-powered Metro TV and TV One.

And the media is printing KOMPAS and Media Indonesia. assigned to Surya Paloh and Suryopratomo

7. Facebooker, pro-middle-class establishment, systemic, black and white view of political developments did not stop pushing for the liberation movement Seed & Chandra. (assigned to the IT team campaign Mega-Pro)

Immediately approached knots or figures of the movement of mass below:

1. Spontaneous movement after Seed & Chandra arrested

2. Movement, active students, academics, some community leaders

3. Moving off campus

4. Moved slightly extended to the cities

5. Although not involve a large mass (the node or this figure can be approached with a persuasive approach and material to be pushed to the overthrow of the movement was assigned to Yudi Latif)