मैं वर्तमान में विभिन्न डिस्ट्रोस की कोशिश कर रहा हूं, जब मैं अपने लैपटॉप को बूट करता हूं तो मेरे पास चुनने के लिए कई ओएस हैं। आमतौर पर, वे सभी डिस्ट्रो स्थापित होते हैं grub2
और सूची के शीर्ष पर खुद को स्थापित करते हैं ताकि वे स्थापना पूर्ण होने के बाद बूट करने के लिए डिफ़ॉल्ट हो।
लेकिन मंज़रो ने कुछ अलग किया। इसने grub2
उस संस्करण को स्थापित किया, जिसमें याद होगा कि मैंने पिछली बार किस डिस्ट्रो को बूट किया था और उस एक को फिर से बूट करना शुरू कर दिया था, जब तक कि मैं एक दूसरे को नहीं चुनता (और फिर वह एक बूट करता है) और तब तक।
क्या मैंने इसकी कल्पना की थी? क्या मन्जारो वास्तव में ऐसा करता है? यदि हां, तो मैं कैसे स्थापित कर सकते हैं कि संस्करण के grub
अपने सिस्टम के लिए? चीयर्स।
यह मेरी /etc/grub.d/40_custom
फाइल है:
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
और यह मेरी /etc/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=saved
GRUB_SAVEDEFAULT=true
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=3
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"
/etc/default/grub
और मैंने लाइन GRUB_DEFAULT=0
को बदल दिया और उस लाइन को GRUB_DEFAULT=saved
जोड़ दिया GRUB_SAVEDEFAULT=true
जो वहां नहीं थी। फिर मैं sudo update-grub
। रिबूट किया और बूट करने के लिए एक डिस्ट्रो को चुना, जो ऊपर से अलग है। फिर से रिबूट किया गया और शीर्ष (जिसे मैंने पहले नहीं चुना था) डिस्ट्रो को डिफ़ॉल्ट रूप से और बूट किया गया था।
grub
) लेकिन यह काम नहीं किया। शीर्ष डिस्ट्रो बूट को फिर से शुरू करने पर बूट करता है, हालांकि मैंने पहले एक और चुना था।