excel转csv工具
#Converting xlsx Excel format files to CSV on Linux
https://linuxconfig.org/converting-xlsx-excel-format-files-to-csv-on-linux
dnf install gnumeric
After gnumeric is installed, you’ll have access to the ssconvert command on your system. Use the following command syntax to convert an Excel spreadsheet in terminal.
$ ssconvert distros.xlsx distros.csv
If the spreadsheet you’re working with contains multiple tabs (or
“workbooks” as they’re called in Excel), you’ll need to add the -S option to your ssconvert command.
$ ssconvert -S distros.xlsx distros.csv
向日葵远程桌面工具现在支持Fedora36可以下载安装使用
https://sunlogin.oray.com/download/
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/
https://dev.mysql.com/downloads/workbench/
dnf localinstall mysql-workbench-community-8.0.27-1.fc35.x86_64.rpm (fedora35 mysql图形化客户端)
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,这样方便截图
https://codechina.youkuaiyun.com/mirrors/flameshot-org/flameshot#fedora
Linux QQ 解决闪退的方法
删除掉配置文件即可
rm -r ~/.config/tencent-qq
WPS Office 2019 For Linux
下载网址https://www.wps.cn/product/wpslinux
64位 Rpm格式 (wps-office-11.1.0.10702-1.x86_64)
终端下的文件浏览器:ranger (非常强大) dnf install ranger
图片查看和编辑:gthumb dnf install gthumb
似Ps的图片编辑器:gimp dnf install gimp
视频编辑器 ffmpeg 下载地址https://ffmpeg.org/download.html (git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg)
git clone https://git.ffmpeg.org/ffmpeg.git
dnf install nasm
cd ffmpeg
./configure
make && make install
Sublime Text文本编辑器安装 配置仓库然后安装
sudo dnf config-manager --add-repo https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo
dnf install sublime-text
列编辑模式
1. Ctrl+A 全选
2. Ctrl+Shift+L 进入列选模式
3. 使用方向键左右移动所有列的光标,并配合使用Shift键来多选每行的字符
飞秋 注意需要设置网卡(局域网多网卡不设置网卡可能识别别不了) 百度网盘tool/linux 文件夹下
链接: https://pan.baidu.com/s/1ndbGP3b81vBCO9kJy-LpJg 提取码: 64v8 复制这段内容后打开百度网盘手机App,操作更方便哦
http://feige360.com/home/index/download 官网下载地址
http监控工具
dnf install wireshark
过滤器 ip.dst==192.168.3.9 and tcp.dstport==8080 and http.request.uri contains "/market-portal-center/acl/resourcebase/getResourceList"
(tcp.dstport==8080 or tcp.srcport==8080) and ( (ip.src_host==192.168.3.9 and ip.dst_host==fedora.local) or (ip.src_host==fedora.local and ip.dst_host==192.168.3.9))
office安装
dnf install libreoffice-core.x86_64
cad软件
dnf install freecad
dnf install openscad
dnf install librecad
视频播放器
dnf install dragonplayer
dnf install kmplayer
mycli centos8 安装
pip3 install -U pip setuptools
pip3 install mycli
linux fedora35安装deepin-wine:deepin-wine-on-fedora项目 参看http://v21cesc.ysepan.com/
在Fedora 30系统中安装Deepin desktop非常的简单 https://ywnz.com/linuxjc/4924.html sudo dnf install deepin-desktop
Fedora35安装Deepin深度桌面环境 https://blog.youkuaiyun.com/a772304419/article/details/121692927 sudo dnf -y group install "Deepin Desktop"
fedora工具
于 2020-08-20 11:10:00 首次发布