Manjaro Difference between pages "GRUB/Restore the GRUB Bootloader" and "Dolphin"

Difference between pages "GRUB/Restore the GRUB Bootloader" and "Dolphin"

From Manjaro
(Difference between pages)
imported>Verityproductions
 
imported>FadeMind
m (kdesdk-thumbnailers 15.04.0-1 provide .po file thumbs)
 
Line 1: Line 1:
= Overview =
=Introduction=


As with any Linux operating system, the GRUB ('''GR'''and '''U'''nified '''B'''ootloader) is responsible for booting up Manjaro. If for any reason your GRUB is not working - perhaps due to being corrupted, mis-configured, or even deleted - then it may not be necessary to reinstall Manjaro. '''The GRUB can instead be fully repaired and restored, retaining your installed Manjaro system'''.
Enable preview many file types. Install the required packages. Then in the settings of the Dolphin activate preview of selected file types.


=Setup=


= Boot the Manjaro Installation Media =
Before start close the application Dolphin. Install the recommended packages.
Note: calligra provides preview plugins for many offfice and graphics files.
----
'''<code>sudo pacman -S --noconfirm --needed kdegraphics-{thumbnailers,svgpart} kdesdk-thumbnailers calligra</code>'''
----
Additional plugins for less popular formats directly from AUR:
----
'''<code>yaourt -S --noconfirm --needed audiothumbs kde-thumbnailer-{apk,blender,epub,fb2,geogebra,gimpresources,mmap,plasmoid,qml,webp,wmf}</code>'''
----
If You want using mplayer instead of ffmpeg for generate thumbnails video files install and activate mplayer instead ffmpeg preview plugin in Dolphin Previews settings:
----
'''<code>sudo pacman -S kdemultimedia-mplayerthumbs --needed --noconfirm</code>'''
----
Open Dolphin. Go to '''Control > Configure Dolphin > General > Previews'''. Mark selected group of file extensions to enable them preview of in Dolphin. Save the changes to the settings.


'''1.''' Insert and boot your Manjaro installation media (e.g. CD/DVD or USB).  
[[File:dolphin-settings-tab.png|900px|thumb|center]]


'''2.''' Select your '''preferred language''' (F2) and '''keyboard layout''' (F3).
=Support=


{{tip|Setting the language and keyboard layout are undertaken by pressing the ''Function'' (F) keys. As many computers have multiple functions assigned to each function key, it may be necessary to hold down another key first to use them. For example, on a HP G62 laptop, to use the function keys, the 'fn' key must first be pressed and held.}}
Official forum topic: [http://forum.manjaro.org/index.php?topic=7731]


=See Also=


'''3.''' Boot Manjaro Linux. It does not matter which boot option you choose, as the installation media is being used solely to repair/reinstate the GRUB, and not to install a fresh system.
[http://wiki.manjaro.org/index.php?title=Krusader Krusader, Installing]


'''4.''' Open the terminal or access the command line of the live CD.
[[Category:Contents Page]]
 
* '''From the desktop environment''': open the terminal from your desktop menu, or
* '''From the command line (e.g. NET-Edition or having used the 'Boot in Text mode' option''': enter the default username (manjaro) and password (manjaro) to log in.
 
 
= Identify and Prepare the GRUB Partition =
 
'''1.''' Ensure that you are using the Root account, which is identified by a hash ('#') at the beginning of the command line. To switch to Root, enter the command:
 
sudo su
 
{{tip|The password - if requested - will be '''manjaro'''}}
 
 
'''2.''' List your partitions. This is necessary in order to identify the partition your Manjaro system is installed on. If you have used a seperate boot partition, it will be necessary to identify this as well. For a list of your paritions, enter the command:
 
sudo blkid
 
 
In this particular instance, the partitions for the author's Manjaro system are as follows:
 
* '''/dev/sda1''': Seperate boot partition
* '''/dev/sda2''': Swap partition
* '''/dev/sda3''': Manjaro system
* '''/dev/sda4''': Space for personal files.
 
 
{{tip|You can also use an application called '''gparted''' from the desktop menu to look at your partitions. This can help you identify what they are, if you are unsure. For example, if a seperate partition for the GRUB exists, it should only be about 100MB in size.}}
 
 
'''3.''' Mount your Manjaro system partition. The syntax to mount the Manjaro system partition is:
 
mount /dev/'''[partition used for Manjaro system]''' /mnt
 
 
In this instance, as the Manjaro system partition is ''/dev/sda3'', this will first be mounted, using the following command:
 
mount /dev/'''sda3''' /mnt
 
 
'''IF''' you have used a seperate partition for your GRUB bootloader, then this must also be mounted. The syntax to mount a partition used to boot is:
 
mount /dev/'''[partition used for GRUB]''' /mnt/boot
 
 
In this instance, a seperate partition - ''/dev/sda1'' - has been used for the GRUB, and will be mounted using the following command:
 
mount /dev/'''sda1''' /mnt/boot
 
{{note|'''Again, if you do have not used a seperate boot partition, then it (obviously) does not need to be mounted!''' If you are not sure, then check the size of the partitions: a seperate partition used just for the GRUB should be the recommended size of 100MB.}}
 
 
'''3.''' Change to the root directory of your mounted partitions (i.e. so you are working from and using your installed system, rather than the live CD). To do so, it will be necessary to enter a series of command:
 
mount -t proc proc /mnt/proc
mount -t sysfs sys /mnt/sys
mount -o bind /dev /mnt/dev
mount -t devpts pts /mnt/dev/pts/
chroot /mnt
 
 
'''4.''' Install mtools and os-prober. mtools is a collection of tools to access Microsoft Operating Systems. os-prober is a utility that detects if there are any other operating systems present. Install them with the following command:
 
pacman -S mtools os-prober
 
 
= Restore the GRUB =
 
'''1.''' Install a new GRUB bootloader
 
grub-install /dev/sda
 
 
'''2.''' Recheck to ensure the that installation has completed without any errors.
 
grub-install --recheck /dev/sda
 
 
'''3.''' Configure the freshly installed GRUB bootloader
 
grub-mkconfig -o /boot/grub/grub.cfg
 
 
Once complete, close the terminal and reboot your system.

Revision as of 18:55, 17 April 2015

Introduction

Enable preview many file types. Install the required packages. Then in the settings of the Dolphin activate preview of selected file types.

Setup

Before start close the application Dolphin. Install the recommended packages. Note: calligra provides preview plugins for many offfice and graphics files.


sudo pacman -S --noconfirm --needed kdegraphics-{thumbnailers,svgpart} kdesdk-thumbnailers calligra


Additional plugins for less popular formats directly from AUR:


yaourt -S --noconfirm --needed audiothumbs kde-thumbnailer-{apk,blender,epub,fb2,geogebra,gimpresources,mmap,plasmoid,qml,webp,wmf}


If You want using mplayer instead of ffmpeg for generate thumbnails video files install and activate mplayer instead ffmpeg preview plugin in Dolphin Previews settings:


sudo pacman -S kdemultimedia-mplayerthumbs --needed --noconfirm


Open Dolphin. Go to Control > Configure Dolphin > General > Previews. Mark selected group of file extensions to enable them preview of in Dolphin. Save the changes to the settings.

Support

Official forum topic: [1]

See Also

Krusader, Installing

Cookies help us deliver our services. By using our services, you agree to our use of cookies.