목록분류 전체보기 (24)
기록저장 블로그
우선 Git 설치가 필요합니다. https://git-scm.com/ 파일 -> 기본설정 -> 설정 탭에서 다음과 같이 수정 { // 터미널이 Windows에서 사용하는 셸의 경로입니다. Windows와 함께 제공되는 셸을 사용하는 경우(cmd, PowerShell 또는 Ubuntu의 Bash) "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe" } 그다음 Ctrl + + 로 Bash 커맨드 추가
DockerToolBox를 cmd 쉘로 사용할려면 다음 명령어를 입력해야 cmd에서 작업이 가능하다. docker-machine env --shell cmd default
도커 자동 설치 스크리트 실행 $ curl -fsSL https://get.docker.com/ | sudo sh $ service docker start $ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 오류없이 잘 뜨면 설치가 잘된것이다. 도커 홈 디렉터리 변경하기 일반적으로 도커를 설치하면 /var/lib/docker 폴더에 설치되게 된다. 도커를 쓰다보면 시스템 폴더가 꽉차서 따른 패키지까지 오류가 발생하게되니 용량이 많은 /home 폴더로 변경 해보는 방법을 알아보자. $ nano /usr/lib/systemd/system/docker.service ExecStart=/usr/bin/dockerd -g /home/docker E..
우선 NFS 필수 패키지를 설치한다. $ yum install rpcbind nfs-utils nfs-utils-lib NFS 마운트 명령어 $ 192.168.1.7:/volume1/data /home (예) 서버아이피 리모트폴더 로컬폴더 리부팅 후에도 자동 마운트 하기 $ nano /etc/fstab # # /etc/fstab # Created by anaconda on Tue Apr 3 23:02:21 2018 # # Accessible filesystems, by reference, are maintained under '/dev/disk' # See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info # #nfs 자동 마운트..
CentOS & Fedora $ yum install zsh oh my zsh 설치하기 (curl 명령어로 설치하기) $ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" __ __ ____ / /_ ____ ___ __ __ ____ _____/ /_ / __ \/ __ \ / __ `__ \/ / / / /_ / / ___/ __ \ / /_/ / / / / / / / / / / /_/ / / /_(__ ) / / / \____/_/ /_/ /_/ /_/ /_/\__, / /___/____/_/ /_/ /____/ ....is now installed! Please look over th..
오류내용 $ docker ps error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.26/containers/json: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows, the docker client must be run elevated to connect. This error may also indicate that the docker daemon is not running 해결방법 $ docker-machine env default | Invoke-Expression
SSHFS 마운트$ sshfs [user@]host:[dir] mountpoint [options] SSHFS 언마운트$ fusermount -u local_mount_point SSHFS 옵션FUSE options: -d -o debug enable debug output (implies -f) -f foreground operation -s disable multi-threaded operation -o allow_other allow access to other users -o allow_root allow access to root -o nonempty allow mounts over non-empty file/dir -o default_permissions enable permission che..
우선 엑티비티 값 넘겨서 테스트 하기위해 2개의 엑티비티를 생성해준다. MainActivity.java ViewActivity.java 뷰 파일도 같이... activity_main.xml activity_view.xml (이렇게 엑티비티를 생성하면 쉽게 엑티비티 구성이 가능하다. (패키지 쪽은 엑티비티가 생성될 패키지 경로를 입력해주면된다.)) 생성이 되면 activity_view 에다가 인텐트에서 가져온 값을 출력하기 위한 텍스트뷰를 추가해준다. (텍스트뷰 아이디는 tx_view 으로 설정) 이제 다시 MainActivity.java 로 돌아와 코드작성 public class MainActivity extends AppCompatActivity { Intent intent; String msg = n..
Presenter MainPresenter.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 publicclassMainPresenter { //보여주는곳 publicinterfacview { voidButtonClick(); //버튼 클릭시 } //기능작동 interfacepresenter { StringshowMsg(); //토스트 메세지 보여주기 StringsetMsg(); //토스트 메세지 내용 설정 } } cs ButtonService.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 public class ButtonService implements MainPresenter.presenter { privateButtonC..
스프링에서 거의 사용자가 입력받은 부분들은 Controller 에서 작동한다.따라서, 컨트롤러에서 맵핑한 주소로 접속하면 메소드에서 선언한 작업이 작동이된다. 지금부터 컨트롤러 주소 맵핑하는법을 알아보겠습니다. 다음 코드는 스프링 프로젝트 처음 생성시 기본으로 생성되는 컨트롤러 소스이다. @Controller public class HomeController { private static final Logger logger = LoggerFactory.getLogger(HomeController.class); /** * Simply selects the home view to render by returning its name. */ @RequestMapping(value = "/", method = R..