Lxtharia / minegrub-theme

A Grub Theme in the style of Minecraft!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect directory in installation instructions.

tdeerenberg opened this issue · comments

The issue

The directory with the grub config file mentioned here is incorrect:

- change/add this line in your `/etc/defaults/grub`:

You might have made a spelling mistake as the directory /etc/defaults/ does not exist on the Linux filesystem by default and no applications will read from that directory. The directory that you are looking for is /etc/default/ (and with the grub config file: /etc/default/grub).


Some explaination about /etc/default

Because you said in your notes (on this line of README.md) that you are not an expert concerning Linux, here is a brief explanation of what /etc/default/ actually does:

From a post on a Slackware forum:

Basically, /etc/default contains some parameters that the end user or administrator is likely to change, rather than embedding the values in the actual boot scripts. In this way, changes will persist even if you upgrade the package and the boot script is replaced.

In Debian, /etc/default/ is a directory of mostly empty files. The way it is meant to work is that each /etc/init.d/test script first sources /etc/default/test before starting/stopping the test service. The purpose of the file is to provide extra options for starting the service, or override certain aspects of the service's startup.

Source: Ask Ubuntu: What is the purpose of /etc/default?

Hope this helps!

Thank you! Fixed the typo and thanks for the explanation! :D