デフォルトの14.04 / etc / default / grubファイルの内容は何ですか?


9

私もこの男のように、誤って/etc/default/grubファイルを改ざんしましたが、構成スクリプトでは>なくを使用してファイルを改造し>>ました。提供された答えは、14.04デスクトップのデフォルトgrubファイルで覚えているものとは異なります...何が含まれていますか?

釣りを教える...見つけるために14.04を再インストールしなくても、自分で答えを見つけるために使用できるリソース/方法はありますか?


1
14.04の再インストールは多すぎます。grubを再インストールする方が簡単です;)
Rinzwind '11

1
に将来変更を加える場合は/etc/default/grub、まずのようなものを使用してバックアップしてくださいsudo cp /etc/default/grub /etc/default/grub-backup。これは、将来的にそれが汚された場合、より簡単に復元できることを意味/etcします。同じことが、他の場所にあるほとんどの構成ファイルにも当てはまります。
Wilf、2014

回答:


10

質問の一部に可能な答えはまだあります " 釣りを教える... ":

...を見つけるために14.04を再インストールしなくても、自分で答えを見つけるために使用できますか?

http://packages.ubuntu.com/#search_contentsで検索し/etc/default/grubました:

検索結果はありませんでした

最初のものを取り除いた/etcので、2番目のソースパッケージ名の検索はです/default/grub。結果はヒットします:

/usr/share/grub/default/grub grub2-common

このファイルはまだUbuntuマシンにありますか?

$ sudo ls /usr/share/grub/default/grub
/usr/share/grub/default/grub

または、例えば:

$ sudo [ -f /usr/share/grub/default/grub ] && echo Found || echo Not\ found
Found

実はそこにあります。

そしてその内容は何ですか?

$ sudo cat /usr/share/grub/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

気付いたかもしれませんが、Rinzwindの回答からの出力と比較して、もう1つの明白な異なる行があります。

#GRUB_HIDDEN_TIMEOUT=0

4

どうぞ:

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.