Linux 69

wsl1 and wsl2

using WSL1, WSL2 How to Set Linux Distribution version to WSL 1 or WSL 2 in Windows 10 C:\Users\username> wsl --help Copyright (c) Microsoft Corporation. All rights reserved. 사용법: wsl.exe [인수] [옵션...] [명령줄] Linux 바이너리를 실행하기 위한 인수: 명령줄이 제공되지 않으면, wsl.exe는 기본 셸을 실행합니다. --exec, -e 기본 Linux 셸을 사용하지 않고 지정된 명령을 실행합니다. -- 나머지 명령줄은 그대로 전달합니다. 옵션: --distribution, -d 지정된 배포를 실행합니다. --user, -u 지정된 사용자로 실행합..

os/Window 2021.07.08

Management Ubuntu VMs on Multipass

Multipass Multipass Multipass Docs robert-ancell/multipass-gui Multipass는 Linux 인스턴스를 시작, 관리 및 조작 할 수있는 명령 줄 인터페이스를 제공합니다. 기존 이미지를 다운로드하는 데 몇 초 밖에 걸리지 않으며 몇 분 안에 VM을 가동하고 실행할 수 있습니다. Install Install Mutipass on Windows Install Muitpass on Mac Install Multipass on Linux iOS brew brew cask install multipassLinux lsb_release -d sudo snap install multipass --classic --betaVM 인스턴스 시작 (기본으로 현재 Ubuntu ..

os 2020.08.24

Godot - Compiling for X11 (Linux, *BSD)

Compiling for X11 (Linux, *BSD) Godot - Docs » Compiling » Compiling for X11 (Linux, *BSD) Requirements For compiling under Linux or other Unix variants, the following is required: Linux 또는 다른 Unix 계열에서 컴파일하려면 다음이 필요합니다. GCC or Clang Python 2.7+ (Python 3 only supported as of SCons 3.0) Python 2.7 이상 (Python 3은 SCons 3.0에서만 지원됨) SCons build system pkg-config (used to detect the dependencies belo..

game/godot 2018.12.08

Godot - Cross-compiling for iOS on Linux

Cross-compiling for iOS on Linux Godot - Docs » Compiling » Cross-compiling for iOS on Linux The procedure for this is somewhat complex and requires a lot of steps, but once you have the environment properly configured it will be easy to compile Godot for iOS anytime you want. 이 절차는 다소 복잡하고 많은 단계가 필요하지만 일단 환경을 적절하게 구성하면 원하는 때에 언제든지 Godot을 iOS 용으로 쉽게 컴파일 할 수 있습니다. Disclaimer While it is possible ..

game/godot 2018.12.05

Linux Movie to gif

How to convert video to animated gif image on Linux sudo apt-get install ffmpeg imageMagick # sudo yum install youtube-dl .... # 프레임 추출, out.gif 으로 병합되어 추출된다. # ffmpeg -t -ss -i out%04d.gif ffmpeg -t 5 -ss 00:00:10 -i funny.mp4 out.gif # 만약 프레임을 추출만 했다면 병합한다. # convert -delay x -loop 0 out*gif convert -delay 1x20 -loop 0 out*.gif animation.gif # GIF 크기 줄이기 convert -layers Optimize animation.gif ..

os/Linux 2018.06.27
반응형