Search found 24 matches

by voyzer
2025 Dec 08 17:53
Forum: Ops
Topic: type 중 터치패드 비활성화 (linux)
Replies: 0
Views: 5

type 중 터치패드 비활성화 (linux)

# cat /etc/X11/xorg.conf.d/40-libinput.conf Section "InputClass" Identifier "touchpad" MatchIsTouchpad "on" Driver "libinput" Option "DisableWhileTyping" "true" Option "Tapping" "true" Option "ClickMethod" &quo...
by voyzer
2025 Dec 08 17:48
Forum: Ops
Topic: wifi 설정 - linux (command 로)
Replies: 0
Views: 1

wifi 설정 - linux (command 로)

ip addr show ip link wpa_passphrase "Galaxy Z Fold2 5G 4298" "k2550htc" | tee /etc/wpa_supplicant/wpa_supplicant-wlp58s0.conf ### check below file check vi /etc/systemd/network/25-wireless-dhcp.network wpa_supplicant -B -i wlp58s0 -c /etc/wpa_supplicant/wpa_supplicant-wlp58s0.con...
by voyzer
2024 Dec 23 11:50
Forum: Dev
Topic: rust jni build pc, android
Replies: 0
Views: 159814

rust jni build pc, android

To set up a build environment that can handle both PC JNI and Android JNI simultaneously, you can leverage Rust's cross-compilation features and Cargo's flexibility. Here's how you can organize your project: 1. Project Structure Organize your project to manage both PC and Android builds: bash 코드 복사 ...
by voyzer
2024 Dec 23 10:07
Forum: Openssl
Topic: openssl compile on windows
Replies: 0
Views: 137777

openssl compile on windows

D:\Project\openssl340>cd openssl D:\Project\openssl340\openssl>git checkout openssl-3.4.0 Note: switching to 'openssl-3.4.0'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any...
by voyzer
2024 Aug 08 09:11
Forum: Dev
Topic: emacs configuration
Replies: 0
Views: 91702

emacs configuration

### help-key-binding 보이게 처리 key-bindng 이 하얗게 안보일 때 (set-face-attribute 'help-key-binding nil :foreground "black" :background "lightgray") ### Show faces list M-x list-faces-display ;; 1. 선택한 블럭을 Comment / Uncomment M-; ;; 2. 쉘이 콘솔, 그래픽 모드 여부 체크값 display-graphic-p M-: => EVAL (dis...
by voyzer
2024 Jul 29 16:54
Forum: Dev
Topic: python pip virtual env
Replies: 0
Views: 113118

python pip virtual env

pip install virtualenv --trusted-host pypi.org --trusted-host files.pythonhosted.org

pythone3 -m venv myenv
by voyzer
2024 May 30 17:44
Forum: Openssl
Topic: Openssl - ndk
Replies: 0
Views: 81418

Openssl - ndk

1. armeabi-v7a ./Configure android-arm no-ssl3 no-comp no-hw no-engine --prefix=/path/to/output 2. arm64-v8a ./Configure android-arm64 no-ssl3 no-comp no-hw no-engine --prefix=/path/to/output ./Configure enable-fips enable-tfo shared android-arm64 --prefix=/workplace/openssl/release_arm64-v8a 3. x86...
by voyzer
2024 May 30 16:21
Forum: Openssl
Topic: Openssl - release path
Replies: 0
Views: 70556

Openssl - release path

voyzer@debian:/workplace/openssl$ ls -l 합계 16 drwxrwxr-x 32 voyzer voyzer 4096 5월 30일 15:20 openssl_v3.3.1 drwxrwxr-x 34 voyzer voyzer 4096 5월 30일 16:18 openssl_v3.4.0 drwxr-xr-x 7 root root 4096 5월 30일 15:38 release <- linux drwxrwxr-x 7 voyzer voyzer 4096 5월 30일 16:19 release_android <- android
by voyzer
2024 May 30 16:12
Forum: Openssl
Topic: Openssl - build with android-ndk(arm64-v8a)
Replies: 0
Views: 84024

Openssl - build with android-ndk(arm64-v8a)

1. export ndk-path voyzer@debian:/workplace/openssl/openssl_v3.4.0$ export ANDROID_NDK_ROOT=/workplace/android-ndk/android-ndk-r26d 2. Add ndk bin path voyzer@debian:/workplace/openssl/openssl_v3.4.0$ PATH=$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH 3. openssl configure voyzer...
by voyzer
2024 May 30 15:51
Forum: Openssl
Topic: Openssl - compile on linux
Replies: 0
Views: 82528

Openssl - compile on linux

voyzer@debian:/workplace/openssl/openssl_v3.4.0$ ./Configure enable-fips enable-tfo shared --prefix=/workplace/openssl/release Configuring OpenSSL version 3.4.0-dev for target linux-x86_64 Using os-specific seed configuration Created configdata.pm Running configdata.pm Created Makefile.in Created M...