Tech_Info/OS2006. 6. 15. 11:22
X Window 에서 화면 캡처하는 수만가지 방법중 괜찮은 방법 하나를 소개합니다.
이 방법은 xwd 라는 X-Window Dump 유틸리티를 활용하는 방법입니다.

X Window 가 설치된 대부분의 Unix 에 xwd 유틸리티는 설치되어 있습니다.
그러므로, 추가 프로그램 설치 없이 매우 손쉽게 화면 캡처가 가능합니다.

AIX: /usr/bin/X11/xwd
HP-UX: /usr/bin/X11/xwd
Solaris: /usr/openwin/bin/xwd

절차를 요약하면 다음과 같습니다.

1. Unix 머신의 X Window 에서 화면 dump (filename.xwd)
2. 위에서 dump 받은 파일을 PC 로 전송받아 ImageMagick 프로그램을 이용하여
.jpg, .gif, .png 등으로 변환

(예제)
o. X Window 에서 화면 dump
# xwd -root -out screen.xwd  (전체화면 dump)
=> 현재의 전체 화면이 screen.xwd 라는 파일로 dump 됨
# xwd -out my_window.xwd (특정 Window 만 dump)
=> 위 명령 실행후, 캡처하고자 하는 Window 를 마우스로 한번 클릭해주면,
클릭해준 Window 만 my_window.xwd 라는 파일로 dump 됨

o. ImageMagick 프로그램이 설치된 PC 에서 변환
=> screen.xwd 혹은 my_window.xwd 파일을 ftp 로 전송받은 후,
C:\> convert screen.xwd screen.jpg
=> screen.xwd 파일이 screen.jpg 파일로 변환됨
C:\> convert my_window.xwd my_window.png
=> my_window.xwd 파일이 my_window.png 파일로 변환됨

참고로, ImageMagick 프로그램은 www.imagemagick.org 에서 구할 수 있습니다.

by YH (윤호상)
Posted by 알 수 없는 사용자
Tech_Info/SAP2006. 6. 15. 11:02
Veritas Netbackup의 SAP module을 사용해서 백업 설정시 에러화면

ERROR: executing command  /usr/openv/netbackup/bin/bpbackup -w -t 17 -h mctest__back -S spedo -c mctest_SAP -s Default-Application-Backup -L /usr/openv/netbackup/logs/user_ops/sap/.backint.log.0.1150333199.29218 -k ".bdsvhcin.lst29218" -f /usr/openv/netba
Status = 199 : operation not allowed during this time period
[29223.00] Backup started 06/15/2006 09:59:59
[29223.00]
[29223.00] 10:00:00 Initiating backup
[29223.00] 10:00:02 INF - Server status = 199
[29223.00] 10:00:03 INF - Server status = 199
[29223.00] 10:00:04 INF - Backup by oramad on client mctest__back using policy mctest_SAP, sched Default-Application-Backup: operation not allowed during this time period.
[29223.00]
[29223.00] EXIT STATUS 199: operation not allowed during this time period
ERR - job (29223) failed status (199)
ERROR: wait for process to complete

1. Error 내용은 Netbackup Master에서 backup 가능 time 설정이 맞지 않음.
아래 파란 부분에 백업가능시간을 맞게 정해준다.


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

HP] ISEE 설명  (0) 2007.01.04
Windows XP shutdown command 로 하기  (0) 2007.01.04
/usr/sap/SID out of space  (0) 2006.08.02
SAP Netbackup 설정 에러 - Policy Error  (0) 2006.06.15
SAP Netbackup 설정 에러 - init<SID>.utl  (0) 2006.06.15
Posted by 알 수 없는 사용자
Tech_Info/SAP2006. 6. 15. 10:54
Veritas Netbackup의 SAP module을 사용해서 백업 설정시 에러화면

ERROR: executing command  /usr/openv/netbackup/bin/bpbackup -w -t 17 -h mctest__back -S spedo -c mctest_SAP -s Default-Application-Backup -L /usr/openv/netbackup/logs/user_ops/sap/.backint.log.0.1150332946.28893 -k ".bdsvhbyv.lst28893" -f /usr/openv/netba
Status = 197 : the specified schedule does not exist in the specified policy
[28895.00] Backup started 06/15/2006 09:55:46
[28895.00]
[28895.00] 09:55:47 Initiating backup
[28895.00] 09:55:49 INF - Server status = 197
[28895.00] 09:55:50 INF - Server status = 197
[28895.00] 09:55:51 INF - Backup by oramad on client mctest__back using policy mctest_SAP, sched Default-Application-Backup: the specified schedule does not exist in the specified policy.
[28895.00]
[28895.00] EXIT STATUS 197: the specified schedule does not exist in the specified policy
ERR - job (28895) failed status (197)
ERROR: wait for process to complete

1. Error 내용은 Netbackup Policy 세팅에서 schedule name이 맞지 않아서 난 에러
- 해결방법
  1.   아래의 파란부분을 init<SID>.utl 파일의 schedule 내용과 같게 수정한다.
  2.   init<SID>.utl의 schedule부분을 netbackup의 내용과 같게 수정한다.

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

HP] ISEE 설명  (0) 2007.01.04
Windows XP shutdown command 로 하기  (0) 2007.01.04
/usr/sap/SID out of space  (0) 2006.08.02
SAP Netbackup 설정 에러 - Policy Error 2  (0) 2006.06.15
SAP Netbackup 설정 에러 - init<SID>.utl  (0) 2006.06.15
Posted by 알 수 없는 사용자