Termux Debian Arm64 源码编译安装坚果云,全平台同步笔记内容(也适用树莓派)

1.直接安装ubuntu arm64,无法成功安装

Termux 中安装了debian 12,想要在debian中安装坚果云,然而官网只有amd架构的没有arm架构的,比较烦。

选择ubuntu arm64架构也不行,debian下有软件包冲突,无法安装成功,好在坚果云有源码,所以选择源码安装!

2.源码编译

安装依赖

bash 复制代码
sudo apt-get install libglib2.0-dev libgtk2.0-dev libnautilus-extension-dev python3-gi autoconf libtool pkg-config

注意还需要一个包:gir1.2-appindicator3-0.1,这个包debian官方源没有,需要从其他地方下载:

下载地址:Gir1.2-appindicator3-0.1 Download (DEB)

选择 ubuntu 22.04 LTS 下的这个arm64包:

下载后直接安装

bash 复制代码
sudo dpkg -i gir1.2-appindicator3-0.1_12.10.1+20.10.20200706.1-0ubuntu1_arm64.deb

编译源码:

bash 复制代码
wget https://www.jianguoyun.com/static/exe/installer/nutstore_linux_src_installer.tar.gz
tar zxf nutstore_linux_src_installer.tar.gz
cd nutstore_linux_src_installer
./update-toolchain.sh
./configure
make
sudo make install
#自动下载和安装坚果云其他二进制组件
./runtime_bootstrap

选择1

成功运行

3.注意!!!(可选)

以上如果没有编译成功,缺少某些软件包时,再安装以下包:

下载 gvfs-binhttps://debian.pkgs.org/11/debian-main-arm64/gvfs-bin_1.46.2-1_arm64.deb.html

再安装gvfs-bin

bash 复制代码
sudo apt install libwebkit2gtk-4.0-37 libwebkit2gtk-4.1-0
相关推荐
头茬韭菜2 天前
功能点 1:项目骨架与启动流程 —— 源码阅读笔记
运维·笔记·debian·fluss
抓不住时间的沙3 天前
N1搭建Hexo个人博客,部署到Github
python·docker·node.js·debian·github·arm
qetfw4 天前
Debian 部署 Discuz! 论坛:Nginx、PHP 与 MariaDB 配置
linux·运维·nginx·debian·php·discuz
qetfw6 天前
Debian OpenSSL CA 证书配置参考:根证书、服务证书与验证
linux·debian·ssl·openssl
qetfw9 天前
Debian OpenSSL 搭建 CA 证书服务:签发、吊销与客户端信任
linux·debian·openssl·ca
qetfw14 天前
Debian 使用 FTP 镜像源配置 APT 软件源
linux·debian·apt·ftp
XiangrongZ15 天前
debian中配置stm32的交叉编译环境
运维·stm32·debian
qetfw15 天前
Debian Apache2 执行 Shell CGI:动态时间页面配置与验证
linux·运维·debian
qetfw16 天前
Debian Apache2 实战:自定义站点目录、运行用户与 Basic Auth 认证
linux·运维·debian