1.如何登陆云服务器上的linux(mac电脑为例)
直接在terminal页面上输入:ssh 用户名@ip地址
(注意要手动打进去)
ssh bio04@122.51.158.112
bio04@122.51.158.112's password:
Welcome to Ubuntu 18.04.1 LTS (GNU/Linux 4.15.0-54-generic x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage
System information as of Wed Jun 17 08:53:26 CST 2020
System load: 0.0 Processes: 92
Usage of /: 31.0% of 49.15GB Users logged in: 0
Memory usage: 27% IP address for eth0: 172.17.0.10
Swap usage: 0%
* MicroK8s gets a native Windows installer and command-line integration.
https://ubuntu.com/blog/microk8s-installers-windows-and-macos
* Canonical Livepatch is available for installation.
- Reduce system reboots and improve kernel security. Activate at:
https://ubuntu.com/livepatch
*** System restart required ***
Last login: Tue Jun 16 14:35:32 2020 from 112.10.132.75
bio04@VM-0-10-ubuntu:~$
2.一些关于linux的基本语法
1.png新建空目录,并显示列表
bio04@VM-0-10-ubuntu:~$ mkdir biosoft
bio04@VM-0-10-ubuntu:~$ mkdir src
bio04@VM-0-10-ubuntu:~$ mkdir project
bio04@VM-0-10-ubuntu:~$ ls
biosoft project src tmp
使用vi编辑器
bio04@VM-0-10-ubuntu:~/rm_test/huahua/tmp$ head -n 3 hello_world.txt
hihshohiho
boihoihioh
hhuh
bio04@VM-0-10-ubuntu:~/rm_test/huahua/tmp$
详细的用法请看https://mp.weixin.qq.com/s/d9EjJpp3XoW3Sp3pIrEh5g
使用cp语句复制文件
bio04@VM-0-10-ubuntu:~/rm_test/huahua/tmp$ cp hello_world.txt new_file.txt
bio04@VM-0-10-ubuntu:~/rm_test/huahua/tmp$ cat new_file.txt
hihshohiho
boihoihioh
hhuh
hhohphou
3.课后问题
ls输出的是横向的列表,怎样输出长格式列表(提示:搜索ls)
ls(选项)(参数); ls -l
如何查看长格式列表中文件的大小?(提示:ls)
ls -k #-k:以KB(千字节)为单位显示文件大小
查看Linux系统版本、内存与硬盘空间?(提示:分别是三个命令)
查看系统版本:lsb_release -a
查看内核版本:uname -a
查看硬盘空间情况:df -l
查看内存: free -m
怎样建立类似/tmp/tmp1/tmp1.1这样的层级目录(提示:搜索mkdir)
mkdir -p tem/tem1/tem1.1
怎样删除这些层级目录(提示:搜索rm)
rm -r或-R:递归处理,将指定目录下的所有文件与子目录一并处理;
(以上学习内容来自微信公众号——生信星球)
网友评论