10 2020 档案
摘要:mount -o remount,rw /system 调整挂载选项位置则正常 mount -o rw,remount /system
阅读全文
摘要:echo $# if [ $# -lt 2 ]; then echo "input basis folder base:" read src echo "input target folder base:" read target echo "input output folder base:" r
阅读全文
摘要:1 promise 的then传入非函数 会被忽略 2 promise 的then传入函数不带返回值,下一个then会拿到undefined 参考: 1 https://segmentfault.com/a/1190000010420744 promise 与 observable区别 https:
阅读全文
摘要:rsync -e 'ssh -p2020' -av /boot/vmlinuz.img-5.4.0-49-generic root@192.168.1.99:/nfsroot/rootfs/initrd.img
阅读全文
摘要:1 安装软件 rpcbind又叫portmap apt-get install nfs-kernel-server nfs-common rpcbind 2 配置nfs目录 mkdir -p /nfsroot/rootfs root@raspberrypi:/opt/docker/seafile#
阅读全文
摘要:1 U盘分区 使用mbr分区表 2 挂载U盘 mkdir /mnt/boot && mount /dev/sdX1 /mnt/boot 3 安装grub2到 U盘 # BIOS grub-install --target=i386-pc --recheck --boot-directory=/mnt
阅读全文