Tag: Linux
All the articles with the tag "Linux".
debian使用记录
Published: at 10:13 PM将Xfce面板重置为默认设置 XFCE在xfconfd存储运行会话的配置。 您可以先备份要删除的文件。 首先关闭面板, xfce4-panel --quit 杀死xfce4配置守护进程, pkill xfconfd 首先删除面板的设置...
Qt6中不能使用搜狗输入法
Published: at 03:43 PM在ubuntu上使用QtCreator以及pyside6编写的程序不能使用搜狗输入法 原因 因为缺少libfcitxplatforminputcontextplugin-qt6.so文件(注意这里是Qt6),拷贝到相应的目录后还要将其设置为可执行...
ubuntu edge起不来解决方法
Published: at 10:11 AMedge第一次安装好后用的好好的,某天突然就不能用了,启动失败。 找到edge的启动路径用命令行启动: cd /opt/microsoft/msedge ./msedge 报错大致信息如下: ubuntu This profile appears to be in use by anoth...
CentOS7 systemctl service
Published: at 07:55 AMCentOS7创建服务,下面展示了两个简单的例子,这样就可以用systemctl命令启动、停止、重启进程以及查看进程状态。 如: systemctl start gonetdisk systemctl stop gonetdisk systemctl status gonetdisk 配置简介 Unit区块通常是配置文件的第一个区块,用来...
CentOS7 debuginfo-install
Published: at 07:37 AMCentOS7 debuginfo-install 允许debuginfo源 vim /etc/yum.repos.d/CentOS-Debuginfo.repo 将enabled改为1 安装debuginfo-install yum install glibc-debuginfo yum-utils 安装调式信息包和依赖 debuginfo-install libgcc-4.8.5-44.el7.x8664 ...
CentOS7 U盘安装 No Caching mode page found
Published: at 02:41 AMsda No Caching mode page found sda Assuming drive cache write through U盘安装CentOS7的时候出现上述错误的解决方法。 此时会卡在这里,不要着急耐心等待,超时会输出错误信息(10分钟左右),等待可以输入命令的时候: ls /dev/sd 输出如下,每个机器的电...
CentOS6 yum The requested URL returned error 404 Not Found
Published: at 03:04 AMCentOS6不再维护了,目前机器需要更换yum源,地址:https//vault.centos.org/ CentOS 6 is now End of Life and there are no more updates Red Hat have pulled the plug on RHEL 6.x as of Nov 30th 2020 and as a result CentOS 6 is now a dead version. The ...
localtime线程不安全造成的线上问题
Published: at 08:18 AM线上出现了一个比较奇怪的问题,日期B的时间赋值给了日期A,但是浏览代码发现根本没有这样的逻辑。 经过一番调查基本能确定是localtime函数线程不安全造成的。 下面使用demo来模拟一下出现问题的情况 t1和t2是两个时间,使用GetTimeString转换的时候t2的时间可能会赋...
Mac安装国内版homebrew
Published: at 03:48 PMHomeBrew是macOS和linux平台的包管理工具 由于大家都知道的原因,安装官方的homebrew下载速度很慢,所以这里找了个国内版本的试下,速度非常快。 安装方法 粘贴下面的脚本到终端命令行界面,直接回车安装,后面选择1就可以了 /bin/zsh -c "$(curl -fsSL https//gi...
vim常用技巧
Published: at 02:17 PMLinux生产环境上,最常用的一套“vim“技巧原创 -------------------------- 研发线上使用最多的编辑器,就是vi。无论是最快查看某个文件内容,还是快速编辑某个文件,vi都能帮上忙。 软件世界貌似有一些非常长寿的东西,vi算是一个。本篇文章聚焦的是研发线上最常用的一些...