★Linux★리눅스★
-
Linux Networking Commands You Should Know as a Beginner★Linux★리눅스★/Linux★명령어★Ubuntu★command 2022. 12. 17. 00:55
https://www.freecodecamp.org/news/linux-networking-commands-for-beginners/ Linux Networking Commands You Should Know as a Beginner Can you imagine what it would be like to have a laptop but not to be able to access the internet? If you're a developer (or an aspiring one), you'll likely use the internet every day. So you should learn a few useful networking commands. To learn networkin www.freeco..
-
Windows에서 Ubuntu 듀얼 부팅하기 (dual/muti booting)★Linux★리눅스★/Linux★명령어★Ubuntu★command 2022. 12. 8. 18:46
https://wooriel.tistory.com/75 Windows에서 Ubuntu 듀얼 부팅하기 (dual/multi booting) 참고한 블로그 1, 블로그 2 (멀티부팅은 아님) Windows만 깔린 상태에서 ubuntu 20.04 버전을 설치하는 방법을 적어보려고 한다. [파티션 분할] 1. 왼쪽 하단의 윈도우 아이콘에서 우클릭 -> 실행 클릭 2. wooriel.tistory.com 우선 USB가 필요하다. ㅠㅠ 다른 방법 https://jimnong.tistory.com/676 우분투 리눅스 듀얼부팅 설치방법 정리(윈도우10/윈도우11 기준) 우분투 리눅스 다운로드 방법(Desktop 버전) 우분투 리눅스 설치용 USB 만드는 법(윈도우에서) 우분투 리눅스 설치용 USB 만드는 법(Ubun..
-
find | grep조합❤️내 폴더에서 하위 폴더까지 파일 안에 내가 원하는 "println" 들어간 파일명과 몇번째 줄인지 다 나오게 단어 찾★Linux★리눅스★/Linux★명령어★Ubuntu★command 2022. 11. 15. 22:22
내 폴더에서 하위 폴더까지 파일 안에 내가 원하는 "println" 들어간 파일명과 몇번째 줄인지 다 나오게 단어 찾기 find . | grep -winr -C 4 "println" grep 사용법 https://docs.oracle.com/cd/E19620-01/805-3902/6j3n40vti/index.html https://docs.oracle.com/cd/E19620-01/805-3902/6j3n40vti/index.html Chapter 4 Searching Files This chapter describes how to search directories and files for keywords and strings using the SunOS command grep. 4.1 Searching..
-
How to Learn the Linux Terminal as a Beginner – Tips and Examples★Linux★리눅스★/Linux★명령어★Ubuntu★command 2022. 11. 15. 11:20
https://www.freecodecamp.org/news/how-to-learn-linux-terminal-as-a-beginner/ How to Learn the Linux Terminal as a Beginner – Tips and Examples In 2017, I bought a new laptop and switched to Linux. I started off with Ubuntu (but jumped to Elementary [https://elementary.io/] later), as most people suggested it was beginner friendly. People also suggested that I should get used to using the keyboar..
-
cp 폴더 강제로 만들기 좋네 ㅎㅎ❤️★Linux★리눅스★/Linux★명령어★Ubuntu★command 2022. 10. 3. 12:36
cp -rf ./002_sigma_sum/ ./003test 우분투 명령어 정리Ubuntu⭐️The Linux command line for beginners|Ubuntu⭐️ - https://economiceco.tistory.com/m/11389 우분투 명령어 정리Ubuntu⭐️The Linux command line for beginners|Ubuntu⭐️ 결국은 Linux command를 외워야함 Cd Ls (dos에서 dir이랑 똑같음) The Linux command line for beginners|Ubuntu 이게 젤 좋음 영문 ㅜㅜ Ctrl+F로 빠르게 찾자!! https://ubuntu.com/tutorials/command-line-for.. economiceco.tistory.com
-
내 폴더에서 다른 폴더 디렉토리 변경없이 만들기 mkdir★Linux★리눅스★/Linux★명령어★Ubuntu★command 2022. 10. 3. 09:23
mkdir -p /home/Workspace/Release/addons/ mkdir -p ../../00sample_latex/ cp ./*.* ../../00sample_latex/. https://stackoverflow.com/questions/39847496/cp-cannot-create-directory-no-such-file-or-directory cp: cannot create directory : No such file or directory HiI am trying to copy a folder from a source to a destination but I am getting the following error: cp: cannot create directory ‘/home/Works..