블로그
-
[노트 필기] 리눅스에 대해 알아보자. 1. 리눅스란? 그리고 리눅스 flavors. 리눅스 배포판 설명, 윈도우즈와 차이점.
Command Line Interface. CLI를 주로 사용. Strong command line interface. 커멘드 라인 입력으로 인해서, 처리가 빠름. Linux. 1990년 인터넷을 통한 공동의 개발로 꾸준히 발전함. 1994년, Lin.......
blog.naver.com · 2026.03.14
-
[노트 필기] 리눅스에 대해 알아보자. 10. Linux 기초 c. 파일에 텍스트 추가하기, tee, pipe
파일에 텍스트 추가하기 Adding Text to Files (Redirects) 3가지 방법이 있다. vi Redirect command output > or >> Input and Output Redirects 3 redirects in Linux Standard input (stdin) and it has file descriptor number
blog.naver.com · 2026.03.25
-
[노트 필기] 리눅스에 대해 알아보자. 16. 시스템 관리 a. 파일편집기 vi, sed 명령어
Linux File Editor vi -Visual editor ed - Standard line editor ex - Extended line editor emacs - A full - quit and save Shift + z, z - quit and save "sed" command Replace a string in a file with a newstring
blog.naver.com · 2026.03.25
-
유용한 Linux Command
#linux version 확인 grep . /etc/*-release #CPU 물리/논리 코어수 확인 1) 논리 코어수 (1) grep -c processor /proc/cpuinfo (2) ll -d /sys/devices/system/cpu/cpu?/ |wc –l 2) 물리 코어수
blog.naver.com · 2023.10.26
-
linux SFTP 명령어
# 리눅스 #FTP #linux sftp use_id@ip sftp>> You can upload your file to remote server using command : put filename newfilename or put filename You can download file from the remote server by using command
blog.naver.com · 2022.09.06
-
curl 설치 및 사용법
개요 curl 은 command line 용 data transfer tool 이다. download/upload 모두 가능하며 HTTP/HTTPS/FTP/LDAP/SCP/TELNET /SMTP/POP3 등 주요한 프로토콜을 지원하며 Linux/Unix 계열 및 Windows 등 주요한 OS 에서 구동되므로 여러 플랫폼과 OS에서 유용하게 사용할 수 있다.
blog.naver.com · 2022.07.03
-
Python, Selenium, chromeDriver Setting
To run the notebook, run the following command at the Terminal (Mac/Linux) or Command Prompt (Windows
blog.naver.com · 2021.07.18
-
Linux Command - source
리눅스를 사용하시다보면 source 커맨드 정말 많이 사용합니다. profile 을 수정하면 무조건 source 커맨드 쓰라고 하거든요. 'source'는 그냥 간단하게 말해서 해당 파일을 실행해서 현재 쉘 스크립트에 적용시키는 명령어입니다. 아래 예시를 볼게요. 그냥 실행하는 경우(.
blog.naver.com · 2020.07.24
-
리눅스에서 "vi "가 안 될때
error messege : Command 'sudo' is available in '/usr/bin/sudo' The command could not be located because '/usr/bin' is not included in the PATH environment variable. sudo: command not found ---> 이건 리눅스
blog.naver.com · 2020.03.25
-
[Linux] 다수 patch 파일 적용 하는 command
cd /path/to/source for i in ../*.patch; do patch -p1 < $i; done
blog.naver.com · 2019.07.11
블로그 결과 더보기 →