Linux minbrowser 설치

Minbrowser 설치 firefox 를 사용했지만, min-browser 가 더 빠르게 작동 합니다. min-browser 에서 다운 받을수 있습니다. min-browser 설치 $ wget https://github.com/minbrowser/min/releases/download/v1.26.0/min-1.26.0-x86_64.rpm $ sudo yum install -y min-1.26.0-x86_64.rpm # 실행 $ min &

[ubuntu-2004] ubuntu-server-xfce4-vnc-install
[ubuntu-2004] ubuntu-server-xfce4-vnc-install

IP 설정 # vi /etc/netplan/00-installer-config.yaml network: version: 2 renderer: networkd ethernets: ens33: dhcp4: no addresses: - 192.168.0.22/24 gateway4: 192.168.0.2 nameservers: addresses: [8.8.8.8, 8.8.4.4] # netplan apply apt 저장소 변경 # vi /etc/apt/sources.list mirror.kakao.com/ubuntu :%s/kr.archive.ubuntu.com/mirror.kakao.com/g apt update / apt upgrade # apt update && apt upgrade # init 6 xfce4 , vnc-server 설치 # apt install... » read more

[lvm]  Logical volume vg00/vol01 is used by another device
[lvm] Logical volume vg00/vol01 is used by another device

사용하던 vcs 용 iscsi 볼륨을 삭제 할려고 하니 Logical volume vg00/vol01 is used by another device 메시지가 출력되며 삭제가 되지 않습니다. dmsetup remove 를 통해 lvremove 를 통해 삭제 할수 있었습니다. > lvm 삭제시 used by another device 메세지 출력 ``` [root@vcs-storage ~]# lvremove /dev/vg00/vol01 Logical volume vg00/vol01 is used by another device. [root@vcs-storage ~]#... » read more

[CentOS7] goaccess – web 로그분석
[CentOS7] goaccess – web 로그분석

goaccess  goaccess 를 이용하면 nginx , apache log 를 실시간으로 분석 할수 있습니다. web page 로 report 형식으로 볼수 있으며 cacti , nagios 만큼 설치가 어렵지 않습니다. https://goaccess.io/   의존성 패키지 설치 [root@centos76 ~]# yum -y install epel-release [root@centos76 ~]# yum -y install ncurses-devel gcc geoip-devel tokyocabinet-devel   goaccess 설치 [root@centos76 ~]# wget https://tar.goaccess.io/goaccess-1.3.tar.gz [root@centos76... » read more

[CentOS7] Logstalgia nginx or apache log 시각화
[CentOS7] Logstalgia nginx or apache log 시각화

Logstalgia 설치 Logstalgia 는 실시간으로 web server 의 트래픽을 확인할수 있는 유틸 입니다. https://github.com/acaudwell/Logstalgia/releases https://logstalgia.io/   Logstalgia 의존성 패키지 설치 [root@centos76 ~]# yum install -y glm-devel SDL2-devel SDL2_image-devel SDL-devel SDL_image-devel ftgl-devel pcre-devel libpng-devel libjpeg-devel gcc-c++ make gcc glew glew-devel boost boost-devel wget [root@centos76 ~]# wget https://github.com/acaudwell/Logstalgia/releases/download/logstalgia-1.1.2/logstalgia-1.1.2.tar.gz   Logstalgia 설치 [root@centos76 ~]# tar xvf logstalgia-1.1.2.tar.gz [root@centos76... » read more

[ubuntu] postfix-dovecot-roundcube

postfix dovecot roundcube 를 이용한 mail server 구축 내용 입니다. LAMP Stack 설치는 아래 링크를 참고해 주세요. NAVER,GOOGLE 등으로  메일을 발송 하기 위해서는 SPF 설정이 필요 합니다. http://dev.crois.net/2019/10/03/ubuntu-lamp-stack-%ec%84%a4%ec%b9%98/   사전작업 root@mail:~# apt upgrade -y root@mail:~# vi /etc/hosts 192.168.0.20 mail.test.com root@mail:~# init 6   LAMP Stack 설치는 생략합니다. hostname 변경 root@mail:~# vi /etc/cloud/cloud.cfg preserve_hostname: true root@mail:~# hostnamectl set-hostname... » read more

[ubuntu] 18.04 A stop job is running for Snappy daemon
[ubuntu] 18.04 A stop job is running for Snappy daemon

ubuntu 18.04 버젼에서 리부팅시Snappy 데몬 딜레이  메시지 출력후 약 1분 30초 동안 리부팅이 지연됩니다. A stop job is running for Snappy daemon   해결방법 /etc/default/grub 라인을 편집 합니다. update-grub 로 변경된 사항을 적용 합니다. 리부팅시 동일한 현상이 발생하는지 확인 합니다. root@mail:~# vi /etc/default/grub ~중략 GRUB_CMDLINE_LINUX_DEFAULT="maybe-ubiquity" <--- 라인을 아래와 같이 편집 합니다. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash noresume" <---... » read more

[ubuntu] LAMP Stack 설치
[ubuntu] LAMP Stack 설치

ubuntu 18.04 LAMP Stack 설치   저장소 변경 및 시스템 업데이트 편의상 sudo -i 를 사용 합니다. root@test:~# vi /etc/apt/sources.list :%s/archive.ubuntu.com/mirror.kakao.com/g root@test:~# apt update && apt upgrade root@test:~# init 6   apache 설치 root@test:~# apt install -y apache2 apache2-utils root@test:~# systemctl status apache2 ● apache2.service - The Apache HTTP Server Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor... » read more

[CentOS7] mkdocs quick install
[CentOS7] mkdocs quick install

mkdocs quick install python-pip 를 설치하기 위해서는 epel-release 패키지 설치가 필요 합니다.   mkdocs 사용법 http://dev.crois.net/2018/09/09/ubuntu-mkdocs-%ec%84%a4%ec%b9%98/   python-pip 설치 및 mkdocs 설치 python2.x 에서는 mkdocs 가 설치 되지 않습니다. [root@mkdocs ~]# yum install -y epel-release [root@mkdocs ~]# yum install -y python3 [root@mkdocs ~]# pip3 install --upgrade pip [root@mkdocs ~]# pip3 install mkdocs [root@mkdocs ~]# mkdocs... » read more