سلام
خب گرافیکی :
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
بعداز نصب و اجرای برنامه در قسمت preference این امکانات رو بهت میده .
خط فرمان :
دستور زیر چیزیه که ما هنگام بوت می بینیم که واسه شما فرق داره :
grep menuentry /boot/grub/grub.cfg
خروجی من (که از شما فرق داره) :
menuentry 'Ubuntu, with Linux 3.2.0-26-generic-pae' --class ubuntu --class gnu-linux --class gnu --class os {
menuentry 'Ubuntu, with Linux 3.2.0-26-generic-pae (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
menuentry 'Ubuntu, with Linux 3.2.0-23-generic-pae' --class ubuntu --class gnu-linux --class gnu --class os {
menuentry 'Ubuntu, with Linux 3.2.0-23-generic-pae (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
menuentry "Memory test (memtest86+)" {
menuentry "Memory test (memtest86+, serial console 115200)" {
menuentry "Windows 7 (loader) (on /dev/sda1)" --class windows --class os {
خب من الان می خوام ویندوز سون رو به صورت پیش فرض انتخاب شده باشه. پس دقیقانوشته قسمت ویندوز سون رو (ازقسمت بالا خط آخر)کپی می کنیم که واسه من میشه :
"Windows 7 (loader) (on /dev/sda1)"
بعدش باید /etc/default/grub رو باید بازش کنی که من با nano بازش می کنم (با sudo باید بازش کنی):
(nano رو با آپشن b- انجام بده backup)
man nano:
The " -B" (or " --backup") option backs up the previous version of it to the current filename suffixed with a~
# 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"
در قسمت GRUB_DEFAULT=0 به جای 0 نوشته ی بالا رو بجاش پیس می کنیم که میشه :
GRUB_DEFAULT="Windows 7 (loader) (on /dev/sda1)"
در آخرهم گرابتو آپدیت کن :
sudo update-grub
الان اگه ری استارت کنم ویندوز سون به صورت پیش فرض انتخاب شده (برای من).