목록Linux/Sever Mangement (15)
+1-1+1-1+1-1+1-1...
보호되어 있는 글입니다.
이틀 삽질 해서 만든 Vagrantfile Script... 1. vagrant up 실행시 "ERROR umount: /mnt: not mounted" 발생기존에 설치 되있는 vagrant-vbguest 플러그인을 지우고 0.21 버전 설치 후 해결됨 Vagrant No VirtualBox Guest Additions installation found [Fixed] - DevopsRoles.comVagrant No VirtualBox Guest Additions installation found [Fixed] - DevopsRoles.com#Introduction In this tutorial, How to fix error Vagrant No VirtualBox Guest Additions insta..
Ansible을 이용하면 Ansible Master 서버에서 ad-hoc 명령을 통해 원격으로 기초적인 작업을 수행할 수 있음 기본적인 명령 옵션 -m 모듈 지정 -a 모듈에 제공하는 command를 argument 형태로 지정함 -i 인벤토리 지정 (미지정시 Ansible.cfg에 설정된 Default 경로에서 찾아 씀) -k SSH 암호입력 옵션 (미리 SSH-KEY 값을 공유하는 서버간에는 쓸 필요 없음) -b sudo 명령으로 실행해야 할 경우 지정 관련 ansible 지원 ad-hoc 명령은 아래 사이트에서 찾아 쓰면 된다. Introduction to ad-hoc commands — Ansible Documentation Introduction to ad-hoc commands — Ansibl..
1. Ansible 설치 [root@test-mgmt01 ~]# yum list installed | grep ansible [root@test-mgmt01 ~]# yum install epel-release -y Loaded plugins: product-id, search-disabled-repos, subscription-manager This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register. Resolving Dependencies --> Running transaction check ---> Package epel-release.noarch 0:7-11 w..
1. named.conf 수정 [root@testlab ~]# vim /etc/named.conf .... options { // modify : 127.0.0.1 -> any listen-on port 53 { any; }; // modify : ::1->none listen-on-v6 port 53 { none; }; directory "/var/named"; dump-file "/var/named/data/cache_dump.db"; statistics-file "/var/named/data/named_stats.txt"; memstatistics-file "/var/named/data/named_mem_stats.txt"; recursing-file "/var/named/data/named.rec..
ls | grep '.jpg' | cut -d . -f 1 | while read line; do mv $line.jpg $line.png; done 출처: https://sosal.kr/909
리눅스 awk 명령어 사용법. (Linux awk command) - 리눅스 파일 텍스트 데이터 검사, 조작, 출력. :: 개발자를 위한 레시피 (tistory.com) 리눅스 awk 명령어 사용법. (Linux awk command) - 리눅스 파일 텍스트 데이터 검사, 조작, 출력. 1. awk 명령어. 대부분의 리눅스 명령들이, 그 명령의 이름만으로 대략적인 기능이 예상되는 것과 다르게, awk 명령은 이름에 그 기능을 의미하는 단어나 약어가 포함되어 있지 않습니다. awk는 최 recipes4dev.tistory.com