전체 글
-
도커 -실행카테고리 없음 2018. 8. 29. 16:27
출처 https://www.slideshare.net/pyrasis/docker-fordummies-44424016우분투 운영체제- 도커 run 명령# docker run -i -t --name hello ubuntu /bin/bash -----도커 생성 만들기 -> Dockerfilehttps://github.com/pyrasis/dockerbook/blob/master/Chapter04/Dockerfile 도커 build 명령으로생성 #docker build --tag hello:0.1 생성된 이미지 확인docker images
-
ad join script카테고리 없음 2018. 8. 2. 18:27
도메인 조인만 가능 win7에서는 파워쉘 최신꺼 설치해야되는거 같다.수동으로 하는게 났겠다.$domain = "도메인명"$password = "암호" | ConvertTo-SecureString -asPlainText -Force$username = "$도메인명\계정" $credential = New-Object System.Management.Automation.PSCredential($username,$password)Add-Computer -DomainName $domain -Credential $credential
-
sed카테고리 없음 2018. 7. 11. 16:36
test.c 에 다음과 같은 내용이 있다고 합시다. : #include "before/header.h" : 이걸 다음과 같이 바꾸어 놓고 싶은 거죠 : #include "a.h" : 이때 sed 명령은 다음과 같은 내용으로 쓰면 됩니다. sed -i 's/바꿀대상/바꿀내용/g' 파일명 그런데 문자열에 " , / , # 등이 있죠 이런 문자들은 앞에 \을 붙이면 됩니다. 자 그러면 다음과 같은 명령을 치면 됩니다. # sed -i 's/\#include \"before\/header.h\"/\#include \"a.h\"/g' test.c 쉽죠? 이젠 이거 복사해 써야 하죠 ㅋㅋ # 출처 http://forum.falinux.com/zbxe/index.php?document_srl=535694&mid=le..
-
-