일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- terraform
- Docker
- ceph-ansible
- Ansible
- k8s
- libvirt
- HTML
- nfs-provisioner
- yum
- Kubeflow
- Linux
- cephadm
- KVM
- archlinux
- pacman
- Octavia
- kolla
- grafana-loki
- ubuntu
- awx
- kolla-ansible
- repository
- i3
- golang
- Kubernetes
- cloud-init
- ceph
- Arch
- OpenStack
- port open
- Today
- Total
목록Linux (4)
YJWANG
Golang으로 TCP 포트 오픈 체크하는 프로그램에 대해 포스팅 하겠습니다. 아래와 같이 코딩한 이후 package main import ( "fmt" "net" "time" ) func main() { host := "localhost" port := "8888" address := net.JoinHostPort(host, port) conn, err := net.DialTimeout("tcp", address, 3*time.Second) if err != nil { fmt.Println(err) } else if conn != nil { defer conn.Close() fmt.Printf("%s:%s is opened \n", host, port) } } 오픈된 포트를 스캔했을 때, 오픈되지 않을..
출처 : vim.fandom.com/wiki/Ranges A range can be specified using line numbers or special characters, as in these examples: RangeDescriptionExample 21 line 21 :21s/old/new/g 1 first line :1s/old/new/g $ last line :$s/old/new/g . current line :.w single.txt % all lines (same as 1,$) :%s/old/new/g 21,25 lines 21 to 25 inclusive :21,25s/old/new/g 21,$ lines 21 to end :21,$s/old/new/g .,$ current line ..
brasero 등의 프로그램을 이용하는 방법도 있지만, 체크섬 생성 및 추가 검토 과정이 없어 아래 방법이 훨씬 빠르다. OS이미지는 설치 시 체크섬 체크를 진행할 수 있으므로 아래 방법을 많이 사용하곤한다. # cdrecord -v -sao dev=/dev/sr0 isoimage.iso usb로 굽기 # dd bs=4M if=path/to/archlinux-version-x86_64.iso of=/dev/sdx conv=fsync oflag=direct status=progress
cat /etc/sudoers test 계정이 root 계정을 통해 httpd 서비스 start 가능 test ALL=(root) /usr/bin/systemctl start httpd test 그룹이 root 계정을 통해 모든 서비스 start 가능 %test ALL=(root) /usr/bin/systemctl start * test 계정이 root 계정을 통해 httpd 서비스 start, vsftpd 서비스 stop 가능 test ALL=(root) /usr/bin/systemctl start httpd, /usr/bin/systemctl stop vsftpd test 그룹이 root 계정을 통해 모든 서비스 start, 모든 서비스 stop 가능 %test ALL=(root) /usr/bin/s..