Tech_Info/Etc2006. 12. 26. 10:35
Virtual Center에서 마우스 컨트롤 다시 찾기
CTRL + ALT

To release to mouse cursor, Press CTRL + ALT
Posted by 알 수 없는 사용자
Tech_Info/Network2006. 11. 20. 17:02
SUMMARY
The Microsoft TCP/IP-32 stack uses various means to resolve a host name to an IP address of a given host. Four mechanisms are used; Local Cached Information, Hosts File, DNS Servers, and NetBIOS name resolution mechanisms. The default resolution order for resolving a host name is Local Cached Information -> Hosts File -> DNS Servers -> NetBt (NetBIOS over TCP/IP). NetBIOS over TCP/IP name resolution can consist of local subnet broadcasts.

MORE INFORMATION
Under most circumstances, the default resolution order does not need to be changed. However, if a change is necessary there are SYSTEM.INI parameters that you can use to alter this default behavior. This is done by using the four parameters: LocalPriority, HostsPriority, DnsPriority, and NetbtPriority. These parameters are Specified in the [DNS] section of the SYSTEM.INI file. Valid values can be between -32768 and 32767. The lower the value, the higher the priority in the search order. If you specify any of these parameters in the SYSTEM.INI, only those parameters specified will take effect, and none of the other resolution methods will be used.

Example
[DNS]
DnsPriority=1
HostsPriority=2

Will search the configured DNS server first, followed by the local HOSTS file. Local Cached Information and NetBIOS name resolution mechanisms would not be used.

Link : Setting the Name Resolution Search Order for TCP/IP-32
http://support.microsoft.com/kb/119372/EN-US/
Posted by 알 수 없는 사용자
Tech_Info/OS2006. 11. 14. 17:42

FAT16-MaxFileSize: 2^32 minus 1 bytes (approx. 4,2GB)
FAT16-MaxVolumeSize: 4GB
FAT16-MaxFilesPerVolume: 2^16 (65536)

FAT32-MaxFileSize: 2^32 minus 1 bytes (approx. 4,2GB)
FAT32-MaxVolumeSize: 32GB / 127.53 GB
FAT32-MaxFilesPerVolume: approx. 2^22 (4194304)

NTFS-MaxFileSize: theoretical: 2^64 - 1 KB (approx. 17179869184 GB),
NTFS-MaxFileSize: implemented: 2^44 - 1 KB (approx. 16384 GB)
NTFS-MaxVolumeSize: theoretical 2^64 clusters (16 exabytes (EB))
NTFS-MaxVolumeSize: implemented 2^32 clusters (2 TB)
NTFS-MaxFilesPerVolume: 2^32 - 1 (4294967295)


Link : http://groups.google.co.kr/group/microsoft.public.win2000.file_system/browse_thread/thread/e8ebc00fa350d298/dc5611004e4fdea0%23dc5611004e4fdea0

'Tech_Info > OS' 카테고리의 다른 글

Boot.ini 와 ARC에 대한글  (0) 2007.01.02
CTG 란?  (0) 2006.12.26
Command Prompt 사용하기 쉽게 만들기  (0) 2006.10.30
FTP home directory inaccessible  (0) 2006.10.30
SAN Volume Controller (SVC)  (0) 2006.10.24
Posted by 알 수 없는 사용자
Tech_Info/Database2006. 11. 8. 09:14

출처는 모르겠고, 예전회사에서 쓰던 Tablespace 사용량 확인하는 스크립트이다.

set pagesize 50
COLUMN tablespace_name FORMAT a15 HEADING "TableSPace(KB)"
COLUMN total_size_kb FORMAT 999,999,999 HEADING "Total(KB)"
COLUMN free_size_kb FORMAT 99,999,999 HEADING "Free(KB)"
COLUMN used_size_kb FORMAT 999,999,999 HEADING "Used(KB)"
COLUMN usedpercentage FORMAT 999.99 HEADING "Used %"
COLUMN files FORMAT 99999 HEADING  "Files"
COLUMN largest FORMAT 99,999,999 HEADING  "Largest"

select
T.tablespace_name,
       TS."total_size_b"/1024 as "total_size_kb",
       NVL(FS."free_size_b"/1024, 0) as "free_size_kb",
       NVL((TS."total_size_b"-FS."free_size_b")/1024, 0) as "used_size_kb",
       NVL(Round(100 * ((TS."total_size_b"-FS."free_size_b") / TS."total_size_b"), 2), 0) as "usedpercentage",
       TS."filecnt" as "files",
       FS."maxfree" as "largest"
from
       dba_tablespaces T,
       (select tablespace_name, round (sum(bytes), 0) as "total_size_b",
               count(file_name) as "filecnt"
       from dba_data_files
       group by tablespace_name) TS,
       (select tablespace_name, round(sum(bytes), 0) as "free_size_b",
               max(bytes)/1024 as "maxfree"
       from dba_free_space
       group by tablespace_name) FS
where
       T.tablespace_name = TS.tablespace_name and
       T.tablespace_name = FS.tablespace_name (+)
order by "usedpercentage";


사용방법은 알아서 ㅋㅋ
간략하게 쓰자면, tsp.sql로 저장해놓고 sqlplus 에서 @tsp.sql 하면 됩니다. ^^

'Tech_Info > Database' 카테고리의 다른 글

SQL Server Errorlog archive 개수 늘리기  (0) 2006.06.26
xp_cmdshell 삭제하기  (0) 2006.06.26
Posted by 알 수 없는 사용자
Tech_Info/OS2006. 10. 30. 11:25
원본링크 : http://technet2.microsoft.com/WindowsServer/en/library/4960db77-7bc9-4b5c-9c68-53a8b3c593f61033.mspx

Command Prompt를 좀 더 사용하기 편하게 바꿔보자.

방법 :
1. Open Command Prompt.
2. Click the upper-left corner of the Command Prompt window, and then click Properties.
3. Click the Options tab.
4. In Command History, type or select 999 in Buffer Size, and then type or select 5 in Number of Buffers.
5. In Edit Options, select the Quick Edit Mode and Insert Mode check boxes.
6. Click the Layout tab.
7. In Screen Buffer Size, type or select 2500 in Height.
8. In the Apply Properties dialog box, click Save properties for future windows with same title.

효과 :
• By selecting the Quick Edit Mode check box, you enable copy and paste from the Command Prompt window. To copy, select the text in the Command Prompt window with your left mouse button, and then right-click. To paste, either at the command prompt or in a text file, right-click.
• By increasing the screen buffer size to 999, you enable scrolling through the Command Prompt window.
• By increasing the number of buffers to five, you increase the number of lines in the Command Prompt window to 5000.

'Tech_Info > OS' 카테고리의 다른 글

CTG 란?  (0) 2006.12.26
NT File System 제한  (0) 2006.11.14
FTP home directory inaccessible  (0) 2006.10.30
SAN Volume Controller (SVC)  (0) 2006.10.24
HOWTO: Exchange 2000에서 사서함에 대한 저장소 제한 구성  (0) 2006.10.11
Posted by 알 수 없는 사용자
Tech_Info/OS2006. 10. 30. 10:26
FTP가 아래와 같은 메세지를 보여주면서 로그인이 안될때는 대상 디렉토리의 권한을 확인하면 된다.

Posted by 알 수 없는 사용자
Tech_Info/OS2006. 10. 24. 17:51
Simplify your storage infrastructure with IBM TotalStorage® SAN Volume Controller (SVC). Designed to enable changes to the physical storage with minimal or no disruption to applications, TotalStorage SAN Volume Controller combines the capacity from multiple disk storage systems into a single storage pool, which can be managed from a central point. This is simpler to manage, helps to increase utilization and improve application availability.

TotalStorage SAN Volume Controller's extensive support for non-IBM storage systems -- including EMC, HP and HDS -- enables a tiered storage environment to allow you to better match the cost of the storage to the value of your data. You can apply advanced copy services across storage systems from many different vendors to help further simplify operations. Now on its seventh release, TotalStorage SAN Volume Controller is designed to manage even larger and more diverse storage environments.

Link : http://searchcio.bitpipe.com/detail/PROD/1151302361_955.html&src=searchcio.bitpipe.com

SVC Information Center : http://publib.boulder.ibm.com/infocenter/svcic/v3r1m0/topic/com.ibm.svc.web.doc/svc_ichome_1ux9eg.html
SVC 설명 : http://datanet.co.kr/market/read.html?cd=2836&N_cate1=1&N_cate2=13
Posted by 알 수 없는 사용자
Tech_Info/OS2006. 10. 11. 10:58
링크 : http://support.microsoft.com/kb/319583/ko

경호가 물어봐서 찾아서 저장해놓음
Posted by 알 수 없는 사용자
Tech_Info/OS2006. 10. 4. 13:31
IIS 6.0 에서는 보안성 강화로 인해 “상위 경로 사용”이 기본적으로 해제되어 있다. 하지만, IIS 5.0 에서는 상위경로를 사용하도록 값이 설정 되어 있다. 상위 경로를 사용하도록 되어 있는 경우 웹 소스를 통해 상위 경로로의 접근이 가능할 수 있다. 가장 기본적인 웹 보안 자료를 보더라도 상위 경로를 사용하지 않도록 안내되어 있다. 상위경로를 사용하지 않으면서 웹사이트가 정상적으로 구동되기 위해서는 웹 소스상에 Include File 을 사용하지 않고 Include Virtual 을 사용하여 소스를 제작하면 된다.

이 작업은 이미 구성되어 있는 IIS 서버에서 사용하게 되면 오류가 발생할 소지가 아주 크다.
꼭 검토를 거쳐야 한다고 생각한다.


상위 경로 사용(P) -> 체크를 없애준다.


참조링크 : http://korea.internet.com/channel/content.asp?kid=3&cid=185&nid=38338
Posted by 알 수 없는 사용자
Tech_Info/OS2006. 10. 4. 13:28
IIS로 운영중인 웹서비스를 가끔 사용하다 보면 오류 메세지를 유저에게 자세하게 보내주는 경우가 있다.
이 오류메세지는 유저에게 불필요할 뿐 아니라, 해킹의 소지가 되므로 바꾸어 주는것이 좋다.
보통 대형사이트 들은 (IIS를 쓰지도 않지만 ^^) Error Page를 매핑해서 쓰고 있다.


참조링크 : http://korea.internet.com/channel/content.asp?kid=3&cid=185&nid=38338
Posted by 알 수 없는 사용자