学习小组Day2笔记-邬阳

生信星球学习day2

一、Linux使用

  • 纯linux操作系统
  • 虚拟机
  • 本地服务器
  • 云服务器

二、登录方法(windows)

百度网盘下载xshell
运行,输入
ssh bio05@42.192.49.xx
显示:

Connecting to 42.192.49.166:22...
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.

输入密码后,显示

Welcome to Ubuntu 18.04.4 LTS (GNU/Linux 4.15.0-118-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage

  System information as of Tue Apr 20 17:49:32 CST 2021

  System load:  0.0                Processes:           86
  Usage of /:   12.6% of 49.15GB   Users logged in:     0
  Memory usage: 13%                IP address for eth0: 172.17.0.6
  Swap usage:   0%

 * Introducing self-healing high availability clusters in MicroK8s.
   Simple, hardened, Kubernetes for production, from RaspberryPi to DC.

     https://microk8s.io/high-availability

 * Canonical Livepatch is available for installation.
   - Reduce system reboots and improve kernel security. Activate at:
     https://ubuntu.com/livepatch
New release '20.04.2 LTS' available.
Run 'do-release-upgrade' to upgrade to it.



The programs included with the Ubuntu system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by
applicable law.

/usr/bin/xauth:  file /home/bio05/.Xauthority does not exist

登录成功

#显示当前路径
bio05@VM-0-6-ubuntu:~$ pwd 
/home/bio05

#新建操作
bio05@VM-0-6-ubuntu:~$ mkdir biosoft   #新建文件夹biosoft
bio05@VM-0-6-ubuntu:~$ mkdir project #新建文件夹project
bio05@VM-0-6-ubuntu:~$ mkdir tmp #新建文件夹tmp
bio05@VM-0-6-ubuntu:~$ mkdir src #新建文件夹src

#显示列表
bio05@VM-0-6-ubuntu:~$ ls #显示列表
biosoft  project  src  tmp

#删除操作
bio05@VM-0-6-ubuntu:~$ mkdir rm_test #建立rm_test文件夹
bio05@VM-0-6-ubuntu:~$ cd rm_test/ #进入rm_test文件夹
bio05@VM-0-6-ubuntu:~/rm_test$ touch doodle.txt #新建doodle.txt文件
bio05@VM-0-6-ubuntu:~/rm_test$ ls #查看列表
doodle.txt
bio05@VM-0-6-ubuntu:~/rm_test$ mkdir huahua #新建huahua文件夹
bio05@VM-0-6-ubuntu:~/rm_test$ cd huahua/ #进入huahua文件夹
bio05@VM-0-6-ubuntu:~/rm_test/huahua$ touch huahua.txt #新建huahua.txt文本文件
bio05@VM-0-6-ubuntu:~/rm_test/huahua$ cd ..#返回到上级目录
bio05@VM-0-6-ubuntu:~/rm_test$ ls #显示列表
doodle.txt  huahua
bio05@VM-0-6-ubuntu:~/rm_test$ rm doodle.txt #删除doodle.txt 文件
bio05@VM-0-6-ubuntu:~/rm_test$ ls #删除成功
huahua
bio05@VM-0-6-ubuntu:~/rm_test$ rm -r huahua/ #删除非空文件夹 huahua
bio05@VM-0-6-ubuntu:~/rm_test$ ls #删除成功
bio05@VM-0-6-ubuntu:~/rm_test$ cd ..#返回上级文件夹
bio05@VM-0-6-ubuntu:~$ rmdir rm_test/ #删除空文件夹
bio05@VM-0-6-ubuntu:~$ ls #删除成功
biosoft  project  src  tmp

#文件操作
bio05@VM-0-6-ubuntu:~$ cd tmp/ #进入tmp
bio05@VM-0-6-ubuntu:~/tmp$ vi hello_world.txt #建立并编辑文本文档
bio05@VM-0-6-ubuntu:~/tmp$ cat hello_world.txt #输出文档内容到屏幕
Thanks teachers this is  hello_world.txt 
bio05@VM-0-6-ubuntu:~/tmp$ head -n 3 hello_world.txt #查看前3行
Thanks teachers this is  hello_world.txt 

#复制与移动
bio05@VM-0-6-ubuntu:~/tmp$ ls
hello_world.txt
bio05@VM-0-6-ubuntu:~/tmp$ cp hello_world.txt new_file.txt #将刚才新建的文件复制一个,叫做new_file.txt
bio05@VM-0-6-ubuntu:~/tmp$ ls
hello_world.txt  new_file.txt
bio05@VM-0-6-ubuntu:~/tmp$ cat new_file.txt #查看复制后的文件内容
Thanks teachers this is  hello_world.txt 

bio05@VM-0-6-ubuntu:~/tmp$ mv new_file.txt home.txt #将new_file.txt重命名为home.txt
bio05@VM-0-6-ubuntu:~/tmp$ ls
hello_world.txt  home.txt
bio05@VM-0-6-ubuntu:~/tmp$ mv home.txt ~/ 将home.txt移动到家目录
bio05@VM-0-6-ubuntu:~/tmp$ ls
hello_world.txt
bio05@VM-0-6-ubuntu:~/tmp$ cd ..
bio05@VM-0-6-ubuntu:~$ ls
biosoft  home.txt  project  src  tmp

#输出长格式目录列表
bio05@VM-0-6-ubuntu:~$ ls -l
total 20
drwxrwxr-x 2 bio05 bio05 4096 Apr 20 17:58 biosoft
-rw-rw-r-- 1 bio05 bio05   42 Apr 20 18:10 home.txt
drwxrwxr-x 2 bio05 bio05 4096 Apr 20 17:59 project
drwxrwxr-x 2 bio05 bio05 4096 Apr 20 17:59 src
drwxrwxr-x 2 bio05 bio05 4096 Apr 20 18:11 tmp

#查看文件大小
bio05@VM-0-6-ubuntu:~$ ls -s #file size
total 20
4 biosoft  4 home.txt  4 project  4 src  4 tmp

#查看操作系统
bio05@VM-0-6-ubuntu:~$ uname -a 
Linux VM-0-6-ubuntu 4.15.0-118-generic #119-Ubuntu SMP Tue Sep 8 12:30:01 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

#查看cpu信息
bio05@VM-0-6-ubuntu:~$ cat /proc/cpuinfo 
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model       : 94
model name  : Intel(R) Xeon(R) Gold 6148 CPU @ 2.40GHz
stepping    : 3
microcode   : 0x1
cpu MHz     : 2394.374
cache size  : 28160 KB
physical id : 0
siblings    : 1
core id     : 0
cpu cores   : 1
apicid      : 0
initial apicid  : 0
fpu     : yes
fpu_exception   : yes
cpuid level : 13
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 arat
bugs        : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs taa itlb_multihit srbds
bogomips    : 4788.74
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:

#查看内存信息
bio05@VM-0-6-ubuntu:~$ cat /proc/meminfo 
MemTotal:        1877052 kB
MemFree:          293652 kB
MemAvailable:    1550424 kB
Buffers:          160044 kB
Cached:          1183516 kB
SwapCached:            0 kB
Active:           869624 kB
Inactive:         547672 kB
Active(anon):      79176 kB
Inactive(anon):      340 kB
Active(file):     790448 kB
Inactive(file):   547332 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:             0 kB
SwapFree:              0 kB
Dirty:               544 kB
Writeback:             0 kB
AnonPages:         73760 kB
Mapped:           113308 kB
Shmem:              5780 kB
Slab:             135288 kB
SReclaimable:      99492 kB
SUnreclaim:        35796 kB
KernelStack:        1724 kB
PageTables:         4416 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:      938524 kB
Committed_AS:     372680 kB
VmallocTotal:   34359738367 kB
VmallocUsed:           0 kB
VmallocChunk:          0 kB
HardwareCorrupted:     0 kB
AnonHugePages:         0 kB
ShmemHugePages:        0 kB
ShmemPmdMapped:        0 kB
CmaTotal:              0 kB
CmaFree:               0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:     1879920 kB
DirectMap2M:      217088 kB
DirectMap1G:           0 kB

#查看硬盘空间
bio05@VM-0-6-ubuntu:~$ df -hl
Filesystem      Size  Used Avail Use% Mounted on
udev            885M     0  885M   0% /dev
tmpfs           184M  5.7M  178M   4% /run
/dev/vda1        50G  6.3G   41G  14% /
tmpfs           917M   24K  917M   1% /dev/shm
tmpfs           5.0M     0  5.0M   0% /run/lock
tmpfs           917M     0  917M   0% /sys/fs/cgroup
tmpfs           184M     0  184M   0% /run/user/1006

#新建多级目录
bio05@VM-0-6-ubuntu:~$ mkdir -p /tmp/tmp/tmp/ 
bio05@VM-0-6-ubuntu:~$ ls
biosoft  home.txt  project  src  tmp
bio05@VM-0-6-ubuntu:~$ cd tmp

#删除多级目录
bio05@VM-0-6-ubuntu:~$ rm -r tmp
bio05@VM-0-6-ubuntu:~$ ls
biosoft  home.txt  project  src
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,839评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,543评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,116评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,371评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,384评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,111评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,416评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,053评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,558评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,007评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,117评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,756评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,324评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,315评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,539评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,578评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,877评论 2 345

推荐阅读更多精彩内容

  • 学习目标 1.什么是linux,什么是服务器? linux是操作系统,具有开源、免费、稳定、安全的特点,主要应用于...
    windysky007阅读 215评论 0 0
  • 学习内容:学习linux操作系统 1. 登录linux服务器(Mac环境下) 打开terminal-ssh+输入分...
    UseeseeU0阅读 212评论 0 0
  • “生信星球(wx:babyfox2017)”的课程学习笔记 为什么学习Linux 原因可参见生信为什么需要学习Li...
    小草发芽n_m阅读 179评论 0 0
  • 学习小组day2笔记—东枚 云服务器上的linux 首先下载一个xshell软件,登录挺有挑战性的,不能成功连接要...
    dodowfeng阅读 309评论 0 0
  • 今天感恩节哎,感谢一直在我身边的亲朋好友。感恩相遇!感恩不离不弃。 中午开了第一次的党会,身份的转变要...
    迷月闪星情阅读 10,551评论 0 11