2023-04-25 | 13.0.2 | 672.09 MB | dmg
wget https://download3.vmware.com/software/FUS-1302/VMware-Fusion-13.0.2-21581413_universal.dmg
c86b40823b97334f20b4e6b475b488ec23faf06c986e291965b9e56f7b44c042 VMware-Fusion-13.0.2-21581413_universal.dmg
| deb https://ftp.debian.org/debian/ bookworm contrib main non-free non-free-firmware | |
| # deb-src https://ftp.debian.org/debian/ bookworm contrib main non-free non-free-firmware | |
| deb https://ftp.debian.org/debian/ bookworm-updates contrib main non-free non-free-firmware | |
| # deb-src https://ftp.debian.org/debian/ bookworm-updates contrib main non-free non-free-firmware | |
| deb https://ftp.debian.org/debian/ bookworm-proposed-updates contrib main non-free non-free-firmware | |
| # deb-src https://ftp.debian.org/debian/ bookworm-proposed-updates contrib main non-free non-free-firmware | |
| deb https://ftp.debian.org/debian/ bookworm-backports contrib main non-free non-free-firmware |
| adb shell am | |
| Activity manager (activity) commands: | |
| help | |
| Print this help text. | |
| start-activity [-D] [-N] [-W] [-P <FILE>] [--start-profiler <FILE>] | |
| [--sampling INTERVAL] [--streaming] [-R COUNT] [-S] | |
| [--track-allocation] [--user <USER_ID> | current] <INTENT> | |
| Start an Activity. Options are: | |
| -D: enable debugging | |
| -N: enable native debugging |
| #define STR_NEW( pool, str ) ( pool = memcpy( (char*) memcpy( malloc( ( str ? strlen( str ) : 0 ) + 1 + \ | |
| sizeof( char* ) ), &pool, sizeof( char* ) ) + sizeof( char*), str ? str : "", ( str ? strlen( str ) : 0 ) + 1 ) ) | |
| #define STR_FREE( pool ) while( pool ) { char* STR_FREE_TMP = ( pool - sizeof( char* ) ); \ | |
| pool = ( *(char**)STR_FREE_TMP ); free( STR_FREE_TMP ); } | |
| //--------------------------- | |
| char* strpool = NULL; |
Command:
$ fastboot helpOutput:
usage: fastboot [OPTION...] COMMAND...
flashing:Ubuntu WSL2 must be already installed in C: system drive and user should be able to call windows binaries like wsl.exe from bash.
We will install Alpine WSL2 distro in an external partition/disk:
Download Alpine.zip from here: https://github.com/yuk7/AlpineWSL/releases/
Extract the files in an external partition/disk. (for example D:\Alpine)
Below are the steps to get an ARM64 version of Ubuntu running in the QEMU emulator on Windows 10.
Install for Windows from https://qemu.weilnetz.de/w64/ (I used qemu-w64-setup-20181211.exe)
Put C:\Program Files\qemu on your PATH, and run the below to check it's working (which will list out
the CPUs the AArch64 emulator can emulate):
qemu-system-aarch64 -M virt -cpu help
| // This will works on Embedded GPU that implements .gem_prime_mmap like Rockchip ones. | |
| // This will fail on most DRM drivers for GPU with dedicated memory as they tend to NOT implement .gem_prime_mmap. | |
| #include <stdio.h> | |
| #include <libdrm/drm.h> | |
| #include <stdint.h> | |
| #include <sys/mman.h> | |
| #include <string.h> |