기본 콘텐츠로 건너뛰기

Linux Terminal Commands




File Permissions
  • chmod 777 – read, write, execute for all 
  • chmod 755 – rwx for owner, rx for group and world 
File Commands 
  • ls -al – Formatted listing with hidden files 
  • mkdir dir – Create a directory dir 
  • rm name – Remove a file or directory called name 
  • rm -rf dir – Force remove an entire directory dir and all it’s included files and subdirectories (use with extreme caution) 
  • cp -r dir1 dir2 – Copy dir1 to dir2; create dir2 if it doesn't exist 
  • cp file /home/dirname – Copy the filename called file to the /home/dirname directory 
  • scp -p 22 file user@host.com:/home/ - Secure Copy file to host.com /home directory as user through port 22 
  • mv file /home/dirname – Move the file called filename to the /home/dirname directory 
  • ln -s file link – Create symbolic link link to file 
  • cat originFile > targetFile – Places standard input into new file (not work on ssh) 
  • cat originFile >> targetFile - add string to file
Compression
  • tar xzf file.tar.gz – Extract a tar using Gzip 
Network
  • wget -c file – Continue a stopped download 
SSH
  • ssh user@host – Connect to host as user 
User Administration
  • adduser accountname – Create a new user call accountname 
Process Management
  • ps – Display your currently active processes 
  • kill pid – Kill process id pid 
Stopping & Starting
  • halt – Stop all processes - same as above 
  • reboot – Stop all processes and then reboot - same as above 
  • shutdown -r 5 – Shutdown the system in 5 minutes and reboot 
systemd
  • systemctl start servicename - start servicename service 
  • systemctl enable servicename - registration service 
  • systemctl status servicename - show service status 



http://community.linuxmint.com/tutorial/view/244


이 블로그의 인기 게시물

[ 3D개념 정리 ] Texture Methods와 Light

Texture diffuse map (color map) : 조명의 확산, 컬러등의 정보가 담긴 텍스쳐 specular map : 재질에 따른 반사율을 다르게 하기위한 텍스쳐 (광택) normal map : 평평한 텍스쳐에 굴곡을 주기위한 텍스쳐 ambient occlusion (A.O.) : 주변물체와 근첩함으로 생기는 암부 표현위한 텍스쳐 Light directional light : 태양 (모든 면에 일정각도로 비췸) point light :  랜턴 (방향있는 조명) rim light : 후광 (윤곽이 또렸해지는 효과) fresnel effect : 빛의 반사각에 따라 밝기나 색상이 다름 (호수표면 효과?)

FlashPunk (Flash Game Engine)글 제목

github에서 actionscript 검색하다 우연히 발견한 플래시 2D 게임엔진. http://flashpunk.net/ 코드를 한참 들여다보다 잘 감이 안잡혀서 검색해봤더니 쓰는 사람들이 말하길 동영상 강좌 보고 하니 쉽다고 하길래 홈페이지 가봤다. 강좌가 잘되어 있다.^^ (동영상강좌가 아주 좋다) 맛배기로  첫번째 강좌 FlashDevelop를 사용해서 셋팅하는 법부터, 프로젝트 구성하는 법까지 알려줌