Choco Install 윈도우 패키지 관리자: chocolatey
- VSCode 꼭 설치해야함(PowerShell코딩)
-
파워셀에서 이렇게 명령어 넣으면 실행된다.굿
C:/msys64/msys2_shell.cmd -defterm -here -no-start -ucrt64
wsl --install
Linux용 Windows 하위 시스템이 이미 설치되어 있습니다.
다음은 설치할 수 있는 유효한 배포 목록입니다.
'wsl --install -d <배포>'를 사용하여 설치하세요.
NAME FRIENDLY NAME
Ubuntu Ubuntu
Debian Debian GNU/Linux
kali-linux Kali Linux Rolling
Ubuntu-18.04 Ubuntu 18.04 LTS
Ubuntu-20.04 Ubuntu 20.04 LTS
Ubuntu-22.04 Ubuntu 22.04 LTS
Ubuntu-24.04 Ubuntu 24.04 LTS
OracleLinux_7_9 Oracle Linux 7.9
OracleLinux_8_7 Oracle Linux 8.7
OracleLinux_9_1 Oracle Linux 9.1
openSUSE-Leap-15.5 openSUSE Leap 15.5
SUSE-Linux-Enterprise-Server-15-SP4 SUSE Linux Enterprise Server 15 SP4
SUSE-Linux-Enterprise-15-SP5 SUSE Linux Enterprise 15 SP5
openSUSE-Tumbleweed openSUSE Tumbleweed
- 윈도우 wsl 우분투 22.04 시작하기
wsl.exe -d Ubuntu-24.04
wsl.exe -d ubuntu-22.04
wsl.exe -d kali-linux
// 종료
wsl.exe -t Ubuntu-24.04
- wsl 우분투 가상 환경 종료 하기
wsl.exe --terminate Ubuntu-22.04
or
wsl.exe -t Ubuntu-22.04
wsl.exe -t kali-linux
// 설치한 우분투삭제
wsl.exe --unregister Ubuntu-22.04
wsl --unregister <distroName>
wsl --list --online
wsl --list --online
다음은 설치할 수 있는 유효한 배포판 목록입니다.
'wsl.exe --install <Distro>'를 사용하여 설치합니다.
NAME FRIENDLY NAME
Ubuntu Ubuntu
Debian Debian GNU/Linux
kali-linux Kali Linux Rolling
Ubuntu-18.04 Ubuntu 18.04 LTS
Ubuntu-20.04 Ubuntu 20.04 LTS
Ubuntu-22.04 Ubuntu 22.04 LTS
OracleLinux_7_9 Oracle Linux 7.9
OracleLinux_8_7 Oracle Linux 8.7
OracleLinux_9_1 Oracle Linux 9.1
openSUSE-Leap-15.5 openSUSE Leap 15.5
SUSE-Linux-Enterprise-Server-15-SP4 SUSE Linux Enterprise Server 15 SP4
SUSE-Linux-Enterprise-15-SP5 SUSE Linux Enterprise 15 SP5
openSUSE-Tumbleweed openSUSE Tumbleweed
-
https://learn.microsoft.com/ko-kr/windows/wsl/basic-commands
-
인스톨 우분투 https://www.lainyzine.com/ko/article/how-to-install-wsl2-and-use-linux-on-windows-10/
-
설치한 우분투 삭제
echo "# Result" "" "``````" >> README.md && echo "``````" >> REAME.md && echo "" "``````" >> README.md
- 러스트 프로젝트 기본 셋
echo "# Result" "" "``````" >> README.md && echo "``````" >> README.md && echo "" "``````" >> README.md && echo "/target" >> .gitignore && echo "Cargo.lock" >> .gitignore
echo "# Result" "" "``````" >> README.md && echo "``````" >> README.md && echo "" "``````" >> README.md && echo "/target" >> .gitignore && echo "Cargo.lock" >> .gitignore && echo ".vscode" >> .gitignore
- Linux 커널 업데이트 패키지는 Windows 운영 체제 이미지 내에서 WSL을 실행하기 위해 WSL 2 Linux 커널의 최신 버전을 설치합니다.
-
you can already do this (or should anyhow).
-
install cmake like this to have it added to PATH for all users:
choco install cmake.install --installargs '"ADD_CMAKE_TO_PATH=System"'
- or the following to have it added to PATH for the current user only
choco install cmake.install --installargs '"ADD_CMAKE_TO_PATH=User"'
There isn't any intention of adding it by default, as it isn't added by default in the installer.
- 상위 폴더에서 하면 하위 폴더에 있는 target 폴더 다 지워진다. ㅎㅎ 편하네 ㅋㅋ 개꿀!!
Get-ChildItem -Filter ./target -Recurse -Force | Remove-Item -Recurse -Force
- 상위 폴더에서 하면 하위 폴더에 있는 .DS_Store 파일 다 지워진다. ㅎㅎ 편하다
Get-ChildItem -Filter .DS_Store -Recurse -Force | Remove-Item -Recurse -Force
dir .\ -r -i "target"
PS C:\> dir c:\ -recurse -filter mongosh.exe
- WindowsOS윈도우에는 touch가 없으니 echo를 활용하면 된다. 신기한건 Linux나 macOS에서도 되서 신기했다. 무조건 touch로 해야하는줄 알았는데 ㅋㅋ
echo /target >> .gitignore
or
echo "/target" >> .gitignore
// >> 파일 뒤에 이어 쓰기
// > 덮어 쓰기라 이전 파일내용 다 날아감.
Measure-Command { <your command here> | Out-Host }
ex)
Measure-Command { ls | Out-Host }
https://stackoverflow.com/questions/3513650/timing-a-commands-execution-in-powershell
- node위치 알아보기
(get-command node).path
C:\Program Files\nodejs\node.exe
https://community.chocolatey.org/packages/choco-cleaner
https://www.diskpart.com/windows-10/diskpart-windows-10-1203.html
-
convert gpt
https://github.com/PowerShell/PowerShell/releases/tag/v7.3.3
- rm -Force 지우고 싶은 폴더
rm -Force .\read_line03
iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI"
$PSVersionTable.PSVersion
https://jae04099.tistory.com/entry/Console-PowerShell-%EC%97%B0%EC%82%B0%EC%9E%90
// powershell 에서 해보자 alias 명령어 다 보여줌
alias
-
How do you use the Command line? PowerShell, cmd, bash? - Computer Stuff They Didn't Teach You #13
https://learn.microsoft.com/en-us/powershell/?view=powershell-7.3
https://chocolatey.org/packages
C:\> choco install 이름
- 로컬 패키지 리스트
C:\> choco list -l
- 패키지 제거
C:\> choco uninstall 이름