전체 글(56)
-
Day2
Day02 Virtualbox -> 네트워크 -> 네트워크 어댑터 사용하기 -> 다음에 연결됨 어댑터에 브리지로 변경 ## PowerShell에서.. # ipconfig ## wsl에서 # ifconfig -a inet 172.20.10.4 ## Ubuntu에서. # ifconfig -a # apt -y install net-tools # ifconfig -a enp0s3 : inet 172.20.10.6 ### install openssh-server # apt -y install openssh-server # systemctl status ssh # ufw allow ssh # nano /etc/ssh/sshd_config 33 PermitRootLogin yes ^x -> x -> y # servi..
2023.03.21 -
Day1
Day01 - ZOOM 회의 ID: 420 746 0104 암호: 2075 https://open.kakao.com/o/gYdVal8e - github : github desktop 프로그램 다운로드 후 설치 - docker hub docker desktop 프로그램 다운로드 후 설치 - postman : Postman 프로그램 다운로드 후 설치 - oracle : mysql workbench 다운로드 후 설치 https://dev.mysql.com/downloads/workbench/ - atom : atom editor 다운로드 후 설치 https://sourceforge.net/projects/atom.mirror/ ### Virtualbox Ubuntu - Virtualbox 다운로드 후 설치 :..
2023.03.21 -
Day-12
본인의 홈에 .plan 파일을 만들어놓음(휴가 갔는지 확인하려고) [root@centos /allnew/shells]# ./file.sh centos I will go to travel this weekend. [root@centos /allnew/shells]# cat >> ~centos/.plan destination is anywhere...hmhm ^C [root@centos /allnew/shells]# ./file.sh centos I will go to travel this weekend. destination is anywhere...hmhm [root@centos /allnew/shells]# vi dir.sh [root@centos /allnew/shells]# ./dir.sh /wor..
2023.03.21 -
Day11
Day-11 ## windows host…. 윈도우 터미널에서… > bash # vi .ssh/config # exit > ubuntu # cd /mnt/c/Users/username/ # vi .ssh/config # vi .ssh/config # Virtualbox CentOS Host centos HostName 192.168.1.134 User root # Virtualbox Ubuntu Host ubuntu HostName 192.168.1.12 User root # ssh centos ## centos… # rpm -qa | grep openjdk (rpm -qa : 설치된 쿼리(찾기) openjdk로 되어 있는 것 # yum -y remove java (java 지울것, yum = yello..
2023.03.21 -
복습 Day4
Day-04 절대경로는 무조건 / 부터 시작 # cat /etc/passwd > test1 # cat ~/.exrc ### github in ubuntu # cd /work # rm -rf * # git clone http://github.com/impelfin/allnew # cd allnew # ls # git config --global user.name # git config --global user.name "impelfin" # git config --global user.name # git config --global user.email impelfin@gmail.com # git config --global user.email # cp myenv myconfig # git init # gi..
2023.03.17 -
복습 Day3
Day-03 - 현재 위치 : /home/user / / ../../ home /home ../ boot /boot ../../boot lib /usr/lib ../../usr/lib ls /usr/bin/ls ../../usr/bin/ls # apt -y install ncal # cal 12 9999 # id # whoami # who am i ## linux file time (리눅스가 파일이 가지는 시간) ctime : create (생성시간) mtime : modify (수정시간) 수정한 시간이 바뀌는 것 atime : access (접근시간) Read Only 파일을 읽었을때 접근만 가 # touch test (테스트 파일 만듬) # ll (파일 확인하면 시간이 바뀌어 있음, mtime & a..
2023.03.16