Installing Frida on Mac M-Series Chips: A Comprehensive Guide
1. Cleaning Up Previous Installation Traces
If you've attempted to install Frida before and encountered issues, residual cache files and symbolic links might interfere with new installaitons. These remnants must be removed first. (Standard pip installations typically deploy x86_64 versions, which create corresponding symbolic links that won't w ...
Posted on Mon, 15 Jun 2026 17:39:46 +0000 by Joe_Dean
Installing ROS Melodic on Jetson TX2 Running Ubuntu 18.04 LTS
Start by configuring your package manager to pull software from ROS’s official repositories. Launch a terminal and run this to set up sources.list:
APT_SOURCES_PATH=/etc/apt/sources.list.d/ros-latest.list
OS_CODENAME=$(lsb_release -cs)
echo "deb http://packages.ros.org/ros/ubuntu $OS_CODENAME main" | sudo tee $APT_SOURCES_PATH
Next, ...
Posted on Sat, 16 May 2026 10:03:46 +0000 by 0riole
Cross-Compilation of Qiniu C SDK for ARM64 Embedded Linux
Integrating Qiniu Cloud services into ARM64 embedded devices necessitates cross-compiling the C SDK along with its dependencies. The following procedure outlines the build process for targets such as the RK1808 core within a Linux host environment.
Dependency: libcurl
Obtain the libcurl source archive and extract it into the working directory.
...
Posted on Sat, 09 May 2026 05:41:11 +0000 by cypher235