SMALL

분류 전체보기 645

Linux Go Install / 리눅스 Go 설치

1. Go 언어 파일 주소 복사 아래의 링크를 이용하여 다운로드 사이트에 접속하여 원하는 버전의 Go언어를 확인 후 링크 주소를 복사합니다. Go 다운로드 링크 2. wget 다운로드 터미널에서 wget을 이용하여 Go 언어 파일을 다운로드합니다. # wget https://go.dev/dl/go1.17.6.linux-amd64.tar.gz 3. 압축 풀기 압축을 해제하면 바로 사용할 수 있습니다. 따로 컴파일 설치 과정은 필요 없습니다. # tar -zxvf [go filename].tar.gz # ls go [go filename].tar.gz 4. 환경 변수 설정 아래와 같이 bin경로로 접근하여 실행할 수도 있지만 편의를 위해 어느 곳에서나 명령어를 이용해 실행할 수 있도록 환경 변수를 설정합니다..

Study/Dev/Library 2022.02.01

Tips To Better Mobile Optimized Websites / 더 나은 모바일 최적화 웹 사이트를 위한 팁

More and more people get online through their smartphone and tablet these days. So, it is important that we as designers and developers address how our websites are displayed on these devices. In this post we will see several components that you need to include to make your website optimized and accessible on mobile devices. (Source: hongkiat) 1. Meta Viewport Tag The meta viewport is an HTML ta..

Study/개발 Tip 2022.01.30

[Linux] Sublime Text Settings... / Sublime Text 세팅 해보기.

1. GUI로 설치(Ubuntu Software) Ubuntu Software에서 Sublime Text로 검색하면 프로그램을 설치할 수 있습니다. 프로그램에서 Sublime Text을 찾아 실행시킬 수 있습니다. 2. 명령어로 설치(snap) $ sudo apt install snapd snapd-xdg-open $ snap install sublime-text --classic 3. 명령어로 설치(apt) $ wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - $ sudo apt-get install apt-transport-https $ echo "deb https://download.sublimetex..

Study/개발 Tool 2022.01.29

[Linux] 리눅스 터미널로 파일/디렉토리 복사하기 / CP 사용법

cp cp의 뜻은 copy의 줄임말로 파일이나 디렉토리를 복사할 때 사용하는 명령어입니다. cp [옵션][복사 할 디렉토리/파일][복사 될 디렉토리/파일] 현재 디렉토리에 있는 test.txt 파일을 new_test.txt라는 이름으로 현 위치에 복사 ex) cp test.txt new_test.txt /user/jtaewu 경로의 test.txt 파일을 new_test.txt라는 이름으로 현재 위치에 복사 ex) cp /user/jtaewu/test.txt new_test.txt /user/jtaewu 경로의 test.txt 파일을 new_test.txt라는 이름으로 /user/guest에 복사 ex) cp /user/jtaewu/test.txt /user/guest/new_test.txt cp 명령어..

Study/Linux 2022.01.29
반응형