Showing posts with label ubuntu. Show all posts
Showing posts with label ubuntu. Show all posts

Monday, September 19, 2016

How to setup the default OS in GRUB dual boot system eg Ubuntu and Windows

How to setup the default OS in GRUB dual boot system eg Ubuntu and Windows


Of course it works with Ubuntu, Linux Mint, Linux Mint Debian Edition, or other Ubuntu based linux distro.

When system starts write down exactly each rows of GRUB menu (e.g.: Linux, recovery mode, memtest86+, Windows).
Or type in Terminal:
fgrep menuentry /boot/grub/grub.cfg

Choose which OS you want to start as default.
Write down the line number of the Operating System you want to boot first.
The first line starts from 0

eg:

Ubuntu, Linux 2.6.31-14-generic
Ubuntu, Linux 2.6.31-14-generic (recovery mode)
memory test (memtest86+)
memory test (memtest86+, serial console 115200)
Windows 7 (loader) (on /dev/sda1)

Where
"Ubuntu, Linux 2.6.31-14-generic" is 0 (zero row ) and
"Windows 7 (loader) (on /dev/sda1)" is 4 (4th row)

Open a Terminal, and type:
# sudo nano /etc/default/grub
(of course you can use other editor as well)

Search *GRUB_DEFAULT* row, change the default value (which is 0) to the value you wrote down before.

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10

In grub config file, you can also change the GRUB default time out length.
Then save the GRUB file.

Dont forget to update GRUB.
Run a command in the terminal:

# sudo update-grub

If you want to do these steps with GUI, you can use GRUB customizer software.
Read more about it here.

Source: NAM HUY LINUX

Available link for download

Read more »

Sunday, September 4, 2016

Cara cepat instal Ubuntu Linux dengan USB

Cara cepat instal Ubuntu Linux dengan USB


Universal Installer USB alias UUI adalah Live Linux USB Creator yang memungkinkan Anda untuk memilih dari pilihan Distribusi Linux untuk memakai USB Flash Drive.  

Universal USB Installer mudah digunakan. Cukup memilih Distribusi Linux Live, file ISO, Flash Drive dan, Klik Install. Setelah selesai, Anda harus memiliki siap untuk menjalankan bootable USB Flash Drive dengan pilih sistem operasi yang terpasang. Fitur lain termasuk; Presistence (jika tersedia) - catatan: USB Flash Drive harus dengan format FAT16 atau FAT32

Universal USB Installer (UUI) Screenshots 



Setelah selesai, klik Close dan USB Flash Drive siap dipakai untuk Install ulang Komputer anda..
Welcom to Open Source.

Available link for download

Read more »

Sunday, August 14, 2016

Setting Repository Kambing untuk Ubuntu 10 04

Setting Repository Kambing untuk Ubuntu 10 04


Pertama, masuk akses root dengan mengetikkan:

sudo su >> masukkan password root

Lalu buka file sources.list dengan mengetikkan:

nano /etc/apt/sources.list

Lalu ubah isi file tersebut dengan:

deb http://kambing.ui.ac.id/ubuntu lucid main restricted universe multiverse
deb http://kambing.ui.ac.id/ubuntu lucid-security main restricted universe multiverse
deb http://kambing.ui.ac.id/ubuntu lucid-backports main restricted universe multiverse
deb http://kambing.ui.ac.id/ubuntu lucid-proposed main restricted universe multiverse
deb http://kambing.ui.ac.id/ubuntu lucid-updates main restricted universe multiverse

Konfigurasi di atas khusus untuk ubuntu 10.04(lucid lynx). Untuk versi ubuntu yang lain, cukup ubah nama distro ubuntu versi yang bersangkutan untuk melakukan setting repository.

Available link for download

Read more »

Tuesday, August 2, 2016

Setting Root Password on Ubuntu

Setting Root Password on Ubuntu


By default, when we install a fresh ubuntu(server) OS, we do not have any root password set. The only access we have is just sudo access, which is set up in the first time we install it.

Therefore, we couldnt access some administrative previledges, such as "synaptic package manager". To set the root password, type this on the terminal:

$ sudo passwd

Enter your new password, verify it, then exit terminal.
Cheers.

Available link for download

Read more »