8,560
edits
(Updating to match new version of source page) |
(Updating to match new version of source page) |
||
Line 13: | Line 13: | ||
Type 'exit' to try and continue booting | Type 'exit' to try and continue booting | ||
sh: can't access tty: job control turned off' | sh: can't access tty: job control turned off' | ||
[...] | |||
mount: can't find UUID='.....' | mount: can't find UUID='.....' | ||
You are now being dropped into the emergency shell. | You are now being dropped into the emergency shell. | ||
Line 29: | Line 27: | ||
The syntax of the command to open the grub file is: | The syntax of the command to open the grub file is: | ||
{{UserCmd|command=sudo [text editor] /etc/default/grub}} | |||
For example, if you wish to edit the file within the terminal using nano (a standard terminal-based text editor) then enter: | For example, if you wish to edit the file within the terminal using nano (a standard terminal-based text editor) then enter: | ||
{{UserCmd|command=sudo nano /etc/default/grub}} | |||
If you have installed the full version of Manjaro, not the NET-Edition, you may find it easier to use the pre-installed ''gedit'' text editor instead. This will open the file up as a document, making it easier to read and edit. To use ''gedit'' instead, enter: | If you have installed the full version of Manjaro, not the NET-Edition, you may find it easier to use the pre-installed ''gedit'' text editor instead. This will open the file up as a document, making it easier to read and edit. To use ''gedit'' instead, enter: | ||
{{UserCmd|command=sudo gedit /etc/default/grub}} | |||
= Editing the Default GRUB File = | = Editing the Default GRUB File = | ||
Line 49: | Line 44: | ||
GRUB_TIMEOUT=5 | GRUB_TIMEOUT=5 | ||
GRUB_DISTRIBUTOR="Manjaro" | GRUB_DISTRIBUTOR="Manjaro" | ||
GRUB_CMDLINE_LINUX_DEFAULT="GRUB_CMDLINE_LINUX_DEFAULT= resume=/dev/disk/by-uuid/ | GRUB_CMDLINE_LINUX_DEFAULT="GRUB_CMDLINE_LINUX_DEFAULT= resume=/dev/disk/by-uuid/<some-guid>" | ||
<font color="green">'''GRUB_CMDLINE_LINUX=""'''</font color> | <font color="green">'''GRUB_CMDLINE_LINUX=""'''</font color> | ||
Line 58: | Line 53: | ||
GRUB_TIMEOUT=5 | GRUB_TIMEOUT=5 | ||
GRUB_DISTRIBUTOR="Manjaro" | GRUB_DISTRIBUTOR="Manjaro" | ||
GRUB_CMDLINE_LINUX_DEFAULT="GRUB_CMDLINE_LINUX_DEFAULT= resume=/dev/disk/by-uuid/ | GRUB_CMDLINE_LINUX_DEFAULT="GRUB_CMDLINE_LINUX_DEFAULT= resume=/dev/disk/by-uuid/<some-guid>" | ||
'''GRUB_CMDLINE_LINUX="<font color="green">modprobe.blacklist=pata_acpi</font color>"''' | '''GRUB_CMDLINE_LINUX="<font color="green">modprobe.blacklist=pata_acpi</font color>"''' | ||
Line 75: | Line 70: | ||
To update the GRUB, ensure that the terminal is open, and enter the folliwing command: | To update the GRUB, ensure that the terminal is open, and enter the folliwing command: | ||
sudo update-grub | {{UserCmd|command=sudo update-grub}} | ||