首页 > TAG信息列表 > ubuntu01

configure: error: liblzma development files not found

  001、问题 root@ubuntu01:/home/software/htslib# ./configure ## 编译软件时出现如下报错     002、解决方法 root@ubuntu01:/home/software/htslib# apt install liblzma-dev   参考:https://blog.csdn.net/weixin_40640700/article/details/116462615  

fatal: unable to access 'https://github.com/samtools/htslib/': GnuTLS recv error (-54): Er

  001、问题 root@ubuntu01:/home/software# git clone https://github.com/samtools/htslib Cloning into 'htslib'... fatal: unable to access 'https://github.com/samtools/htslib/': GnuTLS recv error (-54): Error in the pull function.

ubuntu 22.04中安装python2

001、系统 root@ubuntu01:/home# hostnamectl Static hostname: ubuntu01 Icon name: computer-vm Chassis: vm Machine ID: e6fb52b4c8414f29b06dc95d57b5846c Boot ID: 4ffb5c0e628241fe84425ca626565e00 Virtualization: vmware Operating

linux 中 comm命令的用法

1、测试数据 root@ubuntu01:/home/test# ls a.txt b.txt root@ubuntu01:/home/test# cat a.txt sss eee rrr 555 888 333 bbb 777 yyy root@ubuntu01:/home/test# cat b.txt yyy ddd sss eee 666 kkk mmm jjj   2、使用comm命令前需要对文件进行排序和去重复 root@ubuntu01:/

linux中sort + uniq统计重复项、去重复、取唯一项、统计重复次数

1、测试数据 root@ubuntu01:/home/test# ls a.txt root@ubuntu01:/home/test# cat a.txt ## 测试数据 a g b d a b b d c b   2、统计重复项 root@ubuntu01:/home/test# ls a.txt root@ubuntu01:/home/test# cat a.txt a g b d a b b d c b root@ubuntu01:/home/test# sor