Changes between Version 12 and Version 13 of notes/linux
- Timestamp:
- 2016-07-24T06:24:39Z (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
notes/linux
v12 v13 30 30 [attachment:change_tables.sh ссылка] 31 31 32 [[br]] 33 32 34 == размер консоли 80x25 centos7 внутри виртуальной машины vmware 33 35 `vmwgfx.enable_fbdev=0` в `/etc/default/grub` и `grub2-mkconfig -o /boot/grub2/grub.cfg`. так же не лишним будет убрать `rhgb quiet`. … … 57 59 [[br]] 58 60 61 == чтобы загрузка не запиналась на `fsck` в centos6 62 `/etc/sysconfig/autofsck`: 63 {{{#!bash 64 # autofsck config 65 AUTOFSCK_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 }}}