Loading

随笔分类 -  linux-basic

摘要:https://pinyin.sogou.com/linux/?r=pinyin https://pinyin.sogou.com/linux/help.php ##安装 #更新软件源 sudo apt-get update sudo dpkg -i sogoupinyin_*amd64.deb # 阅读全文
posted @ 2020-07-06 15:06 Lust4Life 阅读(473) 评论(0) 推荐(0) 编辑
摘要:Chrome 键盘快捷键 https://support.google.com/chrome/answer/157179?hl=zh-Hans Linux 标签页和窗口快捷键 操作 快捷键 打开新窗口 Ctrl + n 在无痕模式下打开新窗口 Ctrl + Shift + n 打开新的标签页,并跳转 阅读全文
posted @ 2020-07-06 09:00 Lust4Life 阅读(260) 评论(0) 推荐(0) 编辑
摘要:https://fossbytes.com/best-linux-apps-free-open-source/ Liferea Fragments GNOME Boxes Krita Podcasts Calibre Visual Studio Code Stacer KTouch Déjà Dup 阅读全文
posted @ 2020-07-03 10:26 Lust4Life 编辑
摘要:bash 数组 普通的索引数组 定义数组 数组初始化:在赋值语句的等号右侧,紧挨着用一对括号表示数组,数组中元素之间使用“空格”分隔 myarray=() #定义一个空数组 myarray=(1 2 3 4 5) #全部元素为数字 myarray=(one two three four five) 阅读全文
posted @ 2020-07-01 16:29 Lust4Life 编辑
摘要:操作步骤未测试. "libc.so.6: version `GLIBC_2.28' not found",原因是系统的glibc版本太低 strings /lib64/libc.so.6 |grep GLIBC_ rpm -qa |grep glibc ##编译安装 wget https://mir 阅读全文
posted @ 2020-06-29 20:07 Lust4Life 编辑
摘要:##centos 7 执行步骤: wget http://download.oray.com/sunlogin/linux/sunlogin_remoteclient_2.2.0.39537Beta.tar.gz tar xvf sunlogin_remoteclient_2.2.0.39537Be 阅读全文
posted @ 2020-06-17 18:32 Lust4Life 编辑
摘要:#系统时间 一台Linux服务器有两个时间源,一个是硬件时间,即服务器硬件CMOS维护的时间,还有一个是软件时间,即操作系统维护的时间,前者通过hwclock命令来访问,后者则主要通过date命令来访问。 # 获取当前时间 $ date Fri Jan 23 15:22:16 CST 2015 # 阅读全文
posted @ 2020-06-17 10:10 Lust4Life 编辑
摘要:公司用的acer,开发系统是ubuntu 1604 安装系统后NO bootable devices found 步骤: 1,安装系统 2,进入bios Boot栏: secure Boot: enable Security 栏: 选择一个用于执行的可信任 UEFI 文件 (Select an UE 阅读全文
posted @ 2020-06-09 15:15 Lust4Life 编辑
摘要:原因:修改了主机的ubuntu设备名称,后面没有配置好hosts文件,导致linux无法解析到您的主机地址 sudo vim /etc/hosts 127.0.1.1 xxxx 阅读全文
posted @ 2020-06-01 10:13 Lust4Life 编辑
摘要:智能运维-从0搭建大规模分布式AIOps系统 分析了几种开源技术工具的对比 https://blog.csdn.net/qq_34219959/article/details/99624034 待完善.. 阅读全文
posted @ 2020-05-31 21:09 Lust4Life 编辑
摘要:问题截图: 在本地ping域名后显示如下: 解决: 进入该网页:https://www.ipaddress.com/ 输入raw.githubusercontent.com 获取他的ip 在/etc/hosts添加他的解析 参考: https://www.ioiox.com/archives/62. 阅读全文
posted @ 2020-05-31 21:04 Lust4Life 编辑
摘要:##常用命令 1、查看运行的虚拟机 # virsh list 查看所有的虚拟机(关闭和运行的,不包括摧毁的) # virsh list --all 2.、启动虚拟机 # virsh start 虚拟机名称 虚拟机随物理机启动而启动 # virsh autostart 虚拟机名称 取消虚拟机随物理机启 阅读全文
posted @ 2020-05-27 20:19 Lust4Life 编辑
摘要:1)stickpng www.stickpng.com/ 2)freepngs www.freepngs.com/ 5)pngimg http://pngimg.com/ 6)pngpix http://www.pngpix.com/ 美图 美图:可以自定义分辨率 https://www.pexel 阅读全文
posted @ 2020-05-03 17:15 Lust4Life 编辑
摘要:##转换视频格式 一些在线录屏后产生的视频格式是webm,可以使用ffmpeg转化为gif格式 webm 转 gif 格式 ffmpeg -i input.webm -vf "scale=400:-1,fps=10" output.gif #将 input.webm 格式的视频转换为横向宽度为 40 阅读全文
posted @ 2020-05-01 19:18 Lust4Life 编辑
摘要:Phatch 简单易用的跨平台的GUI图片批量处理器 http://www.phatch.org/ Photini 容易上手的数码照片 Exif 编辑器 https://github.com/jim easterbrook/Photini ExifTool 可以以命令行来修改 Exif 的软件 ht 阅读全文
posted @ 2020-05-01 13:52 Lust4Life 编辑
摘要::%s/r//g 删除DOS方式的回车^M :%s= $== 删除行尾空白 :%s/^(. )n1/1$/ 删除重复行 :%s/^.{ }pdf/new.pdf/ 只是删除第一个pdf :%s/// 又是删除多行注释(咦?为什么要说「又」呢?) :g/s ^$/d 删除所有空行 :这个好用有没有人用 阅读全文
posted @ 2020-04-29 17:59 Lust4Life 编辑
摘要:建议使用systemd来建立自己的服务 其他: 1:编辑启动脚本. autostart.sh 脚本开头: 2:把autostart.sh 放到 /etc/init.d/ 3:运行:systemctl enable autostart.sh 4:reboot 启动 脚本成功运行. 这个类似于: 1、编 阅读全文
posted @ 2020-04-29 14:22 Lust4Life 编辑
摘要:1,脚本添加可执行权限 2,设置双击脚本的行为 进入桌面点击home 文件 首选项 3,执行测试 其他 另外一个是添加桌面图标运行,未测试 阅读全文
posted @ 2020-04-29 14:17 Lust4Life 编辑
摘要:来源: https://zhuanlan.zhihu.com/p/85129768 参考: https://service.tp link.com.cn/detail_article_28.html 阅读全文
posted @ 2020-04-28 19:53 Lust4Life 编辑
摘要:基本步骤和配置文件,配置文件配置了远程可访问 #!/bin/env bash ## 首先安装java jdk 关闭防火墙,selinux ## yum 安装 jdk systemctl stop firewalld systemctl disable firewalld setenforce 0 e 阅读全文
posted @ 2020-04-28 18:45 Lust4Life 编辑

点击右上角即可分享
微信分享提示