去掉gedit编辑文件时生成的临时文件
gedit -> 编辑 -> 首选项 -> 编辑器 -> 在保存前创建备份文件
以前的硬盘分割MBR常常说MBR是512bytes,这是早期的规格,就是指第1個分割区前面的空白是512 bytes = 1 sector
现在Ubuntu预设,第1個分割区前面的空白是1048576 bytes = 1 MiB = 2048 sectors = 0 ~ 2047 sector
所以gparted第一個分割区前面预留1 MiB空白空间
fdisk 指令
parted 指令
gdisk 指令
....
第一个分区都是从第2048个sector开始
这1 MiB的用途
除了前面512 bytes还是存放MBR信息以外 (0~445放开机引导信息446~511放分区信息)
后面还有2047个512 sectors留给其它程序使用,例如RAID LVM等等
sudo blockdev --getbsz /dev/sda1
rlwrap is a wrapper that uses the GNU readline library to allow the editing of keyboard input for any other command.
Input history is kept between invocations, separately for each command; history completion and search work as in bash and completion word lists can be specified on the command line.
[A-Z]这种正则表达式可能被解释为ABCDEFGHIJKLMNOPQRSTUVWXYZ,
也可能被解释为AbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ
例如, shell:
$ ls /usr/sbin/[A-Z]*
/usr/sbin/bccmd /usr/sbin/fdformat /usr/sbin/lpinfo /usr/sbin/readprofile /usr/sbin/update-dictcommon-hunspell
$ ls /usr/sbin/[[:upper:]]*
/usr/sbin/ModemManager /usr/sbin/NetworkManager
而, erlang:
filelib:wildcard("/usr/sbin/[A-Z]*").
["/usr/sbin/ModemManager","/usr/sbin/NetworkManager"]
貌似只有shell有这个问题
1 | $ sudo chmod +x ./VMware-Workstation-Full-11.1.2-2780323.x86_64.bundle |
tag:
缺失模块。
1、请确保node版本大于6.2
2、在博客根目录(注意不是yilia根目录)执行以下命令:
npm i hexo-generator-json-content --save
3、在根目录_config.yml里添加配置:
jsonContent: meta: false pages: false posts: title: true date: true path: true text: false raw: false content: false slug: false updated: false comments: false link: false permalink: false excerpt: false categories: false tags: true