Welcome

Berawal dari ketiadaan, kita berpikir dan belajar untuk menciptakan. Membuat segala sesuatunya menjadi lebih baik, lebih berarti dan lebih bermanfaat. "Mari berbagi manfaat" #Give thank to Allah, the Creator of all things.
Showing posts with label Grub ubuntu. Show all posts
Showing posts with label Grub ubuntu. Show all posts

Wednesday, May 7, 2014

error unknown filesystem Entering rescue mode grub rescue

Solving problem without live cd

error unknown filesystem
Entering rescue mode. . .

grub rescue> ls #check your linux partition

grub rescue> ls (hd0, gpt5)/ #my linux partition

./ ../ lost+found/ etc/ media/ bin/
boot/ dev/ home/ lib/ mnt/ opt/ proc/
root/ run/ sbin/ libx32/ srv/ sys/ tmp/
usr/ var/ vmlinuz initrd.img
cdrom/ .qgis2/ .config/ boot-sav/
lib64/ grub_old/ libnss3.so

#set prefix and root to linux partition

grub rescue> set prefix=(hd0,gpt5)/boot/grub
grub rescue>set root=hd0,gpt5
grub rescue> insmod /boot/grub/i386-pc/linux.mod
grub rescue > linux /vmlinuz root= /dev/sda5 ro
grub rescue > initrd /initrd.img
grub rescue > boot

Setelah masuk ubuntu, instal grub
dengan perintah berikut di terminal :

#install grub

sudo update-grub
sudo grub-install --force /dev/sda
sudo reboot

Alhamdulillah sudah berhasil dengan cara
saya diatas. silahkan di save ngeh,
barangkali perlu dan sedang tidak ada live
cd

jika tidak berhadil coba pakai

#Alternative solve
#set prefix and root to linux partition

grub rescue> set prefix=(hd0,gpt5)/boot/grub
grub rescue>set root=hd0,gpt5
grub rescue >insmod normalgrub rescue >normal


Other notes: Grub Ubuntu Rescue. error: will not proceed with blocklists. http://muhammadbaihaqi-martin92.blogspot.com/2013/10/grub-ubuntu-rescue-error-will-not.html

Wednesday, October 16, 2013

Grub Ubuntu Rescue. error: will not proceed with blocklists.

error: unknown filesystem
grub rescue>



[SOLVED 1]
Masukkan Live CD Ubuntu ke CD/DVD ROM laptop/PC dan booting ke Live CD tersebut. Setelah berhasil masuk ke desktop Ubuntu, jalankan Terminal dan jalankan beberapa perintah dibawah ini.

1. Anda harus menentukan dimana letak partisi Ubuntu:
$ sudo fdisk -l

Pada gambar diatas (via Terminal dan Gparted) menunjukkan kalau lokasi instalasi Ubuntu saya adalah pada partisi /dev/sda7. Punya Anda mungkin berbeda, bisa saja /dev/sda5, /dev/sda6, dan lainnya.

2. Mount partisi dimana instalasi Ubuntu berada:
$ sudo mount /dev/sdaX /mnt

/dev/sdaX adalah lokasi instalasi Ubuntu. Lokasi instalasi ini tergantung pada hasil pada langkah 1.

3. Install grub ke partisi yang sudah di-mount
$ sudo grub-install --root-directory=/mnt/ /dev/sda

4. Update GUBR

Setelah semua langkah diatas sukses dijalankan, yang harus Anda lakukan berikutnya adalah merefresh GRUB yang baru saja diinstall.
$ sudo update-grub

Terakhir, restart komputer Anda untuk memastikan apakah GRUB sudah tampil pada saat booting.

$ sudo reboot



[SOLVED 2]

$ sudo mount /dev/sda6 /mnt

$ sudo grub-install --root-directory=/mnt/ /dev/sda

/usr/sbin/grub-bios-setup: warning: this LDM has no Embedding Partition; embedding won't be possible.
/usr/sbin/grub-bios-setup: warning: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and their use is discouraged..
/usr/sbin/grub-bios-setup: error: will not proceed with blocklists.


$ grub-install /dev/sda && grub-install --recheck /dev/sda && update-grub 
rm: cannot remove `/boot/grub/915resolution.mod': Read-only file system



$ sudo mount --bind /dev /mnt/dev  

$ sudo mount --bind /dev/pts /mnt/dev/pts 
$ sudo mount --bind /proc /mnt/proc  
$ sudo mount --bind /sys /mnt/sys 
$ sudo chroot /mnt

[SOLVE  3]

# grub-install /dev/sda
/usr/sbin/grub-setup: warn: This GPT partition label has no BIOS Boot Partition; embedding won't be possible!.
/usr/sbin/grub-setup: warn: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and their use is discouraged..
/usr/sbin/grub-setup: error: will not proceed with blocklists. 

# grub-install --recheck /dev/sda

/usr/sbin/grub-setup: warn: This GPT partition label has no BIOS Boot Partition; embedding won't be possible!.
/usr/sbin/grub-setup: warn: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and their use is discouraged..
/usr/sbin/grub-setup: error: will not proceed with blocklists. 

# grub-install /dev/sda && grub-install --recheck /dev/sda && update-grub
/usr/sbin/grub-setup: warn: This GPT partition label has no BIOS Boot Partition; embedding won't be possible!.
/usr/sbin/grub-setup: warn: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and their use is discouraged..
/usr/sbin/grub-setup: error: will not proceed with blocklists.

[SOLVE 4]

# grub-install --force /dev/sda
/usr/sbin/grub-setup: warn: This GPT partition label has no BIOS Boot Partition; embedding won't be possible!.
/usr/sbin/grub-setup: warn: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and their use is discouraged..
Installation finished. No error reported.
# update-grub
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-3.2.0-54-generic-pae
Found initrd image: /boot/initrd.img-3.2.0-54-generic-pae
Found linux image: /boot/vmlinuz-3.2.0-52-generic-pae
Found initrd image: /boot/initrd.img-3.2.0-52-generic-pae
Found memtest86+ image: /boot/memtest86+.bin
done
# exit && sudo umount /mnt/dev
exit
$ sudo umount /mnt/dev/pts && sudo umount /mnt/proc && sudo umount /mnt/sys && sudo umount /mnt
umount: /mnt: device is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))
$ sudo umount /mnt/proc
umount: /mnt/proc: not mounted 
$ sudo umount /mnt/sys
umount: /mnt/sys: not mounted
$ sudo umount /mnt
 umount: /mnt: not mounted

$ sudo reboot




NB: /dev/sda6 merupakan pertisi tempat Linux di Install.

Done, everything works ... #grub #ubuntu #grubrescue #blocklists

Friday, September 16, 2011

Menghapus Kernel di Grub ubuntu yang tak beraturan dengan Ubuntu Tweak

saya kesulitan delete grub2 yang tak beraturan pada saat startup?

haloo teman2s... mohon dibantu dong... saya kesulitan delete grub2 yang tak beraturan pada saat startup, jika kiranya ada yang tau... mohon dishare. thanks

Menanggapi pertanyaan di ubuntu-indonesia.com saya mencoba menuliskan artikel ini, semoga bisa membantu.

Kali ini cara yang digunakan lebih mudah dengan menggunakan software Ubuntu Tweak. Dengan Ubuntu Tweak kesalahan menghapus kernel tidak akan terjadi lagi. karena kernel yang akan ditampilkan hanya kernel lama.



1. Install Ubuntu Tweak terlebih dahulu disini.

$ sudo add-apt-repository ppa:tualatrix/ppa
$ sudo apt-get update
$ sudo apt-get install ubuntu-tweak


2. Buka Ubuntu Tweak di Applications->System Tools->Ubuntu Tweak

 Setelah diinstall
-Pilih Package Cleaner
-Pilih Unlock dan masukan password
-Pilih Clean Kernels
-Pilih Select All
-Pilih Cleanup
-Masukan password lagi




Proses menghapus kernel lama dijalankan
Jika sukses muncul pesan Clean up successful!


Coba restart Ubuntu untuk memastikan kernel yang terbaru tidak terhapus.


Selesai :)

Mario Teguh's Quotes

Quotes

Blogger Jogja

Traffic Exchange

EasyHits4U.com - Your Free Traffic Exchange - 1:1 Exchange Ratio, 5-Tier Referral Program. FREE Advertising!

Wibiya provides a web toolbar that enables blogs and websites to integrate the most exciting services and web applications into their blog or website.