标签:时间 mic The nts 没有 for loading images pac
本文会在日常的使用中,不断更新,汇总问题。
前文链接ArchLinux安装步骤(一)
前文链接ArcnLinux安装基础配置(二)
前文链接ArchLinux安装常用软件QQ、TIM、微信等常用软件(三)
本文问题描述中提到的时间,都是指出现bug的时间。现象是复现bug的操作。
时间:2021/07/27
现象:直接鼠标双击appimage文件后,提示赋予执行权限后执行,一点反应都没有
方法:这里用鼠标点是看不到报错的,切换到命令行运行,提示如下报错:
dlopen(): error loading libfuse.so.2
AppImages require FUSE to run.
You might still be able to extract the contents of this AppImage
if you run it with the --appimage-extract option.
See https://github.com/AppImage/AppImageKit/wiki/FUSE
for more information
这里是因为arch用了fuse,安装下面这个包之后就可以正常运行了。
sudo pacman -S fuse2
时间:2021/07/27
现象:通过yay安装好了dev版本之后,双击浏览器加载一段时间后,加载图标消失,没有其他反应。
方法:这里同样去命令行中运行浏览器,查看报错信息。一般arch装的包都在/opt 目录下。在/opt 目录下找到对应执行文件运行后,有如下报错:
[17009:17009:0715/114105.311768:ERROR:browser_main_loop.cc(272)]
GLib-GObject: g_value_set_boxed: assertion ‘G_VALUE_HOLDS_BOXED (value)‘ failed
[0715/114105.455379:ERROR:elf_dynamic_array_reader.h(61)] tag not found
[0715/114105.456267:WARNING:minidump_to_upload_parameters.cc(36)] duplicate key guid, discarding value 9a9f607786904d079e9915eb852576e3
[17113:17113:0100/000000.624126:ERROR:sandbox_linux.cc(374)] InitializeSandbox() called with multiple threads in process gpu-process.
[1] 17009 segmentation fault (core dumped) microsoft-edge-beta
这里是因为软件包对应版本导致,贴吧中已有大神给出解决方案archlinux上microsoft edge运行不起来。
在下面这个链接中下载对应的 systemd-248.3-2-x86_64.pkg.tar.zst
软件包
在下面这个链接中下载对应的systemd-libs-248-3-x86_64.pkg.tar.zst
软件包
下载完成后,在对应的软件下载位置执行降级命令后,即可正常打开浏览器。(系统升级的时候,记得不要升级这两个包,不然又得打不开了)
sudo pacman -U systemd-248.3-2-x86_64.pkg.tar.zst systemd-libs-248-3-x86_64.pkg.tar.zst
标签:时间 mic The nts 没有 for loading images pac
原文地址:https://www.cnblogs.com/cirry/p/15064441.html