生信星球学习笔记-Day1
今天安装了xshell、幕布,利用服务器学习了Linux。下面总结一下遇到的问题
1、安装xshell后连接服务器时应该使用ssh 用户名@IP地址 ,操作过程中直接在@后输入了密码
2、删除操作时没有注意空目录与非空目录的区别
rm: cannot remove 'huahua': Directory not empty
3、cat操作时没有输入完整文件名称或将文件名称导致无法输出,以为是vi操作过程中退出或保存有误,按Ctrl+C退出后再vi编辑确定的确是按键盘Esc即可退出编辑
bio35@VM-0-10-ubuntu:~/tmp$ cat
bio35@VM-0-10-ubuntu:~/tmp$ cat hello_word.txt
cat: hello_word.txt: No such file or directory
bio35@VM-0-10-ubuntu:~/tmp$ cat hello_world.txt
Hello
linux and R
4、head自定义操作过程中误将head -n的n以为是自定义数字
bio35@VM-0-10-ubuntu:~/tmp$ head-2 hello_world.txt
head-2: command not found
bio35@VM-0-10-ubuntu:~/tmp$ head n2 hello_world.txt
bio35@VM-0-10-ubuntu:~/tmp$ head -n2 hello_world.txt
Hello
以下是用幕布制作的思维导图
生信星球学习Day1.png
服务器、学习指导——花花老师(微信公众号生信星球)
今天又复习了一下怎么用Markdown
花花老师的Linux1
花花老师的Linux2