728x90

linux서버의 Ubuntu는 zip프로그램이 설치되어 있지 않습니다.
압축파일 해제를 위한 unzip 을 설치해보겠습니다.

설치 여부 확인

$ unzip

zsh: command not found: unzip

설치

# 설치
sudo apt install unzip

# 버전 확인
$ unzip -v

UnZip 6.00 of 20 April 2009, by Debian. Original by Info-ZIP.
...(생략)
728x90
반응형
728x90

screenfetch로 Linux 시스템 정보들을 확인 할 수 있습니다.

screenfetch 표시 기능

  • the name of your distro
  • Linux kernel version
  • uptime
  • the number of installed packages on your system
  • shell name and version
  • screen resolution
  • the name and version of your desktop environment
  • window manager
  • theme, font
  • CPU, GPU and RAM info

사용하는 터미널을 열고 아래 Command를 실행합니다.

sudo apt install screenfetch

💡 사용환경은 Win10의 우분투를 설치한 환경입니다.
Win10 Linux 설치하는 방법

bash profile 오픈하고, vi ~/.bashrc profile 상단에 screenfetch을 입력합니다.

source ~/.bashrc 로 profile을 새로고침 합니다.

터미널 시작 시 Linux 정보를 확인할 수 있습니다.

Reference

728x90
반응형
728x90

PIP란

위키백과
pip는 파이썬(python)으로 작성된 패키지 소프트웨어를 설치 · 관리하는 패키지 관리 시스템입니다. Python Package Index (PyPI)에서 많은 파이썬 패키지를 볼 수 있습니다.

1. python 3용 pip 버전을 설치합니다.

sudo apt install python3-pip

2. 설치된 버전을 확인 합니다.

pip --version
728x90
반응형
728x90

잘 사용하지 않아 까먹기 쉬운 우분투(Linux) 버전 명령어를 정리합니다.

방법 1.

cat /etc/issue

# Result
Ubuntu 20.04.2 LTS \n \l

방법 2

lsb_release -a

# Result
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 20.04.2 LTS
Release:        20.04
Codename:       focal
728x90
반응형

+ Recent posts