본문 바로가기

전체 글400

[other] rails로 새로운 프로젝트 생성하기 rails new friends 명령어를 입력해서 프로젝트 생성 2024. 10. 7.
[other] rubyinstaller.org https://rubyinstaller.org/downloads/ DownloadsWhich version to download? If you don’t know what version to install and you’re getting started with Ruby, we recommend that you use the Ruby+Devkit 3.3.X (x64) installer. It provides the biggest number of compatible gems and installs the MSYS2 Devkitrubyinstaller.org 2024. 10. 7.
[other] railsinstaller로 설치하기 https://railsinstaller.org/ Install Ruby on Rails – Railsinstaller.org -Hi everyone, in an effort to retain the information of railsinstaller.org we have decided to merge it with hotframeworks.com, this resource will always be live for everyone who needs it. Thanks to the team at Hot Frame Works for all their help. Whether yohotframeworks.com 2024. 10. 7.
[other] npm 으로 yarn 설치하기 cmd를 관리자 권한으로 실행    npm install --global yarn 을입력해 주면은 된다. 2024. 10. 7.
[github] 로컬 리포지터리를 github에 푸쉬하기 https://docs.github.com/en/migrations/importing-source-code/using-the-command-line-to-import-source-code/adding-locally-hosted-code-to-github Adding locally hosted code to GitHub - GitHub DocsIf your code is stored locally on your computer and is tracked by Git or not tracked by any version control system (VCS), you can import the code to GitHub using GitHub CLI or Git commands.docs.github.com 2024. 10. 7.
[other] ruby, rails 설치하기 https://rubyinstaller.org/ RubyInstaller for WindowsIs RubyInstaller for you? RubyInstaller is the easiest and most widely-used Ruby environment on Windows. And Ruby is a great language for beginners as well as professionals. It’s suitable for small scripts as well as large applications. RubyInstaller comrubyinstaller.org위의 링크에서 ruby 다운로드  파일을 실행해서 설치  finish를 누르면 위와 같은 터미널이 열리고,원하는 옵션을 선택  위와 같.. 2024. 10. 6.
[other] linux에 go 설치하기 터미널에서 위의 명령어를 입력하면은 에러가 발생   "--classic" 옵션을 추가해서 입력하여 설치   go의 버전이 정상적으로 확인이 된다.   go 명령어가 정상적으로 실행된다. 2024. 10. 3.
[network] 스위치 가상 인터페이스와 vlan간의 관계 Layer 3 Switch에 vlan 10 가상 인터페이스를 생성하였다.  하지만 아직 vlan 10이 스위치에 존재하지 않으므로state나 protocol이 up이 되지 않는다.     vlan 10을 생성하면은 state가 up 상태로 변경된다.     int g0/1 인터페이스를 access mode로 설정하고, vlan 10을 사용하도록 설정    int vlan의 상태가 up으로 변경이 되었다.    int g0/1가 vlan 10을 사용하지 않도록 설정     switchport mode trunk 명령어를 입력하니 에러 발생   dot1q로 캡슐화 하라는 명령어를 입력해준다.    int vlan 10의 state와 protocol이 up 상태로 변경    sh int tr  명령어를 입력하.. 2024. 9. 3.
[docker] local 컴퓨터 비보안 레지스트리 등록하기 설정의 Docker Engine 탭에서  1. "insecure-registries":["registry.local:5000"]을 추가2. Apply & restart 클릭   docker info 명령어로  registry.local:5001이 정상적으로 등록된것을 확인할수 있다.  local registry로 이미지 푸쉬 성공  ps. /etc/hosts의 맨 아래에 위와 같이127.0.0.1 registry.local 을 추가해 주어서도메인 명으로 사용할수 있도록 하였다. 2024. 8. 31.