CentOS 7, OpenVAS 9 에서 PDF 파일 생성되지 않을때
CentOS 7 에 설치된 OpenVAS 9 에서 PDF 리포트가 생성되지 않을때 확인할 방법입니다.
먼저 아래와 같이 명령을 실행하면 PDF 리포트 가능 여부가 확인됩니다.
# openvas-check-setup
...
Step 9: Checking presence of optional tools ...
OK: pdflatex found.
WARNING: PDF generation failed, most likely due to missing LaTeX packages. The PDF report format will not work.
SUGGEST: Install required LaTeX packages.
...
그러면 아래와 같이 필요 패키지를 설치해보세요
# yum install texlive-collection-latexextra
그래도 The package texlive-collection-latexextra is not available 라는 메세지가 출력되며 설치되지 않는다면, 아래와 같은 방법으로 해결해야 합니다.
1) 기존 설치 파일 모두 제거
# yum remove openvas openvas-manager
2) textlive 설치
# cd/usr/local/src
# wget http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz
# tar xvzf install-tl-unx.tar.gz
# cd install-tl-*
# ./install-tl
"options (O)" 누른 뒤 "create symlinks (L)" 를 선택 합니다.
for the texlive-binaries to: /usr/bin
manpages to: /usr/share/man
to: /usr/share/info
다시 메인페이지로 돌아가서 설치를 합니다.
Now return (R) to the main menu an install (I) texlive
그다음, openvas-manager 를 설치해야 하는데, 그냥 yum install 할 경우 textlive 가 잘못 설치되어질 수 있으므로
openvas-manager 패키지만 받아 의전성 무시하고 설치를 합니다.
# yum install --downloadonly --downloaddir=/tmp openvas-manager
# rpm -i --nodeps openvas-manager-*.rpm
그리고 나머지 openvas 를 설치합니다. openvas 설치시 greenbone-security-assistant 도 같이 설치됩니다.
# yum install openvas
추가 파일 설치 및 환경 설정을 합니다.
# openvas-setup
gsad 구동 상태에서 아래와 같이 설정 상태를 체크하면, PDF 리포트 생성 가능한것이 보입니다.
# openvas-check-setup
...
Step 9: Checking presence of optional tools ...
OK: pdflatex found.
OK: PDF generation successful. The PDF report format is likely
to work.
...
[출처] http://alfaiacomlinux.blogspot.com/2018/04/openvas-dont-download-pdf-files-in.html
'리눅스 > Security' 카테고리의 다른 글
간단한 iptables 기본 방화벽 형식 (특정 IP, PORT 제외하고 모두 차단) (0) | 2019.02.12 |
---|---|
CentOS 7 에 iptables 설치 (0) | 2019.02.12 |
패스워드 복잡성 설정 (0) | 2018.02.27 |
iptables 멀티 포트 사용하기 (0) | 2017.11.08 |
clamav 안티 바이러스, 악성코드 프로그램 설치 & 우분투 PC 적용 (0) | 2017.08.11 |