文件名称:律压缩扩张方法matlab代码-introduction-to-data-science:UIUC的INFO490课程
文件大小:12.39MB
文件格式:ZIP
更新时间:2024-06-10 09:42:12
系统开源
律压缩扩张方法matlab代码数据科学导论============ 第一周:Unix入门 第1课:虚拟化和Docker dockerizing应用程序: 运行应用程序: sudo docker run ubuntu /bin/echo 'hello world' 在后台运行“ hello world”应用程序(作为守护程序): sudo docker run -d ubuntu /bin/sh -c "while truel; do echo hello world; sleep 1; done" 检查守护进程hello world的日志: sudo docker logs [ID of the container] docker sudo docker logs [ID of the container] 停止容器: docker stop 第2课:Unix Shell pwd, ls, cd 确定文件的类型: file [filename] 查看以ASCII码编码的文件内容: less 处理文件和指令: cp, mv, mkdir, rm, ln 可以安全地使用cp -i ...和