fedora工具

Fedora29-34 添加快捷方式
vim /usr/share/applications/idea.desktop
[Desktop Entry]
Name=IntelliJ IDEA
Comment=IntelliJ IDEA
Exec=/home/software/idea-IU-183.6156.11/bin/idea.sh
Icon=/home/software/idea-IU-183.6156.11/bin/idea.png
Terminal=false
Type=Application
Categories=Developer

mycli:mysql客户端,支持语法高亮和命令补全,效果类似ipython,可以替代mysql命令。
pip install mycli 或者 apt-get install mycli

glances:更强大的 htop / top 代替者。

multitail:多重  tail。



ag:比grep、ack更快的递归搜索文件内容。
1:首先在linux创建个sh文件->ag.sh
2:在ag.sh里面输入如下内容并保存
set -x
TEMP_DIR=$(mktemp -d Leslie.Guan.XXXXXX)
cd ${TEMP_DIR}
wget https://github.com/ggreer/the_silver_searcher/archive/master.zip
TAR_DIR=$(unzip *.zip)
TAR_DIR=${TAR_DIR%%/*}
TAR_DIR=${TAR_DIR##*:}
cd ${TAR_DIR}
apt-get install -y automake pkg-config libpcre3-dev zlib1g-dev liblzma-dev --force-yes
./build.sh && make install
cd ../../
rm -rf ${TEMP_DIR}
ag -V
set +x 
3:执行./ag.sh就会去安装了,完事后可以用ag 




怎样加快 fedora yum的下载速度
1、删除已经缓存的yum 站点信息

# sudo yum clean all

2、安装fastestmirror,让yum自动找最快的源进行下载

# sudo yum -y install yum-fastestmirror

实现Windows和Linux之间的文件共享
# Window:
# ip:192.168.6.27
# 共享目录:soft
# Linux:
# 挂载目录:/home/software/winsoft
mount -t cifs -o username=ctl,password=liebe,rw,dir_mode=0777,file_mode=0777 //192.168.6.27/soft   /home/software/winsoft  
#经测试,可以读写。这样看到的文件目录权限都为755
mount -t cifs -o username=ctl,password=liebe  //192.168.6.27/soft   /home/software/winsoft

sudo yum -y install cifs-utils
mkdir /home/software/winsoft
mount -t cifs -o username=ctl,password=liebe  //192.168.6.27/soft   /home/software/winsoft

# 当不需要使用这个分区的时候,需要将这个磁盘分区卸载。使用 umonut DEVICE 或者 umont DEVICE_POINT 来卸载。
# 但是,在卸载的时候我们刚好在访问这个目录,那么会提示设备忙,拒绝退出。
# 此时,有2种解决方案:1、退出此目录。2、使用fuser命令强制退出。
fuser -v /home/software/winsoft  //fuser -v参数查看使用这个分区的用户和进程
fuser -km /home/software/winsoft  //杀死访问挂载点的进程
umount /home/software/winsoft   //可以正常卸载




mysql图形工具 https://dbeaver.io/download/

mongdb图形工具  https://nosqlbooster.com/downloads nosqlbooster4mongo-6.1.1.AppImage
mongdb图形工具  https://studio3t.com/download-thank-you/?OS=x64

diffmerge 文件对比工具 https://sourcegear.com/diffmerge/downloads.php  
diffmerge 中文乱码可在 Options-Rulesets 进行设置
Kompare 文件对比工具 在软件中直接安装或者 dnf  install Kompare 安装
BCompare 对比工具 链接: https://pan.baidu.com/s/15oySKgnWkwZPtaBEgP8UEQ 提取码: stw3 
 一个月使用到期后把/home/ctl/.config/bcompare/registry.dat清理掉
wget https://www.scootersoftware.com/bcompare-4.4.0.25886.x86_64.rpm
su
rpm --import https://www.scootersoftware.com/RPM-GPG-KEY-scootersoftware
yum install bcompare-4.4.0.25886.x86_64.rpm




复制这段内容后打开百度网盘手机App,操作更方便哦(参考https://www.cnblogs.com/williamzou/p/11417307.html)



GIMP 是 Linux 平台下 Photoshop 的替代方案。它是开源的,是一个全功能、专业的图像编辑软件,打包了非常多的工具用来处理各类图像。在此基础上,还有大量的定制选项以及第三方插件可以用于增强用户的使用体验。
dnf install gimp

Krita 主要是一个绘图工具,但也可以用来编辑图像。它同样也是开源的,也打包了很多精致且高级的工具。
dnf install krita



在 Linux 桌面上安装 EasySSH 很简单,因为可以通过 Flatpak 安装应用程序(这意味着你必须在系统上安装 Flatpak)。安装 Flatpak 后,使用以下命令添加 EasySSH:

sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
sudo flatpak install flathub com.github.muriloventuroso.easyssh
用如下命令运行 EasySSH:
flatpak run com.github.muriloventuroso.easyssh

Nmon 是一个可以监控当前系统性能的小工具,使用之前需要先用如下命令进行安装:
dnf install nmon (参考https://www.zhetao.com/content462)
ncdu 命令可以用来查看和分析 Linux 中各目录对磁盘空间占用情况的工具,请使用如下命令进行安装
dnf install ncdu  (参考https://www.zhetao.com/content462)


Centos系统磁盘目录分析工具-Ncdu
yum -y install epel-release
yum -y install ncdu

SecureCRT for Linux
https://www.vandyke.com/cgi-bin/releases.php?product=securecrt&ver=8.5
SecureCRT for Linux突破30天使用限制
当然还有一种方法,就是当你试用点i agree到时候,在~/.vandyke/Config
会生成一个文件SecureCRT_eval.lic,删除以后就可以恢复30天试用

FinalShell Linux版安装及教程
wget www.hostbuf.com/downloads/finalshell_install_linux.sh;chmod +x finalshell_install_linux.sh;./finalshell_install_linux.sh;
ln -s /usr/lib/FinalShell/bin/FinalShell /usr/bin/finalshell


远程桌面
rdesktop -u LEIYUAN -p Leiyuan123. 192.168.2.191 -r sound:off -r clipboard:PRIMARYCLIPBOARD  -g workarea 

postman 在软件中直接查找安装

UltraEdit https://www.ultraedit.com/downloads/uex.html

mqtt 客户端 https://mqttx.app/cn/   MQTTX-1.3.3.AppImage / dnf install mosquitto
mqttfx-1.6.0-linux-ferora32can_use.rpm  http://www.jensd.de/apps/mqttfx/1.6.0/ rpm安装后 直接mqttfx即可执行
dubbo服务需要执行下面两句
ifconfig virbr0 down  
brctl delbr virbr0
systemctl disable libvirtd.service    #禁用libvirtd服务开机自启动


rime设置为默认简体
 dnf install ibus-rime
# 进入配置文件目录
cd ~/.config/ibus/rime/build
# 备份配置文件
cp luna_pinyin.schema.yaml luna_pinyin.schema.yaml.bak
# 编辑配置文件
vim   luna_pinyin.schema.yaml
switches:
  - name: ascii_mode
    reset: 0
    states: ["中文", "西文"]
  - name: full_shape
    states: ["半角", "全角"]
  - name: simplification
    states: ["漢字", "汉字"]
  - name: ascii_punct
    states: ["。,", ".,"]
然后改成这样:

switches:
  - name: ascii_mode
    reset: 0
    states: ["中文", "西文"]
  - name: full_shape
    states: ["半角", "全角"]
  - name: simplification
    reset: 1
    states: ["汉字", "漢字"]
  - name: ascii_punct
    states: ["。,", ".,"]
fedora截图工具flameshot #yum  -y install flameshot
## 1 开启捕捉界面
flameshot gui
## 2 开启捕捉并设置存储位置
flameshot gui -p /path/to/captures
## 3 开启全屏捕捉
flameshot full
## 4 开启配置界面
flameshot config
## 5 万能的man
man flameshot
可以在linux系统设置快捷键命令flameshot gui,这样方便截图 

Linux QQ 解决闪退的方法
删除掉配置文件即可
rm -r ~/.config/tencent-qq

猜你喜欢

转载自blog.csdn.net/CTLLIN/article/details/108119149