Minty95

sudo grub-mkconfig /boot/grub/grub.cfg findmnt --real

Jan 20th, 2023
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.74 KB | None | 0 0
  1. [trevor@trevor-endeavour ~]$ sudo grub-mkconfig /boot/grub/grub.cfg
  2. findmnt --real
  3. [sudo] password for trevor:
  4. Generating grub configuration file ...
  5. #
  6. # DO NOT EDIT THIS FILE
  7. #
  8. # It is automatically generated by grub-mkconfig using templates
  9. # from /etc/grub.d and settings from /etc/default/grub
  10. #
  11.  
  12. ### BEGIN /etc/grub.d/00_header ###
  13. insmod part_gpt
  14. insmod part_msdos
  15. if [ -s $prefix/grubenv ]; then
  16. load_env
  17. fi
  18. if [ "${next_entry}" ] ; then
  19. set default="${next_entry}"
  20. set next_entry=
  21. save_env next_entry
  22. set boot_once=true
  23. else
  24. set default="0"
  25. fi
  26.  
  27. if [ x"${feature_menuentry_id}" = xy ]; then
  28. menuentry_id_option="--id"
  29. else
  30. menuentry_id_option=""
  31. fi
  32.  
  33. export menuentry_id_option
  34.  
  35. if [ "${prev_saved_entry}" ]; then
  36. set saved_entry="${prev_saved_entry}"
  37. save_env saved_entry
  38. set prev_saved_entry=
  39. save_env prev_saved_entry
  40. set boot_once=true
  41. fi
  42.  
  43. function savedefault {
  44. if [ -z "${boot_once}" ]; then
  45. saved_entry="${chosen}"
  46. save_env saved_entry
  47. fi
  48. }
  49.  
  50. function load_video {
  51. if [ x$feature_all_video_module = xy ]; then
  52. insmod all_video
  53. else
  54. insmod efi_gop
  55. insmod efi_uga
  56. insmod ieee1275_fb
  57. insmod vbe
  58. insmod vga
  59. insmod video_bochs
  60. insmod video_cirrus
  61. fi
  62. }
  63.  
  64. if [ x$feature_default_font_path = xy ] ; then
  65. font=unicode
  66. else
  67. insmod part_msdos
  68. insmod ext2
  69. set root='hd1,msdos1'
  70. if [ x$feature_platform_search_hint = xy ]; then
  71. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 2c11fcb8-08c3-4172-9f8e-23b1b1266b4c
  72. else
  73. search --no-floppy --fs-uuid --set=root 2c11fcb8-08c3-4172-9f8e-23b1b1266b4c
  74. fi
  75. font="/usr/share/grub/unicode.pf2"
  76. fi
  77.  
  78. if loadfont $font ; then
  79. set gfxmode=auto
  80. load_video
  81. insmod gfxterm
  82. set locale_dir=$prefix/locale
  83. set lang=en_GB
  84. insmod gettext
  85. fi
  86. terminal_input console
  87. terminal_output gfxterm
  88. if [ x$feature_timeout_style = xy ] ; then
  89. set timeout_style=menu
  90. set timeout=5
  91. # Fallback normal timeout code in case the timeout_style feature is
  92. # unavailable.
  93. else
  94. set timeout=5
  95. fi
  96. ### END /etc/grub.d/00_header ###
  97.  
  98. ### BEGIN /etc/grub.d/06_grub-customizer_menu_color_helper ###
  99. ### END /etc/grub.d/06_grub-customizer_menu_color_helper ###
  100.  
  101. ### BEGIN /etc/grub.d/10_linux ###
  102. Found linux image: /boot/vmlinuz-linux
  103. Found initrd image: /boot/intel-ucode.img /boot/initramfs-linux.img
  104. menuentry 'EndeavourOS Linux, with Linux linux' --class endeavouros --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-2c11fcb8-08c3-4172-9f8e-23b1b1266b4c' {
  105. load_video
  106. set gfxpayload=keep
  107. insmod gzio
  108. insmod part_msdos
  109. insmod ext2
  110. set root='hd1,msdos1'
  111. if [ x$feature_platform_search_hint = xy ]; then
  112. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 2c11fcb8-08c3-4172-9f8e-23b1b1266b4c
  113. else
  114. search --no-floppy --fs-uuid --set=root 2c11fcb8-08c3-4172-9f8e-23b1b1266b4c
  115. fi
  116. echo 'Loading Linux linux ...'
  117. linux /boot/vmlinuz-linux root=UUID=2c11fcb8-08c3-4172-9f8e-23b1b1266b4c rw loglevel=3 nowatchdog
  118. echo 'Loading initial ramdisk ...'
  119. initrd /boot/intel-ucode.img /boot/initramfs-linux.img
  120. }
  121. Found fallback initrd image(s) in /boot: intel-ucode.img initramfs-linux-fallback.img
  122. menuentry 'EndeavourOS Linux, with Linux linux (fallback initramfs)' --class endeavouros --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-2c11fcb8-08c3-4172-9f8e-23b1b1266b4c' {
  123. load_video
  124. set gfxpayload=keep
  125. insmod gzio
  126. insmod part_msdos
  127. insmod ext2
  128. set root='hd1,msdos1'
  129. if [ x$feature_platform_search_hint = xy ]; then
  130. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 2c11fcb8-08c3-4172-9f8e-23b1b1266b4c
  131. else
  132. search --no-floppy --fs-uuid --set=root 2c11fcb8-08c3-4172-9f8e-23b1b1266b4c
  133. fi
  134. echo 'Loading Linux linux ...'
  135. linux /boot/vmlinuz-linux root=UUID=2c11fcb8-08c3-4172-9f8e-23b1b1266b4c rw loglevel=3 nowatchdog
  136. echo 'Loading initial ramdisk ...'
  137. initrd /boot/intel-ucode.img /boot/initramfs-linux-fallback.img
  138. }
  139.  
  140. ### END /etc/grub.d/10_linux ###
  141.  
  142. ### BEGIN /etc/grub.d/10_linux.bak ###
  143. Found linux image: /boot/vmlinuz-linux
  144. Found initrd image: /boot/intel-ucode.img /boot/initramfs-linux.img
  145. menuentry 'EndeavourOS Linux, with Linux linux' --class endeavouros --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-2c11fcb8-08c3-4172-9f8e-23b1b1266b4c' {
  146. load_video
  147. set gfxpayload=keep
  148. insmod gzio
  149. insmod part_msdos
  150. insmod ext2
  151. set root='hd1,msdos1'
  152. if [ x$feature_platform_search_hint = xy ]; then
  153. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 2c11fcb8-08c3-4172-9f8e-23b1b1266b4c
  154. else
  155. search --no-floppy --fs-uuid --set=root 2c11fcb8-08c3-4172-9f8e-23b1b1266b4c
  156. fi
  157. echo 'Loading Linux linux ...'
  158. linux /boot/vmlinuz-linux root=UUID=2c11fcb8-08c3-4172-9f8e-23b1b1266b4c rw loglevel=3 nowatchdog
  159. echo 'Loading initial ramdisk ...'
  160. initrd /boot/intel-ucode.img /boot/initramfs-linux.img
  161. }
  162. Found fallback initrd image(s) in /boot: intel-ucode.img initramfs-linux-fallback.img
  163. menuentry 'EndeavourOS Linux, with Linux linux (fallback initramfs)' --class endeavouros --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-2c11fcb8-08c3-4172-9f8e-23b1b1266b4c' {
  164. load_video
  165. set gfxpayload=keep
  166. insmod gzio
  167. insmod part_msdos
  168. insmod ext2
  169. set root='hd1,msdos1'
  170. if [ x$feature_platform_search_hint = xy ]; then
  171. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 2c11fcb8-08c3-4172-9f8e-23b1b1266b4c
  172. else
  173. search --no-floppy --fs-uuid --set=root 2c11fcb8-08c3-4172-9f8e-23b1b1266b4c
  174. fi
  175. echo 'Loading Linux linux ...'
  176. linux /boot/vmlinuz-linux root=UUID=2c11fcb8-08c3-4172-9f8e-23b1b1266b4c rw loglevel=3 nowatchdog
  177. echo 'Loading initial ramdisk ...'
  178. initrd /boot/intel-ucode.img /boot/initramfs-linux-fallback.img
  179. }
  180.  
  181. ### END /etc/grub.d/10_linux.bak ###
  182.  
  183. ### BEGIN /etc/grub.d/20_linux_xen ###
  184. ### END /etc/grub.d/20_linux_xen ###
  185.  
  186. ### BEGIN /etc/grub.d/30_os-prober ###
  187. Warning: os-prober will be executed to detect other bootable partitions.
  188. Its output will be used to detect bootable binaries on them and create new boot entries.
  189. Found Debian GNU/Linux bookworm/sid on /dev/sda5
  190. menuentry 'Debian GNU/Linux (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-6.0.0-6-amd64--01a63afe-02e2-422c-8c67-f84034c42cc2' {
  191. insmod part_msdos
  192. insmod ext2
  193. set root='hd0,msdos5'
  194. if [ x$feature_platform_search_hint = xy ]; then
  195. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 01a63afe-02e2-422c-8c67-f84034c42cc2
  196. else
  197. search --no-floppy --fs-uuid --set=root 01a63afe-02e2-422c-8c67-f84034c42cc2
  198. fi
  199. linux /boot/vmlinuz-6.0.0-6-amd64 root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro
  200. initrd /boot/initrd.img-6.0.0-6-amd64
  201. }
  202. menuentry 'Debian GNU/Linux, with Linux 6.0.0-6-amd64 (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-6.0.0-6-amd64--01a63afe-02e2-422c-8c67-f84034c42cc2' {
  203. insmod part_msdos
  204. insmod ext2
  205. set root='hd0,msdos5'
  206. if [ x$feature_platform_search_hint = xy ]; then
  207. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 01a63afe-02e2-422c-8c67-f84034c42cc2
  208. else
  209. search --no-floppy --fs-uuid --set=root 01a63afe-02e2-422c-8c67-f84034c42cc2
  210. fi
  211. linux /boot/vmlinuz-6.0.0-6-amd64 root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro
  212. initrd /boot/initrd.img-6.0.0-6-amd64
  213. }
  214. menuentry 'Debian GNU/Linux, with Linux 6.0.0-6-amd64 (recovery mode) (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-6.0.0-6-amd64-root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro single-01a63afe-02e2-422c-8c67-f84034c42cc2' {
  215. insmod part_msdos
  216. insmod ext2
  217. set root='hd0,msdos5'
  218. if [ x$feature_platform_search_hint = xy ]; then
  219. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 01a63afe-02e2-422c-8c67-f84034c42cc2
  220. else
  221. search --no-floppy --fs-uuid --set=root 01a63afe-02e2-422c-8c67-f84034c42cc2
  222. fi
  223. linux /boot/vmlinuz-6.0.0-6-amd64 root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro single
  224. initrd /boot/initrd.img-6.0.0-6-amd64
  225. }
  226. menuentry 'Debian GNU/Linux, with Linux 5.19.0-1-amd64 (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-5.19.0-1-amd64--01a63afe-02e2-422c-8c67-f84034c42cc2' {
  227. insmod part_msdos
  228. insmod ext2
  229. set root='hd0,msdos5'
  230. if [ x$feature_platform_search_hint = xy ]; then
  231. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 01a63afe-02e2-422c-8c67-f84034c42cc2
  232. else
  233. search --no-floppy --fs-uuid --set=root 01a63afe-02e2-422c-8c67-f84034c42cc2
  234. fi
  235. linux /boot/vmlinuz-5.19.0-1-amd64 root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro
  236. initrd /boot/initrd.img-5.19.0-1-amd64
  237. }
  238. menuentry 'Debian GNU/Linux, with Linux 5.19.0-1-amd64 (recovery mode) (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-5.19.0-1-amd64-root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro single-01a63afe-02e2-422c-8c67-f84034c42cc2' {
  239. insmod part_msdos
  240. insmod ext2
  241. set root='hd0,msdos5'
  242. if [ x$feature_platform_search_hint = xy ]; then
  243. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 01a63afe-02e2-422c-8c67-f84034c42cc2
  244. else
  245. search --no-floppy --fs-uuid --set=root 01a63afe-02e2-422c-8c67-f84034c42cc2
  246. fi
  247. linux /boot/vmlinuz-5.19.0-1-amd64 root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro single
  248. initrd /boot/initrd.img-5.19.0-1-amd64
  249. }
  250.  
  251. ### END /etc/grub.d/30_os-prober ###
  252.  
  253. ### BEGIN /etc/grub.d/30_os-prober.bak ###
  254. Warning: os-prober will be executed to detect other bootable partitions.
  255. Its output will be used to detect bootable binaries on them and create new boot entries.
  256. Found Debian GNU/Linux bookworm/sid on /dev/sda5
  257. menuentry 'Debian GNU/Linux (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-6.0.0-6-amd64--01a63afe-02e2-422c-8c67-f84034c42cc2' {
  258. insmod part_msdos
  259. insmod ext2
  260. set root='hd0,msdos5'
  261. if [ x$feature_platform_search_hint = xy ]; then
  262. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 01a63afe-02e2-422c-8c67-f84034c42cc2
  263. else
  264. search --no-floppy --fs-uuid --set=root 01a63afe-02e2-422c-8c67-f84034c42cc2
  265. fi
  266. linux /boot/vmlinuz-6.0.0-6-amd64 root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro
  267. initrd /boot/initrd.img-6.0.0-6-amd64
  268. }
  269. menuentry 'Debian GNU/Linux, with Linux 6.0.0-6-amd64 (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-6.0.0-6-amd64--01a63afe-02e2-422c-8c67-f84034c42cc2' {
  270. insmod part_msdos
  271. insmod ext2
  272. set root='hd0,msdos5'
  273. if [ x$feature_platform_search_hint = xy ]; then
  274. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 01a63afe-02e2-422c-8c67-f84034c42cc2
  275. else
  276. search --no-floppy --fs-uuid --set=root 01a63afe-02e2-422c-8c67-f84034c42cc2
  277. fi
  278. linux /boot/vmlinuz-6.0.0-6-amd64 root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro
  279. initrd /boot/initrd.img-6.0.0-6-amd64
  280. }
  281. menuentry 'Debian GNU/Linux, with Linux 6.0.0-6-amd64 (recovery mode) (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-6.0.0-6-amd64-root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro single-01a63afe-02e2-422c-8c67-f84034c42cc2' {
  282. insmod part_msdos
  283. insmod ext2
  284. set root='hd0,msdos5'
  285. if [ x$feature_platform_search_hint = xy ]; then
  286. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 01a63afe-02e2-422c-8c67-f84034c42cc2
  287. else
  288. search --no-floppy --fs-uuid --set=root 01a63afe-02e2-422c-8c67-f84034c42cc2
  289. fi
  290. linux /boot/vmlinuz-6.0.0-6-amd64 root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro single
  291. initrd /boot/initrd.img-6.0.0-6-amd64
  292. }
  293. menuentry 'Debian GNU/Linux, with Linux 5.19.0-1-amd64 (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-5.19.0-1-amd64--01a63afe-02e2-422c-8c67-f84034c42cc2' {
  294. insmod part_msdos
  295. insmod ext2
  296. set root='hd0,msdos5'
  297. if [ x$feature_platform_search_hint = xy ]; then
  298. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 01a63afe-02e2-422c-8c67-f84034c42cc2
  299. else
  300. search --no-floppy --fs-uuid --set=root 01a63afe-02e2-422c-8c67-f84034c42cc2
  301. fi
  302. linux /boot/vmlinuz-5.19.0-1-amd64 root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro
  303. initrd /boot/initrd.img-5.19.0-1-amd64
  304. }
  305. menuentry 'Debian GNU/Linux, with Linux 5.19.0-1-amd64 (recovery mode) (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-5.19.0-1-amd64-root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro single-01a63afe-02e2-422c-8c67-f84034c42cc2' {
  306. insmod part_msdos
  307. insmod ext2
  308. set root='hd0,msdos5'
  309. if [ x$feature_platform_search_hint = xy ]; then
  310. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 01a63afe-02e2-422c-8c67-f84034c42cc2
  311. else
  312. search --no-floppy --fs-uuid --set=root 01a63afe-02e2-422c-8c67-f84034c42cc2
  313. fi
  314. linux /boot/vmlinuz-5.19.0-1-amd64 root=UUID=01a63afe-02e2-422c-8c67-f84034c42cc2 ro single
  315. initrd /boot/initrd.img-5.19.0-1-amd64
  316. }
  317.  
  318. ### END /etc/grub.d/30_os-prober.bak ###
  319.  
  320. ### BEGIN /etc/grub.d/30_uefi-firmware ###
  321. Adding boot menu entry for UEFI Firmware Settings ...
  322. if [ "$grub_platform" = "efi" ]; then
  323. fwsetup --is-supported
  324. if [ "$?" = 0 ]; then
  325. menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
  326. fwsetup
  327. }
  328. fi
  329. fi
  330. ### END /etc/grub.d/30_uefi-firmware ###
  331.  
  332. ### BEGIN /etc/grub.d/40_custom ###
  333. # This file provides an easy way to add custom menu entries. Simply type the
  334. # menu entries you want to add after this comment. Be careful not to change
  335. # the 'exec tail' line above.
  336. ### END /etc/grub.d/40_custom ###
  337.  
  338. ### BEGIN /etc/grub.d/41_custom ###
  339. if [ -f ${config_directory}/custom.cfg ]; then
  340. source ${config_directory}/custom.cfg
  341. elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
  342. source $prefix/custom.cfg
  343. fi
  344. ### END /etc/grub.d/41_custom ###
  345.  
  346. ### BEGIN /etc/grub.d/43_uefi-firmware ###
  347. ### END /etc/grub.d/43_uefi-firmware ###
  348.  
  349. ### BEGIN /etc/grub.d/45_custom ###
  350. if [ -f ${config_directory}/custom.cfg ]; then
  351. source ${config_directory}/custom.cfg
  352. elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
  353. source $prefix/custom.cfg
  354. fi
  355. ### END /etc/grub.d/45_custom ###
  356.  
  357. ### BEGIN /etc/grub.d/LS_custom ###
  358. # This file provides an easy way to add custom menu entries. Simply type the
  359. # menu entries you want to add after this comment. Be careful not to change
  360. # the 'exec tail' line above.
  361. menuentry "Windows 20 (on /dev/sda1)" --class windows --class os $menuentry_id_option 'osprober-chain-D8B4CBFDB4CBDBDE' {
  362. insmod part_msdos
  363. insmod ntfs
  364. set root='hd0,msdos1'
  365. if [ x$feature_platform_search_hint = xy ]; then
  366. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 D8B4CBFDB4CBDBDE
  367. else
  368. search --no-floppy --fs-uuid --set=root D8B4CBFDB4CBDBDE
  369. fi
  370. parttool ${root} hidden-
  371. drivemap -s (hd0) ${root}
  372. chainloader +1 ntldr /bootmgr
  373.  
  374. }
  375. menuentry "Windows"{
  376. set root='(hd0,1)'
  377. search --no-floppy --fs-uuid --set D8B4CBFDB4CBDBDE
  378. drivemap -s (hd0) ${root}
  379. chainloader +1
  380. }
  381. ### END /etc/grub.d/LS_custom ###
  382.  
  383. ### BEGIN /etc/grub.d/LS_linux.bak ###
  384. /etc/grub.d/proxifiedScripts/linux.bak: line 200: version_find_latest: command not found
  385. TARGET SOURCE FSTYPE OPTIONS
  386. / /dev/sdb1 ext4 rw,noatime
  387. ├─/run/media/trevor/01a63afe-02e2-422c-8c67-f84034c42cc2 /dev/sda5 ext4 rw,nosuid,nodev,rel
  388. └─/run/media/trevor/Timeshift /dev/sda2 ext4 rw,nosuid,nodev,rel
  389. [trevor@trevor-endeavour ~]$
  390.  
Add Comment
Please, Sign In to add comment