Changes between Version 12 and Version 13 of notes/linux


Ignore:
Timestamp:
2016-07-24T06:24:39Z (8 years ago)
Author:
root
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • notes/linux

    v12 v13  
    3030[attachment:change_tables.sh ссылка]
    3131
     32[[br]]
     33
    3234== размер консоли 80x25 centos7 внутри виртуальной машины vmware
    3335`vmwgfx.enable_fbdev=0` в `/etc/default/grub` и `grub2-mkconfig -o /boot/grub2/grub.cfg`. так же не лишним будет убрать `rhgb quiet`.
     
    5759[[br]]
    5860
     61== чтобы загрузка не запиналась на `fsck` в centos6
     62`/etc/sysconfig/autofsck`:
     63{{{#!bash
     64# autofsck config
     65AUTOFSCK_OPT="-y"
     66}}}
     67`/etc/e2fsck.conf`:
     68{{{#!bash
     69#
     70# disable mount and write time check on system boot
     71#
     72[options]
     73 broken_system_clock=1
     74
     75[problems]
     76 # Superblock last mount time is in the future (PR_0_FUTURE_SB_LAST_MOUNT).
     77 0x000031 = {
     78  preen_ok = true
     79  preen_nomessage = true
     80 }
     81 # Superblock last write time is in the future (PR_0_FUTURE_SB_LAST_WRITE).
     82 0x000032 = {
     83  preen_ok = true
     84  preen_nomessage = true
     85 }
     86}}}