- 다운 로드 정보
http://buildlogs.centos.org/rolling/7/isos/x86_64/ http://buildlogs.centos.org/rolling/7/isos/x86_64/CentOS-7-x86_64-AtomicHost-Vagrant-VirtualBox.box - 다운받고 압축 풀기(7zip등으로)
- box.ovf 파일 실행
- virtualbox에서 확인
- hostonly nic추가 10.10.10.11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
type Duck interface { | |
Quak() string | |
} | |
type MyDuck struct { // create a type | |
name string |
NewerOlder