리눅스 관련 정보 모음

linux 명령어 모음

GIT관련

Github

https://github.com/

https://namu.wiki/w/GitHub?from=Github

https://nolboo.kim/blog/2013/10/06/github-for-beginner/#section

 

git reflog

토픽 브랜치를 마스터로 머지할때

1. git cherry pick에러날수잇음

2. in topic branch, git rebase master
go to master, git merge the_branch

 

git tag -d 12345(태그명)

 

git reset --hard master

 

작업했던 commit취소시킬때  git reset HEAD~1 --hard

 

GIT branch 지우기

local지울때>     git branch -D <the_local_branch>
remote 지울때>   git push origin :<branchName>

 

2개를1개로 압축할때 ( squash 하기)
    git rebase HEAD~2 -i


첫번째 줄은 그대로 두고 두번째 줄부터 change the beginning of the second line from "pick" to "squash" and save the file

최종적으로 remote에 반영하려면 git push --force



    일반 명령어들

       DISK 용량 확인

 

디스크 파티션, 용량 정보 

# df -h  

먼저 전체용량확인후 du -hs
디렉토리별 용량 확인 du -h --max-depth=1 

https://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_%ED%98%B8%EC%8A%A4%ED%8A%B8%EB%AA%85_%EB%B3%80%EA%B2%BD_hostnamectl_set-hostname

명령어:

 

scp 명령어를 이용한 파일 복사 및 전송

http://faq.hostway.co.kr/?mid=Linux_ETC&page=7&document_srl=1426

 

 

 

xset

Modifying DPMS and screensaver settings using xset

To query the current settings:

$ xset q

xset s 3600 3600 : Change blank time to 1 hour 

단위는 초이다

 

xset s off : Disable screen saver blanking

xset dpms 4

리눅스 원격 재부팅시키기

원격으로 얼마든지 리부팅 가능합니다. telnet, ssh등을 사용해서 
root로 reboot 또는 init 6 명령을 내리면 리붓 됩니다.

리눅스 파일 시스템

http://kin.naver.com/qna/detail.nhn?d1id=1&dirId=10302&docId=63848743

 

 

 


 

 

 

 

 

+ Recent posts