随笔分类 -  [33] Linux/Unix

摘要:error while loading shared libraries: libmpc.so.3: cannot open shared object file: No such file or directory [root@localhost mpc-1.0.3]# locate libmpc 阅读全文
posted @ 2020-11-02 20:14 emanlee 阅读(3946) 评论(0) 推荐(0) 编辑
摘要:[aimin@localhost ~]$ ll /bin/shlrwxrwxrwx. 1 root root 4 Oct 14 2017 /bin/sh -> bash[aimin@localhost ~]$ ll /bin/bash-rwxr-xr-x. 1 root root 938768 Fe 阅读全文
posted @ 2020-10-31 18:44 emanlee 阅读(1009) 评论(0) 推荐(0) 编辑
摘要:package com.wll.shell; import java.util.List; public class ShellResult { public static final int SUCCESS = 0; public static final int ERROR = 1; publi 阅读全文
posted @ 2020-10-21 10:44 emanlee 阅读(953) 评论(0) 推荐(0) 编辑
摘要:如果只想看文件的前100行,可以使用head命令,如 head -100 filename 如果想查看文件的后100行,可以使用tail命令,如: tail -100 filename 或 tail -n 100 filename 查看文件中间一段,可以使用sed命令,如: sed -n ‘100, 阅读全文
posted @ 2020-09-21 09:15 emanlee 阅读(12922) 评论(0) 推荐(1) 编辑
摘要:Download latest epel-release rpm from http://download-ib01.fedoraproject.org/pub/epel/7/x86_64/ https://download-ib01.fedoraproject.org/pub/epel/7/x86 阅读全文
posted @ 2020-09-05 13:48 emanlee 阅读(2327) 评论(0) 推荐(0) 编辑
摘要:[root@VM-0-2-centos webapps]# which python3/usr/bin/python3 https://danieleriksson.net/2017/02/08/how-to-install-latest-python-on-centos/ Use “make al 阅读全文
posted @ 2020-09-04 20:03 emanlee 阅读(699) 评论(0) 推荐(0) 编辑
摘要:yum update Traceback (most recent call last): File "/usr/bin/yum", line 29, in <module> yummain.user_main(sys.argv[1:], exit_code=True) File "/usr/sha 阅读全文
posted @ 2020-09-03 21:04 emanlee 阅读(1267) 评论(0) 推荐(0) 编辑
摘要:nvidia-container-runtime/x86_64/signature | 488 B 00:00:00 从 https://nvidia.github.io/nvidia-container-runtime/gpgkey 检索密钥nvidia-container-runtime/x86 阅读全文
posted @ 2020-09-03 20:53 emanlee 阅读(1689) 评论(0) 推荐(0) 编辑
摘要:1. 检查内核版本 yum info kernel -q 已安装的软件包名称 :kernel架构 :x86_64版本 :3.10.0发布 :862.el7大小 :62 M源 :installed来自源:anaconda简介 : The Linux kernel网址 :http://www.kerne 阅读全文
posted @ 2020-09-01 12:22 emanlee 阅读(6184) 评论(0) 推荐(0) 编辑
摘要:Yes that worked for me, I made sure these packages are installed on my Centos 7: sudo yum install -y zlib-devel bzip2-devel openssl-devel ncurses-deve 阅读全文
posted @ 2020-08-28 20:49 emanlee 阅读(1533) 评论(0) 推荐(0) 编辑
摘要:ln -s /usr/local/python3/bin/python3 /usr/bin/python # 测试 [root@operation bin]# pip3 -V pip 18.1 from /usr/local/python3/lib/python3.6/site-packages/p 阅读全文
posted @ 2020-08-28 16:17 emanlee 阅读(203) 评论(0) 推荐(0) 编辑
摘要:命令比较长时,显示不全(全称,全名),可以用 top -c 阅读全文
posted @ 2020-07-29 20:24 emanlee 阅读(6636) 评论(0) 推荐(0) 编辑
摘要:linux 文件名乱码 文件名出现问号原因:创建文件的批处理文件使用windows编辑的,因为windows的换行是\r\n,而linux换行是\n,出现一些乱码如何处理: 1. linux 批量重名名 2. dos2unix 把Windows文件转换格式 Linux Shell 批量重命名的方法1 阅读全文
posted @ 2020-07-29 09:34 emanlee 阅读(2302) 评论(0) 推荐(0) 编辑
摘要:第一步:先下载JDK1.8,可以去官网下载,也可以直接这里的:下载地址:链接:https://pan.baidu.com/s/1f1EDWvG-GzpQRJaC_W4SpA 密码:9pj1先检查是否有安装JDK:#rpm -qa | grep jdk先把系统自带的干掉(如果没有直接跳过): rpm 阅读全文
posted @ 2020-07-19 21:06 emanlee 阅读(740) 评论(0) 推荐(0) 编辑
摘要:yum install mlocate updatedb 阅读全文
posted @ 2020-07-19 20:50 emanlee 阅读(140) 评论(0) 推荐(0) 编辑
摘要:GNU Wget 1.14,非交互式的网络文件下载工具。用法: wget [选项]... [URL]...长选项所必须的参数在使用短选项时也是必须的。启动: -V, --version 显示 Wget 的版本信息并退出。 -h, --help 打印此帮助。 -b, --background 启动后转 阅读全文
posted @ 2019-11-04 21:05 emanlee 阅读(760) 评论(0) 推荐(1) 编辑
摘要:常用的命令有:1、列出简短的出错信息errpt | more2、列出所有硬件出错信息 errpt -d H3、列出所有软件错误信息 errpt -d S 4、列出详细的出错信息errpt –a5、指定错误id号查询 errpt -aj ERROR_ID6、永久错误信息errpt -T PERM -d 阅读全文
posted @ 2019-10-14 12:53 emanlee 阅读(562) 评论(0) 推荐(0) 编辑
摘要:Linux服务器上监控网络带宽的18个常用命令 本文介绍了一些可以用来监控网络使用情况的Linux命令行工具。这些工具可以监控通过网络接口传输的数据,并测量目前哪些数据所传输的速度。入站流量和出站流量分开来显示。 Linux服务器上监控网络带宽的18个常用命令 一些命令可以显示单个进程所使用的带宽。 阅读全文
posted @ 2019-04-17 16:01 emanlee 阅读(1995) 评论(0) 推荐(0) 编辑
摘要:前言 有时候tomcat报错未详细,未能定位到原因。 解决方法: 获取更详细的日志,以便调试。 详细步骤: 获取详细的日志,方法如下: 在WEB-INF/classes目录下logging.properties文件末尾追加以下内容(红色字体,#是注释用于理解): #配置tomcat的日志输出方式,这 阅读全文
posted @ 2019-04-08 14:12 emanlee 阅读(495) 评论(0) 推荐(0) 编辑
摘要:You can do this with find alone using the -exec action: {} will be expanded to the files found and + will enable us to read as many arguments as possi 阅读全文
posted @ 2019-03-08 09:27 emanlee 阅读(216) 评论(0) 推荐(0) 编辑