Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.61 KB | None | 0 0
  1. tony@tony-desktop ~ $ (cat /etc/defautl/grub ; cat /boot/grub/grub.cfg; inxi -tcm20)
  2. cat: /etc/defautl/grub: No such file or directory
  3. #
  4. # DO NOT EDIT THIS FILE
  5. #
  6. # It is automatically generated by grub-mkconfig using templates
  7. # from /etc/grub.d and settings from /etc/default/grub
  8. #
  9.  
  10. ### BEGIN /etc/grub.d/00_header ###
  11. if [ -s $prefix/grubenv ]; then
  12. set have_grubenv=true
  13. load_env
  14. fi
  15. set default="0"
  16. if [ "${prev_saved_entry}" ]; then
  17. set saved_entry="${prev_saved_entry}"
  18. save_env saved_entry
  19. set prev_saved_entry=
  20. save_env prev_saved_entry
  21. set boot_once=true
  22. fi
  23.  
  24. function savedefault {
  25. if [ -z "${boot_once}" ]; then
  26. saved_entry="${chosen}"
  27. save_env saved_entry
  28. fi
  29. }
  30.  
  31. function recordfail {
  32. set recordfail=1
  33. if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  34. }
  35.  
  36. function load_video {
  37. insmod vbe
  38. insmod vga
  39. insmod video_bochs
  40. insmod video_cirrus
  41. }
  42.  
  43. insmod part_msdos
  44. insmod ext2
  45. set root='(hd0,msdos1)'
  46. search --no-floppy --fs-uuid --set=root 121e8d8b-3879-4277-9824-5b154c23ec3a
  47. if loadfont /usr/share/grub/unicode.pf2 ; then
  48. set gfxmode=auto
  49. load_video
  50. insmod gfxterm
  51. insmod part_msdos
  52. insmod ext2
  53. set root='(hd0,msdos1)'
  54. search --no-floppy --fs-uuid --set=root 121e8d8b-3879-4277-9824-5b154c23ec3a
  55. set locale_dir=($root)/boot/grub/locale
  56. set lang=en_US
  57. insmod gettext
  58. fi
  59. terminal_output gfxterm
  60. if [ "${recordfail}" = 1 ]; then
  61. set timeout=-1
  62. else
  63. set timeout=10
  64. fi
  65. ### END /etc/grub.d/00_header ###
  66.  
  67. ### BEGIN /etc/grub.d/05_debian_theme ###
  68. set menu_color_normal=white/black
  69. set menu_color_highlight=black/light-gray
  70. ### END /etc/grub.d/05_debian_theme ###
  71.  
  72. ### BEGIN /etc/grub.d/06_mint_theme ###
  73. set menu_color_normal=white/black
  74. set menu_color_highlight=white/light-gray
  75. ### END /etc/grub.d/06_mint_theme ###
  76.  
  77. ### BEGIN /etc/grub.d/10_linux ###
  78. function gfxmode {
  79. set gfxpayload="$1"
  80. if [ "$1" = "keep" ]; then
  81. set vt_handoff=vt.handoff=7
  82. else
  83. set vt_handoff=
  84. fi
  85. }
  86. if [ ${recordfail} != 1 ]; then
  87. if [ -e ${prefix}/gfxblacklist.txt ]; then
  88. if hwmatch ${prefix}/gfxblacklist.txt 3; then
  89. if [ ${match} = 0 ]; then
  90. set linux_gfx_mode=keep
  91. else
  92. set linux_gfx_mode=text
  93. fi
  94. else
  95. set linux_gfx_mode=text
  96. fi
  97. else
  98. set linux_gfx_mode=keep
  99. fi
  100. else
  101. set linux_gfx_mode=text
  102. fi
  103. export linux_gfx_mode
  104. if [ "$linux_gfx_mode" != "text" ]; then load_video; fi
  105. menuentry 'Linux Mint 13 Cinnamon 32-bit, 3.2.0-23-generic (/dev/sda1)' --class linuxmint --class gnu-linux --class gnu --class os {
  106. recordfail
  107. gfxmode $linux_gfx_mode
  108. insmod gzio
  109. insmod part_msdos
  110. insmod ext2
  111. set root='(hd0,msdos1)'
  112. search --no-floppy --fs-uuid --set=root 121e8d8b-3879-4277-9824-5b154c23ec3a
  113. linux /boot/vmlinuz-3.2.0-23-generic root=UUID=121e8d8b-3879-4277-9824-5b154c23ec3a ro quiet splash $vt_handoff
  114. initrd /boot/initrd.img-3.2.0-23-generic
  115. }
  116. menuentry 'Linux Mint 13 Cinnamon 32-bit, 3.2.0-23-generic (/dev/sda1) -- recovery mode' --class linuxmint --class gnu-linux --class gnu --class os {
  117. recordfail
  118. insmod gzio
  119. insmod part_msdos
  120. insmod ext2
  121. set root='(hd0,msdos1)'
  122. search --no-floppy --fs-uuid --set=root 121e8d8b-3879-4277-9824-5b154c23ec3a
  123. echo 'Loading Linux 3.2.0-23-generic ...'
  124. linux /boot/vmlinuz-3.2.0-23-generic root=UUID=121e8d8b-3879-4277-9824-5b154c23ec3a ro recovery nomodeset
  125. echo 'Loading initial ramdisk ...'
  126. initrd /boot/initrd.img-3.2.0-23-generic
  127. }
  128. ### END /etc/grub.d/10_linux ###
  129.  
  130. ### BEGIN /etc/grub.d/10_lupin ###
  131. ### END /etc/grub.d/10_lupin ###
  132.  
  133. ### BEGIN /etc/grub.d/20_linux_xen ###
  134. ### END /etc/grub.d/20_linux_xen ###
  135.  
  136. ### BEGIN /etc/grub.d/20_memtest86+ ###
  137. menuentry "Memory test (memtest86+)" {
  138. insmod part_msdos
  139. insmod ext2
  140. set root='(hd0,msdos1)'
  141. search --no-floppy --fs-uuid --set=root 121e8d8b-3879-4277-9824-5b154c23ec3a
  142. linux16 /boot/memtest86+.bin
  143. }
  144. menuentry "Memory test (memtest86+, serial console 115200)" {
  145. insmod part_msdos
  146. insmod ext2
  147. set root='(hd0,msdos1)'
  148. search --no-floppy --fs-uuid --set=root 121e8d8b-3879-4277-9824-5b154c23ec3a
  149. linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  150. }
  151. ### END /etc/grub.d/20_memtest86+ ###
  152.  
  153. ### BEGIN /etc/grub.d/30_os-prober ###
  154. menuentry "Microsoft Windows XP Professional (on /dev/sdb1)" --class windows --class os {
  155. insmod part_msdos
  156. insmod ntfs
  157. set root='(hd1,msdos1)'
  158. search --no-floppy --fs-uuid --set=root 02B4F395B4F38985
  159. drivemap -s (hd0) ${root}
  160. chainloader +1
  161. }
  162. ### END /etc/grub.d/30_os-prober ###
  163.  
  164. ### BEGIN /etc/grub.d/40_custom ###
  165. # This file provides an easy way to add custom menu entries. Simply type the
  166. # menu entries you want to add after this comment. Be careful not to change
  167. # the 'exec tail' line above.
  168. ### END /etc/grub.d/40_custom ###
  169.  
  170. ### BEGIN /etc/grub.d/41_custom ###
  171. if [ -f $prefix/custom.cfg ]; then
  172. source $prefix/custom.cfg;
  173. fi
  174. ### END /etc/grub.d/41_custom ###
  175. Processes: CPU - % used - top 20 active
  176. 1: cpu: 21.7% command: cinnamon pid: 1553
  177. 2: cpu: 2.3% command: bash pid: 27426
  178. 3: cpu: 1.7% command: X pid: 976
  179. 4: cpu: 1.3% command: midori pid: 26293
  180. 5: cpu: 0.7% command: nautilus pid: 1593
  181. 6: cpu: 0.7% command: xchat pid: 1728
  182. 7: cpu: 0.5% command: gnome-terminal pid: 26545
  183. 8: cpu: 0.4% command: synaptic pid: 26433
  184. 9: cpu: 0.0% command: mintWelcome.py (started by: python) pid: 1607
  185. 10: cpu: 0.0% command: bash pid: 26552
  186. 11: cpu: 0.0% command: jockey-gtk (started by: python) pid: 1777
  187. 12: cpu: 0.0% command: gnome-settings-daemon pid: 1392
  188. 13: cpu: 0.0% command: init pid: 1
  189. 14: cpu: 0.0% command: mintUpdate.py (started by: python) pid: 1603
  190. 15: cpu: 0.0% command: polkit-gnome-authentication-agent-1 pid: 1597
  191. 16: cpu: 0.0% command: polkitd pid: 732
  192. 17: cpu: 0.0% command: dbus-daemon pid: 672
  193. 18: cpu: 0.0% command: dbus-daemon pid: 1382
  194. 19: cpu: 0.0% daemon: ~kworker/u:0~ pid: 5
  195. 20: cpu: 0.0% daemon: ~kworker/0:0~ pid: 7994
  196. Memory - MB / % used - top 20 active
  197. 1: mem: 140.52MB (4.6%) command: X pid: 976
  198. 2: mem: 106.22MB (3.5%) command: midori pid: 26293
  199. 3: mem: 98.80MB (3.2%) command: cinnamon pid: 1553
  200. 4: mem: 80.03MB (2.6%) command: mintWelcome.py (started by: python) pid: 1607
  201. 5: mem: 45.68MB (1.5%) command: synaptic pid: 26433
  202. 6: mem: 25.16MB (0.8%) command: nautilus pid: 1593
  203. 7: mem: 24.86MB (0.8%) command: jockey-gtk (started by: python) pid: 1777
  204. 8: mem: 22.77MB (0.7%) command: mintUpdate.py (started by: python) pid: 1603
  205. 9: mem: 22.46MB (0.7%) command: xchat pid: 1728
  206. 10: mem: 15.16MB (0.5%) command: gnome-terminal pid: 26545
  207. 11: mem: 14.72MB (0.4%) command: gnome-settings-daemon pid: 1392
  208. 12: mem: 13.49MB (0.4%) command: nm-applet pid: 1592
  209. 13: mem: 12.78MB (0.4%) command: polkit-gnome-authentication-agent-1 pid: 1597
  210. 14: mem: 10.45MB (0.3%) command: colord pid: 1555
  211. 15: mem: 7.77MB (0.2%) command: gnome-session pid: 1299
  212. 16: mem: 7.34MB (0.2%) command: zeitgeist-fts pid: 1744
  213. 17: mem: 7.18MB (0.2%) command: gnome-screensaver pid: 1729
  214. 18: mem: 7.17MB (0.2%) command: gdu-notification-daemon pid: 1687
  215. 19: mem: 6.91MB (0.2%) command: gnome-fallback-mount-helper pid: 1598
  216. 20: mem: 5.36MB (0.1%) command: zeitgeist-datahub pid: 1730
  217. tony@tony-desktop ~ $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement