linux
昱征
这个作者很懒,什么都没留下…
展开
-
systemctl 非 root 使用
systemctl 非 root 使用root下执行:loginctl enable-linger username执行 journalctl --user --user-unit [unit-name] 无日志处理vi /etc/systemd/journald.confStorage=persistent systemctl restart systemd-journald非root用户下执行:1、执行systemctl --user 报“Failed to get D-bus c原创 2021-08-25 17:17:11 · 3639 阅读 · 0 评论 -
centos 7 装机
centos 7 装机更新yum源mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bakcurl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.reposed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc原创 2021-08-13 15:59:21 · 104 阅读 · 0 评论 -
在linux终端命令行显示本机IP
在linux命令行显示本机IPvim /etc/profile在最后增加下边语句,网卡ens160 根据实际情况设置有ip addr 命令的情况IP=$(ip addr show ens160 | grep -w "inet" | awk '{ print $2; }' | sed 's/\/.*$//')export PS1="[\u@\h(\[\e[31m\]$IP\[\e[m\]) \W]\\$ "有ifconfig命令的情况:IP=$(/sbin/ifconfig ens160 |原创 2021-03-12 14:06:48 · 1322 阅读 · 0 评论 -
给联想Thinkpad E480 安装了Ubuntu 18.04 Wifi适配器不可用的处理方法
本人在Thinkpad E480 安装 18.04 后惊奇的发现,居然找不到WiFi适配器,经过多方搜索是缺少驱动组件,查找多个解决方案,都或多或少有点问题,使用以下操作,完美解决问题,记录一下。sudo apt updatesudo apt install build-essential git dkmswget https://github.com/tomaspinho/rtl8821c...原创 2019-12-16 00:26:53 · 969 阅读 · 2 评论 -
对linux管道符 | 的理解
简单来说就是把前一个的输出作为后一个的输入,系统命令有输入和输出,输出的结果会有一个通道去处理,默认的就是终端本身,使用管道符,就相当于建立了一个通道与后边命令的通道。让其进行处理。也可以说,两个或多个命令需要依次执行执行,我们需要最后的结果,这时候我们就要建立一个这几个命令之间的通道。 ...原创 2015-03-22 18:09:23 · 571 阅读 · 0 评论 -
用rm递归递归删除子目录下所有“.”开头的隐藏文件
find ./ -name ".*" | xargs rm参考网址: http://blog.163.com/sweet_hard/blog/static/66656838201162294812840/ 可以通过管道命令来操作,先find出主目录 下想删除的文件,然后通过“xargs”这个构造参数列表并运行命令。 曾经使用 删除60天之前的文件及文件夹:...原创 2014-07-18 16:25:34 · 1391 阅读 · 0 评论