linux
风语者_
这个作者很懒,什么都没留下…
展开
-
linux常用命令
1.系统安全su sudo chmod setfacl getfaclsetfacl -m u:omc:rwx hhh setfacl -m g:omc:r-w test #添加一个组[root@localhost ~]# getfacl hhh2.进程管理w top ps kill pkill killall pstreew 用...原创 2019-04-24 12:57:01 · 183 阅读 · 0 评论 -
在linux后台运行脚本的方法和命令
后台运行脚本执行脚本test.sh:./test.sh中断脚本test.sh:ctrl+c在1的基础上将运行中的test.sh,切换到后台并暂停:ctrl+z执行ctrl+z后,test.sh在后台是暂停状态(stopped),使用命令:bg number让其在后台开始运行(“number”是使用jobs命令查到的 [ ]中的数字,不是pid)直接在后台运行脚本test.sh:./tes...转载 2019-06-19 10:15:39 · 711 阅读 · 0 评论 -
发现Ubuntu中无法用su命令切换到root用户。
发现Ubuntu中无法用su命令切换到root用户。suPassword:su:AuthenticationfailuresuPassword:su:Authenticationfailure原来Ubuntu中root用户默认是禁止使用的,需要手工开启。开启方法:sudo passwd关闭方法:sudo passwd -l root开启root用户后就可以使用su命令了。...原创 2019-09-18 18:44:08 · 697 阅读 · 0 评论 -
Linux下源码编译安装PostgreSQL
操作系统:Centos下载源码包https://www.postgresql.org/ftp/source/v10.3/解压# tar -zxvf postgresql-10.3.tar.gz编译安装# cd postgresql-10.3指定安装路径# ./configure --prefix=/usr/local/postgresql可能出现错...转载 2019-09-23 14:37:03 · 193 阅读 · 0 评论 -
在x86_64平台利用qemu搭建基于aarch64的虚拟机测试环境
1.安装qemu-system-aarch642.UEFI固件下载3.操作系统下载4.创建虚拟硬盘5.虚拟机安装6.配置网络7.虚拟机启动8.换源9.参考链接1.安装qemu-system-aarch64直接用apt安装 sudo apt install -y qemu-system-arm或者是从源码安装wget https://downl...原创 2019-10-09 11:00:47 · 3484 阅读 · 1 评论