web-dev-qa-db-ja.com

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

this guy のように、構成スクリプトで/etc/default/grubの代わりに>を使用して、[>>]ファイルを誤って叩きました。提供された回答は、14.04デスクトップのデフォルトgrubファイルで覚えているものとは異なります...何が含まれていますか?

魚を教える...見つけるために14.04の再インストールを行わずに自分で答えを見つけるために使用できるリソース/方法がありますか?

8
Nick T

質問「Teaching to fish ...」の部分に可能な答えがまだあります:

...見つけるためだけに14.04の再インストールを行わなくても、自分で答えを見つけることができますか?

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

申し訳ありませんが、検索結果はありませんでした

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

/usr/share/grub/default/grubgrub2-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's answer からの出力と比較すると、もう1つの明らかな異なる行があります。

#GRUB_HIDDEN_TIMEOUT=0
9
Pro Backup

どうぞ:

# 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"
4
Rinzwind