IT(7)
-
리눅스 명령어
파일삭제 : rm -rf 파일명(경로) 파일복사 : cp 파일명(경로) 이동경로 ssh 접속: ssh 계정@주소(ip) scp 원격파일 전속(ssh Protocol을 이용하여 전송) : scp 파일명(경로) 계정@주소(ip)/경로 c언어 컴파일 : gcc -o 이름 *.c(ex : gcc -o test test.c)
2019.12.29 -
라즈베리파이 Gitlab 설치
1. 메일 서버 셋팅(왜 설치하는지는 모르겠다....) sudo apt install curl openssh-server ca-certificates postfix apt-transport-https 2. 설치 셋팅 curl https://packages.gitlab.com/gpg.key | sudo apt-key add - sudo curl -o /etc/apt/sources.list.d/gitlab_ce.list "https://packages.gitlab.com/install/repositories/gitlab/raspberry-pi2/config_file.list?os=debian&dist=jessie" && sudo apt-get update 3. gitlab apt-get 설치 sudo apt..
2019.12.23 -
Visual Studio Code(C언어 설정)
Visual Studio Code에서 C언어 공부 진행 예정(이하 vscode라함) vscode을 선택한 이유 : 노트북 mac, 데스크탑 Window, 라즈베리파이 ubuntu을 사용하기 때문에 소스 코드 관리하기 위해 vscode을 사용하게 됨 MAC에서 설정 방법 1. vscode을 다운 https://code.visualstudio.com Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and avail..
2019.12.21 -
vi(ubuntu에선 vim이라 한다) 설정 및 명령어
설정 set number " line 표시를 해줍니다. set ai " auto indent set si " smart indent set cindent " c style indent set shiftwidth=4 " shift를 4칸으로 ( >, >>,
2019.12.18 -
1. Arduino LED Switch
LED 동작 영상 아두이노랑 라즈베리 파이로 만들고 싶은게 있어서 시작한 아두이노 공부
2019.12.11 -
2. 서버를 구축할 때 알아야 할 필수 개념과 명령어
터미널/콘솔에서 시스템 종료 명령 실행 - poweroff - shutdown - P now : 지금 종료 #shutdown -P +10 : 10분 후 종료 #shutdown -r 22:00 : 22시에 재부팅(r은 재부팅) #shutdown -c : 예약된 shutdown을 취소(c : cancel) #shutdown -k +15 : 현재 접속한 사용자에게 15분 후에 종료된다는 메시지를 보내지만 실제로는 종료는 안 됨 - halt -p, init 0 *p or P 옵션은 시스템 종료를 의미 터미널/콘솔에서 시스템 재부팅 - reboot - shutdown -r now - init 6 터미널/콘솔에서 로그아웃 - logout - exit ●터미널에서 root사용자와 일반 사용자 구분 : root 사용자..
2019.12.11