Linuxmint21/22 折腾调校笔记【2025年1月更新……】
- yuzh652800
- 帖子: 686
- 注册时间: 2008-03-12 8:41
- 来自: nenu.Ani
Re: Linuxmint21.2 折腾调校笔记【2024年8月更新……】
Windows和Linux互相共享打印机
https://bbs.deepin.org/post/272575
家里打印机lpd://192.168.0.xxx/L3110
驱动选择库里的 Epson L310
安装共享扫描仪的方法:
https://linux.cn/article-4139-1.html
https://linux.cn/article-4140-1.html
英文版https://www.xmodulo.com/usb-network-printer-and ... ml#scanner
https://www.eltima.com/cn/share-usb-sca ... r-network/
https://bbs.deepin.org/post/272575
家里打印机lpd://192.168.0.xxx/L3110
驱动选择库里的 Epson L310
安装共享扫描仪的方法:
https://linux.cn/article-4139-1.html
https://linux.cn/article-4140-1.html
英文版https://www.xmodulo.com/usb-network-printer-and ... ml#scanner
https://www.eltima.com/cn/share-usb-sca ... r-network/
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
只要支持Linux的,我们都应该支持。
- yuzh652800
- 帖子: 686
- 注册时间: 2008-03-12 8:41
- 来自: nenu.Ani
Re: Linuxmint22下安装软件提示缺少libwebkit2gtk-4.0
解决办法:
https://github.com/bambulab/BambuStudio ... 2085476683
Add the follow line:
然后
https://github.com/bambulab/BambuStudio ... 2085476683
代码: 全选
sudo xed /etc/apt/sources.list.d/ubuntu.sources
代码: 全选
Types: deb
URIs: http://br.archive.ubuntu.com/ubuntu/
Suites: jammy noble-updates noble-backports
Components: main restricted universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
Types: deb
URIs: http://security.ubuntu.com/ubuntu/
Suites: jammy-security
Components: main restricted universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
代码: 全选
sudo apt update
sudo apt install libwebkit2gtk-4.0-dev
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
只要支持Linux的,我们都应该支持。
- yuzh652800
- 帖子: 686
- 注册时间: 2008-03-12 8:41
- 来自: nenu.Ani
Re: Linuxmint22安装freedownloadmanager显示错误
运行 /opt/freedownloadmanager/fdm 显示错误信息
解决办法qt.qpa.plugin: From 6.5.0, xcb-cursor0 or libxcb-cursor0 is needed to load the Qt xcb platform plugin.
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
Available platform plugins are: eglfs, linuxfb, wayland, wayland-egl, offscreen, minimal, xcb, minimalegl.
代码: 全选
sudo apt-get install libxcb-cursor0
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
只要支持Linux的,我们都应该支持。
- yuzh652800
- 帖子: 686
- 注册时间: 2008-03-12 8:41
- 来自: nenu.Ani
Re: Linuxmint21/22 折腾调校笔记 推荐Linux下的youtube music客户端
github上的youtube music有很多,这个不错https://github.com/th-ch/youtube-music
支持独立设置代理,可以配合clash verge,直接访问。
自带adblocker,可以过滤youtube的广告。
支持独立设置代理,可以配合clash verge,直接访问。
自带adblocker,可以过滤youtube的广告。
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
只要支持Linux的,我们都应该支持。
- yuzh652800
- 帖子: 686
- 注册时间: 2008-03-12 8:41
- 来自: nenu.Ani
Re: Linuxmint21/22 折腾调校笔记 让Linuxmint蓝牙支持LDAC
先用 编辑配置文件,在一行后添加
然后使用重启蓝牙服务,就可以看到蓝牙里已经有LDAC模式了。
代码: 全选
sudo xed /etc/bluetooth/main.conf
代码: 全选
#ControllerMode = dual
代码: 全选
ControllerMode = bredr
代码: 全选
sudo service bluetooth restart
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
只要支持Linux的,我们都应该支持。
- yuzh652800
- 帖子: 686
- 注册时间: 2008-03-12 8:41
- 来自: nenu.Ani
Re: Linuxmint21/22 折腾调校笔记 Electron程序使用代理的方法
Electron app, you can run it with --proxy-server=address:port flag:
引自 https://github.com/ytmdesktop/ytmdeskto ... -774769464
引自 https://github.com/ytmdesktop/ytmdeskto ... -774769464
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
只要支持Linux的,我们都应该支持。
- yuzh652800
- 帖子: 686
- 注册时间: 2008-03-12 8:41
- 来自: nenu.Ani
Re: Linuxmint21/22 折腾调校笔记解决ubuntu移动硬盘自动挂载报错,移动硬盘脏脏问题。
解决ubuntu移动硬盘自动挂载报错:Error mounting: wrong fs type, bad option, bad superblock on /dev/sdb1问题
https://blog.csdn.net/gianttj/article/details/140405815
主要方法:
https://blog.csdn.net/gianttj/article/details/140405815
主要方法:
代码: 全选
sudo fdisk -l
查看分区情况
sudo ntfsfix /dev/sda1 -d
//-d 参数,清理移动硬盘脏扇区
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
只要支持Linux的,我们都应该支持。
- yuzh652800
- 帖子: 686
- 注册时间: 2008-03-12 8:41
- 来自: nenu.Ani
Re: Linuxmint21/22 折腾调校笔记:ffmpeg拼接网络视频ts片段
通过zyplayer下载的ts视频片段,想合并到一起,使用了
参考资料https://blog.csdn.net/xindoo/article/details/121186052 中的2
想把视频片段,按照固定频率抽帧,使用:
参考资料:https://blog.dreamfever.me/posts/2024-0 ... ct-frames/ 转场抽帧
代码: 全选
ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4
想把视频片段,按照固定频率抽帧,使用:
代码: 全选
ffmpeg -i input.mp4 -filter:v "select='gt(scene,0.3)',scale=640:-1" -vsync vfr -qscale:v 2 -y thumbnail_%04d.jpg
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
只要支持Linux的,我们都应该支持。
-
- 帖子: 5
- 注册时间: 2024-09-04 12:52
- 系统: Kali
- 联系:
Re: Linuxmint21/22 折腾调校笔记:ffmpeg拼接网络视频ts片段
感谢分享,这个解决我的TS合并问题了。yuzh652800 写了: ↑2025-01-19 9:41 通过zyplayer下载的ts视频片段,想合并到一起,使用了
参考资料https://blog.csdn.net/xindoo/article/details/121186052 中的2代码: 全选
ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4
想把视频片段,按照固定频率抽帧,使用:参考资料:https://blog.dreamfever.me/posts/2024-0 ... ct-frames/ 转场抽帧代码: 全选
ffmpeg -i input.mp4 -filter:v "select='gt(scene,0.3)',scale=640:-1" -vsync vfr -qscale:v 2 -y thumbnail_%04d.jpg
- yuzh652800
- 帖子: 686
- 注册时间: 2008-03-12 8:41
- 来自: nenu.Ani
Re: Linuxmint21/22 折腾调校笔记【折腾Audacious播放器】
折腾Audacious播放器:
1.起因:Linuxmint自带的Rhythmbox,居然不支持Cue格式分轨,卸载。
在星火里找到洪荒蛮力DeaDBeeF,一切都好,支持所有格式,音质好。
用了一段时间,哈哈,开始喜新厌旧,有了新需求,
想让其缩小到右下角控制区,没找到方法。
2.尝试:在传统linux播放器里筛选,尝试了Audacious。
安装后,在选项-插件里启用了,状态图标,就可以缩小到声音控制区了。 3. 歌词问题,安装osdlycis
记得在osdlycis中,将歌词检索设置为网易服务器,大多数歌词都能搜到了。
4.其他:
Audacious播放器支持皮肤,我使用了本论坛的https://forum.ubuntu.com.cn/viewtopic.php?t=47531
Audacious碰到歌曲乱码,可以 在设置-高级里检测编码设置为中文。
1.起因:Linuxmint自带的Rhythmbox,居然不支持Cue格式分轨,卸载。
在星火里找到洪荒蛮力DeaDBeeF,一切都好,支持所有格式,音质好。
用了一段时间,哈哈,开始喜新厌旧,有了新需求,
想让其缩小到右下角控制区,没找到方法。
2.尝试:在传统linux播放器里筛选,尝试了Audacious。
安装后,在选项-插件里启用了,状态图标,就可以缩小到声音控制区了。 3. 歌词问题,安装osdlycis
代码: 全选
sudo apt install osdlyrics
Audacious播放器支持皮肤,我使用了本论坛的https://forum.ubuntu.com.cn/viewtopic.php?t=47531
Audacious碰到歌曲乱码,可以 在设置-高级里检测编码设置为中文。
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
只要支持Linux的,我们都应该支持。