標簽:時間 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