XP :

Win7 :

콘솔에서

> mklink <새로운 링크명> <원본 대상>

> mklink /d <새로운 링크 폴더명> <원본 폴더>

linux (ubunutu) :

# ln -s <위치 기준 상대 경로> <새로운 링크 명>

지우는 방법은 일반 파일처럼 지워준다 ( xp 제외 )

win7 : del 링크명

linux : rm 링크명

'컴퓨터' 카테고리의 다른 글

MS-SQL 클라이언트  (0) 2012.08.28
원격 데스크톱 연결 포트 변경  (0) 2012.07.20
tar.gz 압축 하기 풀기  (0) 2012.06.07
미디어위키 관리자 수정권한  (0) 2012.06.07
콘솔 net 명령어  (0) 2012.03.23


AAA, BBB 을 abc.tar.gz 으로 압축하기

# tar cvzf abc.tar.gz AAA BBB

 

abc.tar.gz 파일을 압축 풀기

# tar xvzf abc.tar.gz

 

옵션 설명
    c : 새로운 파일을 만든다
    v : 처리하는 파일명을 출력한다
    p : 퍼미션권한 정보를 포함한다
    z : 데이터를 압축한다
    f : 출력물의 파일명을 설정한다 (파일명은 f 뒤에 위치)
    x : 파일에서 풀어낸다

'컴퓨터' 카테고리의 다른 글

원격 데스크톱 연결 포트 변경  (0) 2012.07.20
소프트 링크 만들기  (0) 2012.06.28
미디어위키 관리자 수정권한  (0) 2012.06.07
콘솔 net 명령어  (0) 2012.03.23
TeamViewer6_Setup.exe  (0) 2011.12.24


관리자를 제외한 사용자의 생성 및 수정 제한

LocalSettings.php 파일에 추가해준다

$wgGroupPermissions['*']['edit'] = false;
$wgShowIPinHeader = false;

'컴퓨터' 카테고리의 다른 글

소프트 링크 만들기  (0) 2012.06.28
tar.gz 압축 하기 풀기  (0) 2012.06.07
콘솔 net 명령어  (0) 2012.03.23
TeamViewer6_Setup.exe  (0) 2011.12.24
dav_svn.passwd 파일 유저 추가  (0) 2011.12.14

콘솔 net 명령어

컴퓨터 2012. 3. 23. 13:59


'컴퓨터' 카테고리의 다른 글

tar.gz 압축 하기 풀기  (0) 2012.06.07
미디어위키 관리자 수정권한  (0) 2012.06.07
TeamViewer6_Setup.exe  (0) 2011.12.24
dav_svn.passwd 파일 유저 추가  (0) 2011.12.14
아파치 재시작  (0) 2011.12.14

TeamViewer6_Setup.exe

컴퓨터 2011. 12. 24. 14:07


'컴퓨터' 카테고리의 다른 글

미디어위키 관리자 수정권한  (0) 2012.06.07
콘솔 net 명령어  (0) 2012.03.23
dav_svn.passwd 파일 유저 추가  (0) 2011.12.14
아파치 재시작  (0) 2011.12.14
콘솔 리다이렉션  (0) 2011.12.09


htpasswd dav_svn.passwd [이름]

-m 같은 옵션도있음

'컴퓨터' 카테고리의 다른 글

콘솔 net 명령어  (0) 2012.03.23
TeamViewer6_Setup.exe  (0) 2011.12.24
아파치 재시작  (0) 2011.12.14
콘솔 리다이렉션  (0) 2011.12.09
리눅스 하위 폴더 용량 확인  (0) 2010.12.17

아파치 재시작

컴퓨터 2011. 12. 14. 00:24


/etc/init.d/apache2 restart

경로필수

'컴퓨터' 카테고리의 다른 글

TeamViewer6_Setup.exe  (0) 2011.12.24
dav_svn.passwd 파일 유저 추가  (0) 2011.12.14
콘솔 리다이렉션  (0) 2011.12.09
리눅스 하위 폴더 용량 확인  (0) 2010.12.17
Windows 자동 실행 위치  (0) 2010.12.15

콘솔 리다이렉션

컴퓨터 2011. 12. 9. 09:45


처음 "> /dev/null" 은 표준출력을 /dev/null로 보내고 (즉, 버린다는 뜻)이고 두번째 부분인 "2>&1"은 표준에러를 표준출력이 보내진 곳과 동일한 곳으로 보낸다는 뜻이다.
 

<     filename   입력 방향을 바꾼다.
>     filename   출력 방향을 바꾼다.
>>   filename   출력에 덧붙인다.
2>   filename   오류의 방향을 바꾼다.
2>> filename   오류의 방향을 바꾸고 덧붙인다.
&>  filename   출력과 오류를 리다이렉션 한다.
>&  filename   오류와 출력을 리다이렉션 한다.
1>&2             출력을 오류로 내보낸다.
2>&1             오류를 출력으로 내보낸다.
>|                출력을 리다이렉션 할 때 NOCLOBBER 설정을 무시한다
<>  filename  장치 파일(/dev)이면, 표준 출력, 표준 입력 등에 모두 사용한다.

abc.exe > abc.txt 2>&1

abc.exe의 출력을 abc.txt에 넣는다 그리고 에러도 출력으로 넣어준다.

'컴퓨터' 카테고리의 다른 글

dav_svn.passwd 파일 유저 추가  (0) 2011.12.14
아파치 재시작  (0) 2011.12.14
리눅스 하위 폴더 용량 확인  (0) 2010.12.17
Windows 자동 실행 위치  (0) 2010.12.15
hosts파일 [ 윈도우 내부 DNS -> IP ]  (0) 2010.12.15


du -h --max-depth=1

-h : GB,MB,KB 등을 붙여 보기 편하게함

-max-depth=1 : 설명안해도 아실꺼라.. 2하면 2뎁스

'컴퓨터' 카테고리의 다른 글

아파치 재시작  (0) 2011.12.14
콘솔 리다이렉션  (0) 2011.12.09
Windows 자동 실행 위치  (0) 2010.12.15
hosts파일 [ 윈도우 내부 DNS -> IP ]  (0) 2010.12.15
리눅스 커널 버전확인  (0) 2010.06.27


Windows 자동 실행 위치  

DiamondCS 에서 제공하는 Autostart Guard, Autostart Viewer 프로그램이 모니터링하는 Windows 자동 실행 위치의 리스트 입니다.

웜, 바이러스 등에 감염되었을 때 한번쯤 살펴봐야 할 곳들이죠.


Autostart Locations are listed in no particular order.


Registry Autostart Locations

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\
All values in this key are executed.

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce\
All values in this key are executed, and then their autostart reference is deleted.

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices\
All values in this key are executed as services.

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce\
All values in this key are executed as services, and then their autostart reference is deleted.

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\
All values in this key are executed.

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce\
All values in this key are executed, and then their autostart reference is deleted.

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce\Setup\
Used only by Setup. Displays a progress dialog box as the keys are run one at a time.

HKEY_USERS\.Default\Software\Microsoft\Windows\CurrentVersion\Run\
Similar to the Run key from HKEY_CURRENT_USER.

HKEY_USERS\.Default\Software\Microsoft\Windows\CurrentVersion\RunOnce\
Similar to the RunOnce key from HKEY_CURRENT_USER.

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon
The "Shell" value is monitored. This value is executed after you log in.

HKEY_LOCAL_MACHINE\Software\Microsoft\Active Setup\Installed Components\
All subkeys are monitored, with special attention paid to the "StubPath" value in each subkey.

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\
All subkeys are monitored, with special attention paid to the "StaticVXD" value in each subkey.

HKEY_CURRENT_USER\Control Panel\Desktop
The "SCRNSAVE.EXE" value is monitored. This value is launched when your screen saver activates.

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager
The "BootExecute" value is monitored. Files listed here are Native Applications that are executed before Windows starts.

HKEY_CLASSES_ROOT\vbsfile\shell\open\command\
Executed whenever a .VBS file (Visual Basic Script)  is run.

HKEY_CLASSES_ROOT\vbefile\shell\open\command\
Executed whenever a .VBE file (Encoded Visual Basic Script) is run.

HKEY_CLASSES_ROOT\jsfile\shell\open\command\
Executed whenever a .JS file (Javascript) is run.

HKEY_CLASSES_ROOT\jsefile\shell\open\command\
Executed whenever a .JSE file (Encoded Javascript) is run.

HKEY_CLASSES_ROOT\wshfile\shell\open\command\
Executed whenever a .WSH file (Windows Scripting Host) is run.

HKEY_CLASSES_ROOT\wsffile\shell\open\command\
Executed whenever a .WSF file (Windows Scripting File) is run.

HKEY_CLASSES_ROOT\exefile\shell\open\command\
Executed whenever a .EXE file (Executable) is run.

HKEY_CLASSES_ROOT\comfile\shell\open\command\
Executed whenever a .COM file (Command) is run.

HKEY_CLASSES_ROOT\batfile\shell\open\command\
Executed whenever a .BAT file (Batch Command) is run.

HKEY_CLASSES_ROOT\scrfile\shell\open\command\
Executed whenever a .SCR file (Screen Saver) is run.

HKEY_CLASSES_ROOT\piffile\shell\open\command\
Executed whenever a .PIF file (Portable Interchange Format) is run.

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\
Services marked to startup automatically are executed before user login.

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Winsock2\Parameters\Protocol_Catalog\Catalog_Entries\
Layered Service Providers, executed before user login.

HKEY_LOCAL_MACHINE\System\Control\WOW\cmdline
Executed when a 16-bit Windows executable is executed.

HKEY_LOCAL_MACHINE\System\Control\WOW\wowcmdline
Executed when a 16-bit DOS application is executed.

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Userinit
Executed when a user logs in.

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\ShellServiceObjectDelayLoad\
Executed by explorer.exe as soon as it has loaded.

HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows\run
Executed when the user logs in.

HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows\load
Executed when the user logs in.

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\run\
Subvalues are executed when Explorer initialises.

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\run\
Subvalues are executed when Explorer initialises.


Folder Autostart Locations

windir\Start Menu\Programs\Startup\
User\Startup\
All Users\Startup\
windir\system\iosubsys\
windir\system\vmm32\
windir\Tasks\

File Autostart Locations

c:\explorer.exe  
c:\autoexec.bat
c:\config.sys
windir\wininit.ini
windir\winstart.bat
windir\win.ini - [windows] "load"
windir\win.ini - [windows] "run"
windir\system.ini - [boot] "shell"
windir\system.ini - [boot] "scrnsave.exe"
windir\dosstart.bat
windir\system\autoexec.nt
windir\system\config.nt

'컴퓨터' 카테고리의 다른 글

아파치 재시작  (0) 2011.12.14
콘솔 리다이렉션  (0) 2011.12.09
리눅스 하위 폴더 용량 확인  (0) 2010.12.17
hosts파일 [ 윈도우 내부 DNS -> IP ]  (0) 2010.12.15
리눅스 커널 버전확인  (0) 2010.06.27