linux中怎么在文件命名名称中使用/斜杠字符?
省流: 在类linux系统中做不到/斜杠作为文件名称一部分; /字符是linux的保留关键字.
以下是具体解释, 同样还包含了万一你有了这样的文件怎么处理掉/字符, 以便系统能识别.
https://www.baeldung.com/linux/filename-with-slash
省流: 在类linux系统中做不到/斜杠作为文件名称一部分; /字符是linux的保留关键字.
以下是具体解释, 同样还包含了万一你有了这样的文件怎么处理掉/字符, 以便系统能识别.
https://www.baeldung.com/linux/filename-with-slash
docker decktop开始收费了,不过docker还是免费开源的. docker decktop做角色其实就是 虚拟机 + linux系统 + docker; 因为docker是利用linux内核来管理资源, 所以你的mac没法直接跑docker(mac系统是没有linux内核的). 因为docker还是免费开源,你自己搭建一个linux环境也是能直接使用docker的. 调研多种方案给出最推荐的方式.避免你选择困难症.
注意: docker卸载后所有容器和镜像都会没掉,所以卸载前一定要记得备份
备份也很简单,步骤如下:
In the Terminal window, type the following command to list all your Docker images:
docker images
Type the following command to save the images to a .tar file:
docker save -o /path/to/save/myimage.tar myimage
Replace /path/to/save/
with the path to the directory where you want to save the .tar file, and myimage
with the image name or ID you noted in step 3.
When you reinstall Docker Desktop, you can restore the saved images by typing the following commands:
docker load -i /path/to/save/myimage.tar
Replace /path/to/save/
with the path to the directory where you saved the .tar file, and myimage
with the image name or ID you want to restore.
Repeat this command for each saved image.
读完后影响较深刻的点: 自信和处理应对不确定性是比较重要的2项能力.
背景: typecho的snowstrom飘雪插件可以增加网站的趣味性,不过有事在浏览器可能需要关闭飘雪效果,所以博主开发了个开关供用户控制!
插件功能说明:在博客页面右上角嵌入个开关,可由用户开启/关闭飘雪效果!
<img src="http://www.example.com/drawing.jpg" alt="drawing" width="300px" height="300px"/>