1 2 3 4 5 6 7 8 9 10 |
# 掛載全部磁區 mount -a # 列出全部磁區 df -h # 修復全部磁區 fsck -y # 修復特定磁區 fsck -y 磁區(ex: fsck -y /dev/sda1) # 修復完後需要重啟系統 reboot |
日期: 2018 年 10 月 2 日
CSS背景圖片置中不重複
1 2 3 4 5 6 7 8 |
<style> body { background-position: center center; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; } </style> |