Linuxmint21/22 折腾调校笔记【2025年1月更新……】

Ubuntu各种衍生版本
头像
yuzh652800
帖子: 686
注册时间: 2008-03-12 8:41
来自: nenu.Ani

Re: Linuxmint21.2 折腾调校笔记【2024年8月更新……】

#31

帖子 yuzh652800 » 2024-08-11 13:17

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/
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
头像
yuzh652800
帖子: 686
注册时间: 2008-03-12 8:41
来自: nenu.Ani

Re: Linuxmint22下安装软件提示缺少libwebkit2gtk-4.0

#32

帖子 yuzh652800 » 2024-08-31 16:41

解决办法:
https://github.com/bambulab/BambuStudio ... 2085476683

代码: 全选

sudo xed /etc/apt/sources.list.d/ubuntu.sources
Add the follow line:

代码: 全选

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的,我们都应该支持。
头像
yuzh652800
帖子: 686
注册时间: 2008-03-12 8:41
来自: nenu.Ani

Re: Linuxmint22安装freedownloadmanager显示错误

#33

帖子 yuzh652800 » 2024-08-31 16:59

运行 /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的,我们都应该支持。
头像
yuzh652800
帖子: 686
注册时间: 2008-03-12 8:41
来自: nenu.Ani

Re: Linuxmint21/22 折腾调校笔记 推荐Linux下的youtube music客户端

#34

帖子 yuzh652800 » 2024-10-06 19:02

github上的youtube music有很多,这个不错https://github.com/th-ch/youtube-music

支持独立设置代理,可以配合clash verge,直接访问。
自带adblocker,可以过滤youtube的广告。
Snipaste_2024-10-06_19-01-19.png
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
头像
yuzh652800
帖子: 686
注册时间: 2008-03-12 8:41
来自: nenu.Ani

Re: Linuxmint21/22 折腾调校笔记 让Linuxmint蓝牙支持LDAC

#35

帖子 yuzh652800 » 2024-10-07 19:05

先用

代码: 全选

sudo xed /etc/bluetooth/main.conf
编辑配置文件,在

代码: 全选

#ControllerMode = dual
一行后添加

代码: 全选

ControllerMode = bredr
然后使用

代码: 全选

sudo service bluetooth restart
重启蓝牙服务,就可以看到蓝牙里已经有LDAC模式了。
Snipaste_2024-10-07_18-54-57.png
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
头像
yuzh652800
帖子: 686
注册时间: 2008-03-12 8:41
来自: nenu.Ani

Re: Linuxmint21/22 折腾调校笔记 Electron程序使用代理的方法

#36

帖子 yuzh652800 » 2024-10-08 22:49

Electron app, you can run it with --proxy-server=address:port flag:

引自 https://github.com/ytmdesktop/ytmdeskto ... -774769464
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
头像
yuzh652800
帖子: 686
注册时间: 2008-03-12 8:41
来自: nenu.Ani

Re: Linuxmint21/22 折腾调校笔记解决ubuntu移动硬盘自动挂载报错,移动硬盘脏脏问题。

#37

帖子 yuzh652800 » 2024-11-01 23:40

解决ubuntu移动硬盘自动挂载报错:Error mounting: wrong fs type, bad option, bad superblock on /dev/sdb1问题

https://blog.csdn.net/gianttj/article/details/140405815

主要方法:

代码: 全选

sudo fdisk -l
查看分区情况

sudo ntfsfix /dev/sda1 -d
//-d 参数,清理移动硬盘脏扇区
82c35599e11948e89e3c7e26da1f17e7.png
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
头像
yuzh652800
帖子: 686
注册时间: 2008-03-12 8:41
来自: nenu.Ani

Re: Linuxmint21/22 折腾调校笔记:ffmpeg拼接网络视频ts片段

#38

帖子 yuzh652800 » 2025-01-19 9:41

通过zyplayer下载的ts视频片段,想合并到一起,使用了

代码: 全选

ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4
参考资料https://blog.csdn.net/xindoo/article/details/121186052 中的2


想把视频片段,按照固定频率抽帧,使用:

代码: 全选

 ffmpeg -i input.mp4 -filter:v "select='gt(scene,0.3)',scale=640:-1" -vsync vfr -qscale:v 2 -y thumbnail_%04d.jpg
参考资料:https://blog.dreamfever.me/posts/2024-0 ... ct-frames/ 转场抽帧
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
yawata
帖子: 5
注册时间: 2024-09-04 12:52
系统: Kali
联系:

Re: Linuxmint21/22 折腾调校笔记:ffmpeg拼接网络视频ts片段

#39

帖子 yawata » 2025-03-01 18:47

yuzh652800 写了: 2025-01-19 9:41 通过zyplayer下载的ts视频片段,想合并到一起,使用了

代码: 全选

ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4
参考资料https://blog.csdn.net/xindoo/article/details/121186052 中的2


想把视频片段,按照固定频率抽帧,使用:

代码: 全选

 ffmpeg -i input.mp4 -filter:v "select='gt(scene,0.3)',scale=640:-1" -vsync vfr -qscale:v 2 -y thumbnail_%04d.jpg
参考资料:https://blog.dreamfever.me/posts/2024-0 ... ct-frames/ 转场抽帧
感谢分享,这个解决我的TS合并问题了。
头像
yuzh652800
帖子: 686
注册时间: 2008-03-12 8:41
来自: nenu.Ani

Re: Linuxmint21/22 折腾调校笔记【折腾Audacious播放器】

#40

帖子 yuzh652800 » 2025-03-09 1:04

折腾Audacious播放器:

1.起因:Linuxmint自带的Rhythmbox,居然不支持Cue格式分轨,卸载。
在星火里找到洪荒蛮力DeaDBeeF,一切都好,支持所有格式,音质好。

用了一段时间,哈哈,开始喜新厌旧,有了新需求,
想让其缩小到右下角控制区,没找到方法。

2.尝试:在传统linux播放器里筛选,尝试了Audacious。

安装后,在选项-插件里启用了,状态图标,就可以缩小到声音控制区了。
Snipaste_2025-03-09_00-46-54.png
3. 歌词问题,安装osdlycis

代码: 全选

sudo apt install osdlyrics
记得在osdlycis中,将歌词检索设置为网易服务器,大多数歌词都能搜到了。
Snipaste_2025-03-09_00-54-08.png
4.其他:
Audacious播放器支持皮肤,我使用了本论坛的https://forum.ubuntu.com.cn/viewtopic.php?t=47531
Audacious碰到歌曲乱码,可以 在设置-高级里检测编码设置为中文。
Snipaste_2025-03-09_00-59-46.png
Snipaste_2025-03-09_01-03-44.png
不能假定每个人都爱用命令行。
只要支持Linux的,我们都应该支持。
回复