해당 메시지는 root 권한이 없는 경우에 발생하는 메시지이며

sudo 명령어 발생 시 해결 방안

1. 루트 접근 및 아래 파일 실행

$vim /etc/sudoers



2. sudoers 파일은 계정에 root 권한을 설정 할 수 있는 파일

아래와 같은 내용이 있음 밑에다 권한을 부여할 계정 추가


root ALL=(ALL:ALL) ALL

--추가--

"부여할계정" ALL=(ALL:ALL) ALL


끝 부여된 계정은 sudo 권한 사용 가능



블로그 이미지

_B_G_

,

설정 파일

우분투 18.04 데스크톱 버전에서의 /etc/netplan 파일을 가시면 아래와 같이 네트워크 기본 내용이

작성되어 있습니다.

 

IP 고정을 하기 위해선 아래와 같이 수정을 하여야 합니다.

1. vim /etc/netplan

2. netplan 고정 IP 적용

network:
  version: 2
  renderer: networkd
  ethernets:
    enp6s0: // 네트워크 인터페이스 이름 입니다.
      addresses:
        - 192.168.1.100/24 // 고정 IP 시킬 아이피 및 서브넷마스크 
      gateway4: 192.168.1.1
      nameservers:
          addresses: [168.126.63.1,8.8.8.8]

3. 적용

network:
$ sudo netplan apply // 적용
블로그 이미지

_B_G_

,

https://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_%EB%B0%98%EB%B3%B5_%EC%98%88%EC%95%BD%EC%9E%91%EC%97%85_cron,_crond,_crontab


위 링크로 크론탭 등록시 시간 설정

 

에디터가 vim으로 바꾸고 싶을 경우

rm -f ~/.selected_editor // 홈 디렉터리에서 삭제후

 

crontab -e 하면 에디터 고르는거 나옴 /???/vim_basic 고르면 됨

 

================================


 

* * * * * sh /home/www/aa.sh


crontab -e // 크론탭 등록


crontab -l //크론탭 등록된 리스트 출력


crontab -r //등록된 리스트 지우기



블로그 이미지

_B_G_

,

OpenJDK 8 버전 Download 

sudo apt-get update 

sudo apt-get install openjdk-8-jdk


JDK 1,2,3,4 select

sudo update-alternatives --config java


블로그 이미지

_B_G_

,

1. 패키지 업데이트

etc/apt/source.list - 패키지 들어있는 소스

source.list -> https://gist.github.com/h0bbel/4b28ede18d65c3527b11b12fa36aa8d1 

:%s/kr.archive.ubuntu.com/ftp.daumkakao.com

 

2. ubuntu tui - 데스크탑 설치

 -  1. sudo apt install tasksel - 우분투 gui 환경설정 창

 -  2. sudo apt install lubuntu-desktop - 우분투 gui 설치

       (2번 방법으로 설치 다하고 재부팅하면 루분투 설치 완료)

       (3번 방법은 tasksel GUI로 체크 해서 설치하는 방식 2번 완료하면 할 필요 없음)

-   3. $ tasksel - 실행 lubuntu-desktop 체크 확인 -> 재부팅


 

3. 레이드 마운트

3.1 sudo parted /dev/sdb - 디스크 선택

3.2 mklabel gpt - 2테라 이상 - gpt

                       2테라 미만 - fdisk

3.3 mkdir - 마운트 시킬 폴더 생성

3.4 blkid - 생성 되었는지 확인

3.5 sudo mkfs.exe4 /dev/sdb1 - 만든 파티션 포맷

블로그 이미지

_B_G_

,


업데이트 서버는 기본적으로


Kr.archive.ubuntu.com 으로 되어있으나


그대로 사용 할 경우 서버 통신이 안되는 경우가 있음 그래서


다른 주소로 업데이트 받을것.


주소 변경 파일


sudo vi /etc/apt/sources.list


":"를 눌러서 명령어 입력모드 


:%s/현재있는문자열/바꾸고싶은문자열

:%s/kr.archive.ubuntu.com/ftp.daumkakao.com


하면 끝.

 

 

--------------------------18.04 서버 sources.list 내용-----------------------------

 

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ bionic universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic universe
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ bionic multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic multiverse
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb http://us.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu bionic partner
# deb-src http://archive.canonical.com/ubuntu bionic partner

deb http://security.ubuntu.com/ubuntu bionic-security main restricted
# deb-src http://security.ubuntu.com/ubuntu bionic-security main restricted
deb http://security.ubuntu.com/ubuntu bionic-security universe
# deb-src http://security.ubuntu.com/ubuntu bionic-security universe
deb http://security.ubuntu.com/ubuntu bionic-security multiverse
# deb-src http://security.ubuntu.com/ubuntu bionic-security multiverse

 

블로그 이미지

_B_G_

,

공유기 : 포트 포워딩

 

해당 포트로 접속 하였을시 VM으로 IP를 나누어준 로컬 IP로 포워딩

 

포트 범위 8000으로 현재 외부 IP로 접근 하였을시 VM IP인 192.168.25.6 으로 포워딩

 

블로그 이미지

_B_G_

,


수리카타 폴더 경로 : 

/etc/suricata



chmod -R [777::권한] [디렉토리이름]




블로그 이미지

_B_G_

,