Tampilkan postingan dengan label Ubuntu. Tampilkan semua postingan
| 0 komentar

Upgrading VIMP (Community Edition) From 2.0.6 to 2.1.1

ViMP (a video & social media Content Management System) recently released version 2.1.1 (which includes support for mobile devices).

I had previously installed version 2.0.6 (as a virtual machine in VMware vSphere) and thought I would take a look at keeping my ViMP installation up-to-date.

The first step is of course to make a backup in-case the upgrade fails – I simply took a snapshot of my virtual machine as this was the quickest and simplest solution.

First download ViMP version 2.1.1 from here.

Upload ViMP 2.1.1 to your server using WinSCP (Windows) or SSH (Linux).

Now use Putty (Windows) or SSH (Linux) to access the command line interface on your ViMP server.

Copy vimp.framework-2.1.1-r19091-community.tar.gz to your installation folder, in my case this was /var/www/showvid/data:

sudo cp vimp.framework-2.1.1-r19091-community.tar.gz /var/www/showvid/data

Change directory and extract ViMP 2.1.1 with the following commands:

cd /var/www/showvid/data sudo tar xzf vimp.framework-2.1.1-r19091-community.tar.gz

Issue the following commands to upgrade*:

sudo ./symfony rebuild sudo ./symfony cc

* Note that If you use languages other than English and update from a version < 2.0.7 to a version >= 2.0.7, the following symfony task must also be executed (in between the two commands above):

./symfony i18n:import --clear

You should now be able to log in as admin and see that your ViMP installation is running the new version (under the configuration link).

After the upgrade I found that then when I try to upload video I see an Error in the Admin portal:

+ Problem executing command FFmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1.1, Copyright (c) 2000-2009 Fabrice Bellard, et al. configuration: --extra-version=4:0.5.1-1ubuntu1.1 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enabl

I logged in as admin and clicked on Administration then Configuration and then Player and set Enable HTML5-player to False.

Then under the Media tab I clicked Restart Transcoding on the affected uploads and they converted successfully. After this I clicked on Transcode new formats and this appeared to work.

I checked /var/www/showvid/data/logs/framework.convert.log and did not see any errors.

So for now I have just left the HTML5 player disabled and my uploads are working without issue (even if they are not being transcoded to the new formats).

Additional support is available from the ViMP Forum if required.

Read more...
| 0 komentar

Ubuntu Server 10.4 Lucid – Installing VIMP (Community Edition)

Some time ago I was looking for an open source YouTube clone when I came across something called osTube. When I recently vistited the osTube site again I found that osTube development had been discontinued. Its successor is ViMP which bills itself as the solution for Social Media, Web TV and Video Communities. It has a host of features and the good news (for me) is that it handles H.264/MP4.
Just to be clear though the ViMP Community edition is not open source – the code is encrypted by a PHP encoder called Source Guardian (which must be installed to use ViMP). Hopefully you are OK with that?
You will need to register at the ViMP site to download it (the current version is 2.0.6). Extract the ViMP tar-ball and you will find an Installation Guide for Debian in the doc folder. Most of this guide is good for an Ubuntu installation but we will make some changes for our Ubuntu install.
My starting point is a virtual machine with a minimal Ubuntu Server installation with the SSH role. So, let’s install ViMP:
Fisrt update repositories:
sudo apt-get update
Install nano (terminal based text editor) and wget (file downloader):
sudo apt-get install nano wget
Install Apache2 web server:
sudo apt-get install apache2
Enable mod_rewrite and then restart Apache2:
sudo a2enmod rewrite sudo /etc/init.d/apache2 restart
Install PHP5:
sudo apt-get install libapache2-mod-php5
Install additional PHP packages:
sudo apt-get install php5-cli php5-mysql php5-gd php5-xsl php5-curl
Install the MySQL database server:
sudo apt-get install mysql-server
You will be prompted to provide a root password for MySQL. Make a note of this password for later!
Add the Medibuntu repository to your server:
sudo wget --output-document=/etc/apt/sources.list.d/medibuntu.list http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list && sudo apt-get --quiet update && sudo apt-get --yes --quiet --allow-unauthenticated install medibuntu-keyring && sudo apt-get --quiet update
Install the transcoding software:
sudo apt-get install mplayer mencoder ffmpeg flvtool2
Install video codecs for popular proprietary formats:
For 32 bit,
sudo apt-get install w32codecs
or for 64 bit,
sudo apt-get install w64codecs
Create directories for ViMP installation:
sudo mkdir -p /var/www/showvid/data sudo mkdir -p /var/www/showvid/logs sudo chown -R www-data:www-data /var/www/showvid
Create a configuration file for the Apache virtual host:
cd /etc/apache2/sites-available sudo nano showvid
Copy and paste the following into the /etc/apache2/sites-available/showvid file you just created:
 DocumentRoot "/var/www/showvid/data/web"ServerName showvid.com ServerAlias www.showvid.com  AllowOverride All RewriteEngine On Options -Indexes FollowSymLinks  ErrorLog /var/www/showvid/logs/error.log CustomLog /var/www/showvid/logs/access.log combined LogLevel error 
Save the file and exit nano.
Enable the showvid virtual host and restart Apache:
sudo a2ensite showvid sudo /etc/init.d/apache2 reload
Disable the default virtual host and restart Apache:
sudo a2dissite default sudo /etc/init.d/apache2 reload
Next we need to configure some PHP values. Edit both of the files listed below and change the upload_max_filesize, post_max_size and memory_limit values as per the bullet points:
sudo nano /etc/php5/apache2/php.ini sudo nano /etc/php5/cli/php.ini
• upload_max_filesize = 1024M
• post_max_size = 1024M
• memory_limit = 512M
Restart Apache:
sudo /etc/init.d/apache2 restart
Create a MySQL database called showvid:
sudo mysqladmin -p create showvid
Enter your MySQL password.
Enter the MySQL console as the root user:
mysql -u root -p
Enter your MySQL password again. You should now be at the MySQL prompt:
mysql>
Create a user called showvid. Change in the first command below to a strong password for the showvid user. Make a note of this password.
CREATE USER showvid@localhost IDENTIFIED BY ''; GRANT ALL PRIVILEGES ON showvid.* TO showvid; FLUSH PRIVILEGES; exit
Change directories to your user directory:
cd /home//
Upload ViMP to your server – I used WinSCP to do this.
Copy the ViMP tar-ball to /var/www/showvid/data/ and then extract it:
sudo cp vimp.framework-.tar.gz  /var/www/showvid/data/ cd /var/www/showvid/data/ sudo tar xvzf vimp.framework-.tar.gz sudo rm vimp.framework-.tar.gz
Make the symfony file in /var/www/showvid/data/ executable:
sudo chmod +x symfony
At this point we would normally be able to execute the symfony file but because we are using the Community edition of ViMP we must install SourceGuardian. To do this we will need to know the version of PHP that we have installed:
php -v
Now that we know what version of PHP we are using we can copy and extract the Source Guardian loaders that are supplied with ViMP.
First create a temporary directory to work in:
cd /home// mkdir temp cd temp/
Now extract the file /var/www/showvid/data/data/loader.tar.gz to the current directory:
tar xfz /var/www/showvid/data/data/loader.tar.gz
For the next step you will need to look in either the Linux_x86-32 folder (if your installation is 32 bit) or the Linux_x86-64 folder (for 64 bit). Assuming that you are running PHP 5.3.2 like me you will want the Source Guardian ixed.5.3.lin loader file .

Now that we have matched a loader to our version of PHP we need to make a folder in /usr/lib/php5/ that we can copy the Source Guardian loader to. The format of the folder is year, month, date +lfs. I don’t think that it really matters what date we choose, so I used the one provided in the Debian installation guide:
sudo mkdir /usr/lib/php5/20060613+lfs
Copy the loader file ixed.5.3.lin to the /usr/lib/php5/20060613+lfs/ folder:
sudo cp Linux_x86-32/ixed.5.3.lin /usr/lib/php5/20060613+lfs/
Create a Source Guardian configuration file:
sudo nano /etc/php5/conf.d/sourceguardian.ini
Add the following two lines to sourceguardian.ini:
[sourceguardian]
zend_extension=/usr/lib/php5/20060613+lfs/ixed.5.3.lin
Restart Apache:
sudo /etc/init.d/apache2 restart
Source Guardian installation is now complete.
Change directory back to /www/showvid/data and run symfony - just make sure that you change to the password you defined for the showvid user earlier on:
cd /var/www/showvid/data sudo ./symfony framework:init mysql://showvid:@localhost /showvid
Finally we need to set up a cronjob that runs every minute to convert uploaded videos to the right format. Edit the crontab:
sudo crontab -e
Copy and paste the following line at the bottom:
*/1 * * * * /var/www/showvid/data/scripts/sync_new_uploads.sh > /dev/null 2>&1
You can now access ViMP with a web browser. The password for the admin account is 'admin' - so you might want to change that after you log in.
That's it, now sit back and enjoy your own video community!

Source
Read more...
| 0 komentar

Percantik Grub Dengan Burg

Salam ubuntuers... kali ini saya akan membahas tentang BURG, apa itu BURG? BURG merupakan singkatan dari Brand-new Universal loadeR from GRUB. yah sebuah fitur yang cantik untuk mempercantik GRUB anda dan untuk menghilangkan kejenuhan karena tampilan default BURG yang berwarna hitam.


Sebelum mencobanya anda perlu memperhatikan kalau BURG ini merupakan fitur yang rentan sekali terhadap system jika pada langkah-langkahnya ada kesalahan, jadi pikirkan terlebih dahulu sebelum anda mencobanya. oke sekarang kita lanjutkan ke tahap penginstallan.
Pertama-tama buka konsol/terminal anda lalu eksekusi perintah berikut.

# sudo apt-add-repositori ppa: bean123ch/burg
# sudo apt-get update && sudo apt-get install burg burg-themes
Lalu install burg ke MBR (Master Boot Record) dengan perintah berikut.

# sudo burg-install "(hd0)"

Kalau Ubuntu yang anda gunakan Versi Jaunty, karmic atau hasil upgrade versi Ubuntu sebelumnya ke lucid, harap periksa dulu isi file "burg"

sudo gedit /etc/default/burgUbah baris berikut jadi begini :

GRUB_THEME=saved
GRUB_FOLD=saved


Simpan file dan keluar



Kemudian Update BRUG-nya


# sudo update-burg

Untuk mengecek berhasil atau tidak BURG yang barusan di install silahkan cek (simulasi) lewat terminal menggunakan perintah berikut.

# sudo burg-emu

Bila sukses silahkan tekan huruf t di keyboard anda untuk memilih Theme BURG yang anda inginkan.
Silahkan restart Kompi/Laptop anda kemudian tekan tombol t untuk memilih theme yang anda inginkan pada saat tampilan BootLoader.

Contoh Screenshootnya>>>

Theme Radiance

Theme Coffee
Akhir kata selesai sudah tutor kali ini, semoga apa yang diberikan bisa menjadi manfaat untuk orang banyak, terima kasih telah membaca dan berkunjung ke Blog ini.
Salam.

Sumber: Disini
Read more...
| 0 komentar

Cara Install GnoMenu di Ubuntu 10.04 Lucid Lynx

Hai para ubuntuers, udah pada tau belum tentang Gnomenu? kalo yang udah tau maaf yah kalo hal ini bikin basi, oke buat yang belum tau saya akan share cara installnya di ubuntu 10.04 LTS.
Sebelumnya saya akan sedikit menerangkan apa itu gnomenu, Gnomenu adalah sebuah aplikasi yang diperuntukan untuk panel yang sangat eyecandy untuk menggantikan menu gnome default ubuntu, dan gnomenu ini juga punya theme yang sama persis sama themenya OS Windows.

Gnomenu juga saat ini bisa diimplementasikan kedalam AWN, Cairo-dock, XfApplet, Kde Plasma dan di system tray.
Untuk cara penginstallannya sangat mudah sekali, pastikan komputer/Laptop anda terhubung ke komputer, buka terminal atau konsol anda lalu eksekusi perintah-perintah berikut.

sudo add-apt-repository ppa:gnomenu-team/ppa

sudo apt-get update

sudo apt-get install gnomenu

Cara menambahkan Gnomenu ke panel.

Klik kanan pada panel ubuntu anda >> lalu pilih GnoMenu >> lalu melanjutkan dengan klik Add

GnoMenu sudah bisa digunakan, bila anda ingin memodifikasinya silahkan klik kanan pada icon GnoMenu lalu pilih Properties.











Selamat berkreasi dengan panel GnoMenu baru anda yang sangat eyecandy
semoga bermanfaat.

Sumber : Disini
Read more...
| 0 komentar

First Look at the Ubuntu Unity Desktop Environment

Today was a big day for Ubuntu, with Canonical announcing the Unity desktop environment, Ubuntu Light, and more details about Ubuntu 10.10 “Maverick Meerkat”.

Unity is a new desktop environment designed for netbooks and touch-screen devices. It includes a new panel as well as a new vertical launcher. Unity is build using technologies from GNOME 3, including the Clutter library and the Mutter window manager.

Ubuntu Light is a version of Ubuntu designed to dual-boot with another operating system, and focused on getting on the web fast. It’s a stripped down Ubuntu (no file management) and uses the simpler Unity desktop. Canonical is offering Ubuntu Light to computer manufacturers only, because it’s intended to be customized for specific computers in order to boot fast.

Here’s a few other bits of information about the next version of Ubuntu:

  • Ubuntu Netbook Edition will drop Network Manager for Intel’s Connection Manager because Network Manager does not support indicators. This change will probably be included in the Ubuntu 11.04 desktop.
  • GNOME Shell is for desktops (it will be available in Ubuntu 10.10, but not as the default environment), and Unity is for netbooks.
  • Client-side window decorations and RGBA (alpha channel) will be added to Ubuntu 10.10 early in development.
  • More category indicators (like the messaging indicator) will reduce the number of indicators. A sound indicator will hold indicators for media applications and allow interactions like manipulating playlists.
  • Canonical has a professional font foundry working on a new interface font. When it’s ready, there will be a beta program.
  • A new icon theme is being worked on, but it will take a while to complete and may not be finished in time for the next Ubuntu.
  • Ubuntu 10.10 will be released on October 10, 2010 (that’s 10.10.10).

You can get all the details by watching Mark Shuttleworth’s UDS keynote (thanks to Alan Pope for posting the video).

There’s an official PPA software source from Canonical with a test version of Unity. Here’s how to install it:

  1. Open Ubuntu Software Center.
  2. Select Edit->Software Sources->Other Software.
  3. Click Add, enter ppa:canonical-dx-team/une, and click Add Source.
  4. Search for Unity in the Software Center and install it.

To start Unity, log out to return to the login screen. Select your user, select Ubuntu Unity Netbook Edition in the Sessions box, and log in.

Unity desktop

At first glance, it looks like you have the normal netbook edition GNOME panel at the top of the screen, but with a Google search box instead of a window list. There’s also a colourful stack of icons on the left hand edge of the screen.

The launcher
Unity launcher
The Unity application launcher is a dock. There are some default applications which always appear. Any application that is running will also appear, along with a small indicator that it is running on the left of the icon. The currently focused application also get a indicator on the right side.

Selecting an icon in the launcher causes it to glow while the application loads. Dragging up and down scrolls the list of applications, and dragging an icon out allows it to be repositioned. Right clicking on an icon initiates a scale effect which lets you select from all the windows for that application. There’s no support for minimizing windows.

It’s not easy to access applications which are not in the launcher because there’s no main menu. One item in the launcher is a folder which will show all the installed applications.

The window manager
Unity uses the Mutter window manager from GNOME 3. It’s a compositing window manager and supports some basic animations. At this time the integration between window title bars and the panel has not been implemented. The panel and launcher are run by Mutter, so it won’t be possible to use another window manager like Compiz with Unity. [update] A Compiz developer has Compiz working inside Unity, so this may not be true after all.

The panel
Unity Panel
Clicking the Ubuntu logo scales all the windows and lets you select one to switch to it. The search box goes to Google for now, but later it should be used to search your computer. Everything else on the panel is an indicator, which the current exception of the network manager applet. Despite it’s appearance, the panel is not based on GNOME panel, but is drawn by Mutter.

I’m pretty excited about Unity. While the current version is not complete, it does seem to be in a usable state on my netbook so I’ll continue testing it there.

Read more...
| 0 komentar

Compiz Keyboard Shortcuts in Ubuntu 10.04

Compiz Keyboard Shortcuts in Ubuntu 10.04

Posted by Tom in tips

I couldn’t find much information about keyboard shortcuts for Compiz effects in Ubuntu 10.04. I poked through the default Compiz configuration and found some I didn’t know about, and some that have changed from previous versions of Ubuntu.

Some of the following keyboard shortcuts will not work at all if Compiz (visual effects) if turned off.

Workspaces

  • Ctrl + Alt + Left/Right/Up/Down arrow – move to the workspace in the given direction
  • Ctrl + Alt + Shift + Left/Right arrow – move the current window to the workspace in the given direction
  • Super + E - “expo” effect, shows all workspaces (move windows with left mouse button, zoom to a workspace with right mouse button)

Window Management

  • Super + W – “scale” effect, shows all windows in current workspace (left click selects window, middle click closes window, right click zooms window)
  • Super + A – “scale” effect, shows all windows
  • Alt + F10 – toggle maximize current window
  • Alt + F9 – minimize current window
  • Ctrl + Alt + D – toggle show desktop
  • Alt + Middle mouse button – resize window
  • Alt + Left mouse button – move window
  • Alt + Right mouse button – window menu
  • Alt + F7 – move current window (without holding down mouse button)
  • Alt + F8 – resize current window (without holding down mouse button)
  • Alt + Tab – switch windows on current workspace
  • Ctrl + Alt + Tab – switch windows on all workspaces

Accessibility

  • Super + Mouse wheel scroll – zoom screen
  • Super + Middle mouse button – draw rectangle to zoom to
  • Super + N – invert colours of current window
  • Super + M – invert colours of screen (Compiz is configured for this shortcut, but the messaging indicator seems to have taken it over so it doesn’t work)
Ubuntu Community Documentation has more on keyboard shortcuts (although some of it is outdated now for Ubuntu 10.04). You can view and change some shortcuts using
Read more...
| 0 komentar

Cara gampang belajar Ubuntu Linux dengan Ailurus

Ailurus merupakan software open source yang bisa membuat ubuntu yang anda gunakan semakin mudah untuk digunakan. dengan ailurus kita bisa memanage dan mengatur system settings dari ubuntu mulai dari nautilus, desktop, windows effect, network, sound dan lain-lain. anda juga bisa menginstall dan menguninstall aplikasi yang ada di komputer anda dengan mudah.

selain itu kita juga bisa melihat informasi serta mengecek hardware yang ada di komputer kita seperti motherboard, CPU, BIOS, Total memory. anda juga bisa mengecek system version, desktop environment, host name, kernel version dari ubuntu anda. selain fungsi tersebut masih ada fungsi yang lain dari ailurus seperti fastest repository, clean up system cache, study Linux skills …

kelebihan dari ailurus:

1. membantu kita belajar linux jadi lebih gampang
2. mempermudah proses installasi dan uninstall
3. bisa mengaktifkan bebearapa repositrory dari pihak ketiga
4. menampilkan informasi tentang hardware yang ada di komputer kita
5. bisa membersihkan APT/YUM cache
6. bisa membackup dan recovery APT/YUM status
7. mengubah GNOME Settings dengan mudah

Berikut tampilan start-up logo dari ailurus:

Ailurus sangat mudah sekali digunakan, semua fitur utamanya terletak di menu paling atas sehingga gampang untuk memilih fungsi apa yang akan kita gunakan. berikut ini merukapan contoh bila kita ingin mengubah system settings dari desktop icons.

sedangkan untuk proses installasi di ailurus sebagai berikut.

Install Ailurus:

anda bisa menginstall ailurus dari PPA Repository.

caranya, silahkan masuk terminal dari menu Applications -> Accessories, kemudian ketik seperti berikut:

sudo add-apt-repository ppa:ailurus

sudo apt-get update

sudo apt-get install ailurus

ailurus juga tersedia dalam bentuk tar.gz, deb, rpm paket. yang bias anda download dari http://code.google.com/p/ailurus/downloads/list.

setelah anda install anda bisa menjalankan program ailurus dari menu Applications->System Tools.

jika penasaran dengan ailurus silahkan klik: http://code.google.com/p/ailurus/
Read more...
| 0 komentar

Mounting Otomatis Partisi NTFS

Jika sistem komputer Anda di buat dual booting Windows dan Ubuntu, secara default partisi NTFS tidak dapat di mount secara otomatis saat Anda ingin mengaksesnya dari desktop Ubuntu.
Untuk masuk ke dalam partisi NTFS, yang harus Anda lakukan adalah dengan membuka Nautilus (File Manager) dan klik pada partisi NTFS tersebut, lalu masukkan password untuk mengaksesnya.

Cara terbaik untuk bekerja di lingkungan desktop Ubuntu adalah dengan membuat partisi NTFS di mount secara otomatis pada waktu Ubuntu di boot. Untuk melakukan itu, yang perlu kita lakukan adalah mengedit file fstab yang terletak di direktori /etc/.

Let's start

1. Buka Terminal melalui menu: Applications → Accessories → Terminal

2. Cari tahu letak partisi NTFS
root@playboy:/home/hendra# fdisk -l |grep NTFS
/dev/sda2 * 1531 16730 122094000 7 HPFS/NTFS
/dev/sda5 16731 28442 94076608+ 7 HPFS/NTFS

yang tampil di atas terlihat bahwa letak partisi NTFS saya berada di partisi /dev/sda2,/dev/sda5

3. Buat direktori untuk tujuan mounting partisi NTFS tersebut
misalnya:

root@playboy:/home/hendra# mkdir /media/win7
root@playboy:/home/hendra# mkdir /media/data


4. Edit file /etc/fstab

root@playboy:/home/hendra# vim /etc/fstab
Tambahkan baris berikut ini:

/dev/sda2 /media/win7 ntfs-3g defaults,force 0 0
/dev/sda5 /media/data ntfs-3g defaults,force 0 0

Keluar dan save dengan menekan :wq lalu restart komputer

NB : ntfs-3g adalah driver untuk membaca partisi NTFS
Read more...
| 0 komentar

Menginstall Grub Ubuntu 9.10 pada Windows 7

Pas pertama install bingung juga kirain gagal kok g' ada grubnya, ternyata emg ada sedikit problem yang menyebabkan Grub d windows 7 tidak jalan.
Berikut triknya untuk menginstall grub pada windows 7 :
caranya :

* Nyalakan PC/laptop dan booting dari LiveCD Ubuntu atau flashdisk (yang sudah terisi OS Ubuntu). Cara mengubah urutan booting (boot priority) pada BIOS bisa dicari sendiri lewat google.
* Masukkan LiveCD Ubuntu ke dalam CD-ROM (atau flashdisk, tergantung mana yang ingin digunakan).
* Pilih Try Ubuntu without any changes to your computer. Tunggu sampai Ubuntu tampil dengan sempurna.
* Setelah berhasil masuk ke Ubuntu, buka terminal (klik Applications > Accessories > Terminal, atau tekan kombinasi tombol Ctrl+Alt+F2).

kemudian, muncul menu di terminal.

### lihat partisi kita dengan perintah sudo fdisk -l :

Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x996e996e

Device Boot Start End Blocks Id System
/dev/sda1 * 1 2550 20482843+ 7 HPFS/NTFS
/dev/sda2 2551 6559 32202292+ f W95 Ext'd (LBA)
/dev/sda5 2551 5100 20482843+ b W95 FAT32
/dev/sda6 5101 6316 9767488+ 83 Linux
/dev/sda7 6317 6559 1951866 82 Linux swap / Solaris

### Sekarang ketik sudo mount -t ext4 /dev/sda6 /mnt/. CATATAN: sda6 adalah nama partisi Linux di laptop saya. Anda bisa menggantinya sesuai dengan nama partisi Linux di komputer Anda.

### Ketik sudo mount -t proc proc /mnt/proc/
### Ketik sudo mount -t sysfs sys /mnt/sys/
### Ketik sudo mount -o bind /dev/ /mnt/dev/
### Ketik sudo chroot /mnt/ /bin/bash
### Ketik grub-install /dev/sda. Hasilnya muncul tulisan seperti di bawah ini:

Installation finished. No error reported.
This is the contents of the device map /boot/grub/device.map.
Check if this is correct or not. If any of the lines is incorrect,
fix it and re-run the script `grub-install’.

(hd0) /dev/sda

### Ketik grub-install /dev/sda6. Hasilnya muncul pesan seperti ini:

grub-setup: warn: Attempting to install GRUB to a partition instead of the MBR. This is a BAD idea.
grub-setup: warn: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and its use is discouraged.
Installation finished. No error reported.
This is the contents of the device map /boot/grub/device.map.
Check if this is correct or not. If any of the lines is incorrect,
fix it and re-run the script `grub-install’.

(hd0) /dev/sda

### ketik update-grub. Hasilnya seperti di bawah ini:

Generating grub.cfg …
Found linux image: /boot/vmlinuz-2.6.31-14-generic
Found initrd image: /boot/initrd.img-2.6.31-14-generic
Found memtest86+ image: /boot/memtest86+.bin
Found Microsoft Windows 7 on /dev/sda2
done
Read more...
| 0 komentar

Mengembalikan GRUB Loader Ubuntu 9.4 Yang Hilang Setelah Install Windows

Biasanya jika memiliki dual boot OS misalkan: Linux dan Windows, dan kebetulan windowsnya error atau sering hang dan ada niat untuk install ulang OS windowsnya, jika kita ingin meng-install ulang kemungkinan GRUB Loader Linux-nya akan hilang karena saat install windows akan menulis ulang/menghapus MBR (Master Boot Record) yang ada dan akan menghapus GRUB Loader Linux, bagaimana cara untuk mengembalikan GRUB Loader Linux yaitu salah satunya dengan cara menggunakan CD Live Linux, misalkan ubuntu jaunty versi desktop, knoppix, dll. Setelah linux live cd sudah running, selanjutnya buka terminal, sebagai root ketik command grub;

untuk mengetahui partisi apa saja yang ada;

grub> geometry (hd0);
drive 0x80: C/H/S = 9729/255/63, The number of sectors = 156301488, /dev/sda
Partition num: 0, Filesystem type is ext2fs, partition type 0x83
Partition num: 1, Filesystem type unknown, partition type 0x7
Partition num: 4, Filesystem type unknown, partition type 0x7
Partition num: 5, Filesystem type unknown, partition type 0x82

Pada partisi diatas terlihat bahwa partisi nomor 0 yang digunakan linux, lalu ketik:

grub> root (hd0,0);

untuk menjadikan GRUB Loader-nya berada di MBR, ketik;

grub> setup (hd0);
Checking if "/boot/grub/stage1" exists... yes
Checking if "/boot/grub/stage2" exists... yes
Checking if "/boot/grub/e2fs_stage1_5" exists... yes
Running "embed /boot/grub/e2fs_stage1_5 (hd0)"... 17 sectors are embedded.
succeeded
Running "install /boot/grub/stage1 (hd0) (hd0)1+17 p (hd0,0)/boot/grub/stage2
/boot/grub/menu.lst"... succeeded
Done.

Jreng .......jangan lupa reboot linux anda, lihat hasil kerja anda :) good luck
Read more...
| 0 komentar

Installing Firefox 3.5 in Ubuntu - The Easy Way

Firefox 3.5 is now officially released. And everyone is so desperately looking for a way to upgrade. I was too. After googling for sometime i found that as of now there is no apt-get upgrade kind of stuff to upgrade to this newer version. But instead i tried ubuntuzilla, a python script. And it worked like a charm.


While using Ubuntuzilla you could obtain the latest updates of not just Firefox, but also Seamonkey and Thunderbird as well, before anyone else. I think that gives you enough reasons to try out this python script. Go on :-)

Ubuntuzilla Features

* Automatically detects and downloads the newest Firefox, Thunderbird, SeaMonkey release from the Mozilla servers.

* Allows you to make a choice of language for Firefox or Thunderbird.

* Automatically integrates Firefox plugins that you have installed from the Ubuntu repositories.

* Installs an update checker job that periodically performs automatic checks for new versions of Firefox, Thunderbird, or Seamonkey.

* New installed version of firefox will become the default.

* It even has a 'remove' action to remove the official Mozilla build and restore system to pre-installation state. That is AWESOME !

Installing Ubuntuzilla

* Install the following dependencies.

sudo apt-get install libstdc++5 libnotify-bin

* Download ubuntuzilla .deb package or Visit the download page to confirm if it is the latest version.

* Simply double click on the just downloaded deb package to install ubuntuzilla.

Installing Firefox 3.5

* Run ubuntuzilla.py in command line by simply typing the same in Terminal.

* Then it will show up the latest version of firefox, that is Firefox 3.5. Just follow the instructions afterwards.Nothing hard. Just y/n questions.

* When you are prompted to choose the language of choice, if you dont know the one you want, just type 14 there(which is the default en - US).

* Thats it. Goto Applications > Internet > Firefox , and you will have your latest frefox 3.5 up and running, and will even prompt you with latest updates(you can disable this feature anytime).

Removing Firefox you just Installed

* Goto Applications > Accessories > Terminal and do the following.

ubuntuzilla.py -a remove -p firefox

* And when you remove, only the mozilla build version of firefox that you just installed will be lost. And your old Firefox 3.0.11 will be restored. That is great news. Simply put, you wont loose anything by trying out this small script.

I am really impressed with this python script. It gives you so much flexibility. If you want more options or want to know more about ubuntuzilla project visit the official page of ubuntuzilla project at sourcefrge.net.

Know more about new features in firefox 3.5 here.
Read more...
| 0 komentar

Install or Upgrade to Pidgin 2.6.1 in Ubuntu(Jaunty, Intrepid, Hardy) the easy way

Pidgin 2.6.1 is released. Pidgin is the default IM Client for Ubuntu for a pretty long time now. And Pidgin went through a number of upgrades. But this time it is different. Pidgin brings in the much awaited Voice and Video support for XMPP and are hoping to get these killer features to other protocols as well.

In layman's terms, what it means is that now you can use voice chat and video chat in gmail. Though it seems latest pidgin is still a lil buggy. Voice and Video chat may not work as smoothly as it should possibly due to some dependecy issue. But really, hats off to to those who are behind this exponential improvement of our beloved Pidgin.
Feature List

* Video and Voice chat support for XMPP.

* Service discovery browser plugin.

* Idle time reporting.

* Attention ("buzzing") support.

* In-band bytestreams file transfer as a last-resort transfer method.

* Updated support for buddy icons.

* Full changelog here

Now let's see how upgradation (or installation) to Pidgin 2.6.1 can be done. You will have to add GPG key and new repo before you start with upgradation.

Adding GPG Key

* Simply Copy-Paste the following in terminal.

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1F196A8

* Done

Adding New PPA Repo

* Now Goto System > Administration > Software Sources and select Third-Party Software tab and click ADD. And Simply Copy-Paste the following Repo(depending on the version of Ubuntu you use)

For Ubuntu Jaunty

deb http://ppa.launchpad.net/pidgin-developers/ppa/ubuntu jaunty main
deb-src http://ppa.launchpad.net/pidgin-developers/ppa/ubuntu jaunty main

For Ubuntu Intrepid

deb http://ppa.launchpad.net/pidgin-developers/ppa/ubuntu intrepid main
deb-src http://ppa.launchpad.net/pidgin-developers/ppa/ubuntu intrepid main

For Ubuntu Hardy

deb http://ppa.launchpad.net/pidgin-developers/ppa/ubuntu hardy main
deb-src http://ppa.launchpad.net/pidgin-developers/ppa/ubuntu hardy main

* Afterwards close the window and Reload when prompted to.

* Done

Upgrading Existing Pidgin to Pidgin 2.6.1

* Simply do the following in Terminal.

sudo apt-get update
sudo apt-get upgrade

* Done! You have the latest Pidgin 2.6.1 in your Ubuntu.

Installing Pidgin 2.6.1

* Again, do the following in Terminal.

sudo apt-get update
sudo apt-get install pidgin

* Done and Pidgin 2.6.1 is ready to go.
Pidgin sudah siap dipakai hehehe silahkan di test :)
Read more...
| 0 komentar

Install Moovida in Ubuntu Jaunty

First you need to edit /etc/apt/sources.list file

sudo gedit /etc/apt/sources.list

Add the following lines

deb http://ppa.launchpad.net/moovida-packagers/ppa/ubuntu jaunty main
deb-src http://ppa.launchpad.net/moovida-packagers/ppa/ubuntu jaunty main

Save and exit

Add the GPG key using the following command

sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com e478bb3b6bcd9f67c5137df13135cd5c26c2e075

Update the source list

sudo apt-get update

Install moovida using the the following command

sudo apt-get install moovida

This will complete the installation

Using Moovida

Open Moovida from Applications—>Sound & Video—>Moovida Media Center

Moovida Media Center is loading in progress

Moovida Media Center main Menu

Music screen

Movie Screen

Picture Screen

TV Shows screen

Plugins Screen

Devices & Screen

You can download plugins from here
Read more...
| 0 komentar

Daftar Mirror Repository Ubuntu 9.04 Jaunty Jackalope

mirror.cbn.net.id (OpenIXP)

1. deb http://ubuntu.cbn.net.id/Ubuntu jaunty main restricted universe multiverse


2. deb http://ubuntu.cbn.net.id/Ubuntu jaunty-updates main restricted universe multiverse

3. deb http://ubuntu.cbn.net.id/Ubuntu jaunty-security main restricted universe multiverse

4. deb http://ubuntu.cbn.net.id/Ubuntu jaunty-backports main restricted universe multiverse

5. deb http://ubuntu.cbn.net.id/Ubuntu jaunty-proposed main restricted universe multiverse

kambing.ui.edu (UI, Telkom, Indosat, OpenIXP, INHERENT)

1. deb http://kambing.ui.edu/ubuntu jaunty main restricted universe multiverse

2. deb http://kambing.ui.edu/ubuntu jaunty-updates main restricted universe multiverse

3. deb http://kambing.ui.edu/ubuntu jaunty-security main restricted universe multiverse

4. deb http://kambing.ui.edu/ubuntu jaunty-backports main restricted universe multiverse

5. deb http://kambing.ui.edu/ubuntu jaunty-proposed main restricted universe multiverse

www.foss-id.web.id (Telkom)

1. deb http://dl2.foss-id.web.id/ubuntu jaunty main restricted universe multiverse

2. deb http://dl2.foss-id.web.id/ubuntu jaunty-updates main restricted universe multiverse

3. deb http://dl2.foss-id.web.id/ubuntu jaunty-security main restricted universe multiverse

4. deb http://dl2.foss-id.web.id/ubuntu jaunty-backports main restricted universe multiverse

5. deb http://dl2.foss-id.web.id/ubuntu jaunty-proposed main restricted universe multiverse

ftp.itb.ac.id (ITB, INHERENT)

1. deb ftp://ftp.itb.ac.id/pub/ubuntu jaunty main restricted universe multiverse

2. deb ftp://ftp.itb.ac.id/pub/ubuntu jaunty-updates main restricted universe multiverse

3. deb ftp://ftp.itb.ac.id/pub/ubuntu jaunty-security main restricted universe multiverse

4. deb ftp://ftp.itb.ac.id/pub/ubuntu jaunty-backports main restricted universe multiverse

5. deb ftp://ftp.itb.ac.id/pub/ubuntu jaunty-proposed main restricted universe multiverse

indika.net.id (OpenIXP)

1. deb http://ubuntu.indika.net.id/ jaunty main restricted universe multiverse

2. deb http://ubuntu.indika.net.id/ jaunty-updates main restricted universe multiverse

3. deb http://ubuntu.indika.net.id/ jaunty-security main restricted universe multiverse

4. deb http://ubuntu.indika.net.id/ jaunty-backports main restricted universe multiverse

5. deb http://ubuntu.indika.net.id/ jaunty-proposed main restricted universe multiverse

komo.vlsm.org

1. deb http://komo.vlsm.org/ubuntu jaunty main restricted universe multiverse

2. deb http://komo.vlsm.org/ubuntu jaunty-updates main restricted universe multiverse

3. deb http://komo.vlsm.org/ubuntu jaunty-security main restricted universe multiverse

4. deb http://komo.vlsm.org/ubuntu jaunty-backports main restricted universe multiverse

5. deb http://komo.vlsm.org/ubuntu jaunty-proposed main restricted universe multiverse

mirror.cbn.net.id (OpenIXP)

1. deb http://ubuntu.cbn.net.id/Ubuntu jaunty main restricted universe multiverse

2. deb http://ubuntu.cbn.net.id/Ubuntu jaunty-updates main restricted universe multiverse

3. deb http://ubuntu.cbn.net.id/Ubuntu jaunty-security main restricted universe multiverse

4. deb http://ubuntu.cbn.net.id/Ubuntu jaunty-backports main restricted universe multiverse

5. deb http://ubuntu.cbn.net.id/Ubuntu jaunty-proposed main restricted universe multiverse

mirror UNEJ

1. deb http://mirror.unej.ac.id/ubuntu jaunty main restricted multiverse universe

Cara Pemakaian :D :

1. buka terminal Applications>>Accessories>>Terminal

$sudo nano /etc/apt/sources.list

2. masukan mirror repository yang ingin anda gunakan kedalam file sources.list, save and exit

3. index repository dengan mengetikkan perintah

$sudo apt-get update
Read more...
| 0 komentar

How to install Virtualbox 2.2.0 in Ubuntu 9.04 (Jaunty)

VirtualBox is a general-purpose full virtualizer for x86 hardware. Targeted at server, desktop and embedded use, it is now the only professional-quality virtualization solution that is also Open Source Software.

Install irtualbox 2.2.0 in Ubuntu 9.04

Preparing your system


First you need to install the following package.Dynamic Kernel Module Support Framework.This package contains the framework for the Dynamic Kernel Module Support (DKMS) method for installing and updating kernel modules.

sudo apt-get install dkms

First you need to download .deb package for ubuntu jaunty from here

Now you need to open the .deb package using GDebi click ok

File download in progress

Virtualbox .deb extract in progress

Now you need to click on “Install Package”

Enter your password click ok

Downloading additional package files in progress

Installing dependencies

Installing virtualbox 2.2 in progress

In the installation process

Creating vboxusers group click Forward

Compiling vboxdrv module be compiled now click Forward

Virtualbox-2.2 completed

Now go to Applications—>System Tools—>Sun VirtualBox

Now agree license by clicking on “I Agree”

Virtualbox main screen

Virtualbox version details

Install Virtualbox opensource edition in Ubuntu Jaunty

If you want to install Virtualbox opensource edition in Ubuntu Jaunty using the following command

sudo apt-get install virtualbox-ose virtualbox-ose-guest-source virtualbox-ose-guest-utils dkms
Read more...