Kamis, 21 Februari 2013

6 Apikasi Keren yang harus dimiliki Di Linux Ubuntu || Downloads

Ubuntu kini sudah tidak diragukan lagi telah menjadi salah satu distro Linux yang paling populer di dunia. Salah satunya adalah karena kemudahan pengoperasiannya dibanding distro-distro Linux yang lain. Tentunya aplikasi-aplikasi yang terdapat di Ubuntu itu sendiri lah yang berperan penting mengapa Ubuntu bisa diklaim menjadi distro yang sangat mudah pengoperasiannya.
Nah, pada postingan kali ini saya ingin membagikan 10 Aplikasi keren yang harus kalian coba di Ubuntu 12.04 LTS kalian. Mau tau apa saja? Baca terus yaa.

1. ZIM






ZIM adalah aplikasi cross-platform gratis yang berfungsi untuk memanajemen catatan, memanajemen daftar keperluan, serta membantu penulisan ide-ide kedalam bentuk presentasi atau mindmap.

ZIM juga dapat ditambahkan plugin-plugin menarik seperti :

Memasukkan Diagram
Memasukkan Linkmap (semacam Mindmap)
Pengkoreksi Pengejaan
Memasukkan Simbol-simbol
Memasukkan Screenshot
Quicknote, dll







Untuk menginstallnya, kalian ketikkan perintah ini di terminal :


sudo apt-get install zim

2. ProzGUI 













ProzGUI adalah aplikasi download manager seperti Internet DOwnload Manager yang ada di Windows. Namun ProzGUI saya rasa jauh lebih powerful dibandingkan IDM, karena prozGUI yang mudah dioptimalisasi, lebih rakus bandwidth, bebas untuk memecah file downloadan menjadi berapa saja, ringan, dan juga bisa pause dan resume download. Kalian harus mencoba aplikasi yang satu ini !





Cara install :


sudo apt-add-repository ppa:alza/project
sudo apt-get update
sudo apt-get install prozgui


3. Pinta Image Editor 









Jika kalian dulu sering menggunakan aplikasi Photoscape di Windows, dan merasa bahwa aplikasi GIMP terlalu sulit untuk digunakan, maka kalian harus mencoba aplikasi yang satu ini. Pinta adalah aplikasi pengedit gambar yang pengoperasiannya sangat mudah dan powerfull.

Untuk menginstallnya :

sudo apt-get install pinta

4. K3b 








K3b adalah aplikasi burning yang kaya akan fitur yang merupakan aplikasi burning bawaan di distro yang berbasis KDE. Jujur, menurut saya K3b ini lebih powerfull dibandingkan brasero yang ada di Ubuntu.

Untuk menginstallnya di Ubuntu ketik ini :

 sudo apt-get install k3b

 5. Pencil 







Pencil adalah aplikasi yang cukup menarik yang fungsinya untuk membantu menggambar karakter-karakter kartun. Fokus dari aplikasi ini adalah kesimpelannya, akan tetapi fitur-fiturnya tidak kalah canggih kok dengan aplikasi-aplikasi lain.

Install Pencil di Ubuntu :

sudo apt-get install pencil

6. Mount Manager







Mount Manager adalah aplikasi manajemen partisi/Disk semacam Disk Utility/Gparted. Namun yang ini saya rasa lebih canggih, karena dapat me-mount dan unmount, mengedit settingan mount point, bahkan mengedit file konfigurasi /etc/fstab dengan sangat mudah. Tertarik?

Install di Ubuntu :

sudo apt-get install mountmanager





#Selamat Mencoba



How To Overcome GPG Errors on Ubuntu LTS 12:04 || Download free






The first post in this May, because I'm in the holiday period and there is no internet connection at home. hehe: D

In this post, I want to share a little trick How To Overcome GPG Errors on Ubuntu LTS 12:04. Usually this error GPG issue occurs when you add the PPA to your Ubuntu either expired or has experienced. See the picture below:








Cara mengatasinya cukup mudah, hanya perlu mengetikkan beberapa baris perintah di terminal. Pertama-tama ketikkan ini :


gpg --keyserver keyserver.ubuntu.com --recv Key GPG

Yang saya tandai merah itu kalian isi dengan Key GPG yang error. Misalnya pada gambar dibawah ini (lihat yang saya tandai), key GPG yang error adalah 5A9A06AEF9CB8DB0 :





So that you type in the terminal are:

gpg - keyserver keyserver.ubuntu.com - recv 5A9A06AEF9CB8DB0

Later results will be as follows:






After that, consider requesting key section (see I marked below) that shows the code F9CB8DB0





Type  Commands belong the requesting key on it your :


gpg --export --armor F9CB8DB0 | sudo apt-key add -






Finally update repositori :


sudo apt-get update

if it's done ,you got your own hehehe :D

GOOD LUCK :)

Easy Backup system MBR (Master Boot Record) on Linux Ubuntu || Download free


Buddy is going to tutor me ya hehe
Feedback is the new ane pake know UBUNTU so new now .... okay from the old direct mending cekidot dah ..

In this short tutorial we will see a helpful tip for backing up the system MBR (Master Boot Record) via the command line in Ubuntu (12.04/11.10). MBR is usually located in the first sector of the hard disk or other data storage device that holds the partition table. If you want to make some modifications to the boot loader, commonly known as the GRUB boot loader in Ubuntu, make a copy of the MBR would be highly recommended so you can restore it in case of unexpected problems, especially when doing a dual boot.
We assume that the hard disk is / dev / sda. If not, then you can replace it yourself in order below. We will use the DD command line tool to copy the MBR. Open a terminal and run this command to backup MBR:





sudo dd if=/dev/sda of=boot.bin bs=512 count=1



A "boot.bin" file will be created at the location of the current terminal. Move this file to a safe place on your disk or USB stick. Then, you can restore the MBR with the command:



sudo dd if=boot.bin of=/dev/sda bs=512 count=1

2 Way Install Git on Ubuntu 12.10 Faster || Free Download

How to Install Git with Apt-Get


Installing Git with apt-get is a quick and easy process. The program installs on the virtual private server with one command:

sudo apt-get install git

After it finishes downloading, you will have Git installed and ready to use.

How to Install Git from Source


If you are eager to download the most recent version of Git, it is generally a good idea to install it from the source.

Quickly run apt-get update to make sure that you download the most recent packages to your VPS.
sudo apt-get update

Prior to installing Git itself, download all of the required dependancies:

sudo apt-get install libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev build-essential

Once they are installed, you can download the latest version of Git from the google code page.
wget https://git-core.googlecode.com/files/git-1.8.1.2.tar.gz

After it downloads, untar the file and switch into that directory:
tar -zxf git-1.8.1.2.tar.gz
cd git-1.8.1.2

If you want to do a global install, install it once as yourself and once as root, using the sudo prefix:
make prefix=/usr/local all
sudo make prefix=/usr/local install

If you need to update Git in the future, you can use Git itself to do it.

git clone git://git.kernel.org/pub/scm/git/git.git

How to Setup Git


After Git is installed, whether from apt-get or from the source, you need to copy your username and email in the gitconfig file. You can access this file at

~/.gitconfig.

Opening it following a fresh Git install would reveal a completely blank page:
sudo nano ~/.gitconfig

You can use the follow commands to add in the required information.
git config --global user.name "NewUser"
git config --global user.email newuser@example.com

You can see all of your settings with this command:

git config --list

If you avoid putting in your username and email, git will later attempt to fill it in for you, and you may end up with a message like this:
[master 0d9d21d] initial project version
 Committer: root 
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:

    git config --global user.name "Your Name"
    git config --global user.email you@example.com

After doing this, you may fix the identity used for this commit with:

    git commit --amend --reset-author


Related Post

Recommend box

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Premium Wordpress Themes