kerio-updates-mirror-flask

(★ 28)

Local update mirror for Kerio Control and Kerio Connect products

파일 탐색기

  • .env
  • .gitattributes
  • .gitignore
  • docker-compose.yml
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

docker compose up

설명 보기 ▼

Start and run Docker services defined in a Compose file.

docker compose up

Start all services defined in the docker-compose file:

docker compose up {{[-d|--detach]}}

Start services in the background (detached mode):

docker compose up --build

Start services and rebuild images before starting:

🔍

docker load

설명 보기 ▼

This command is an alias of `docker image load`.

tldr docker image load

View documentation for the original command:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

nano

설명 보기 ▼

명령줄 텍스트 편집기. 향상된 `Pico` 클론.
관련 항목: `pico`, `rnano`.
더 많은 정보: <https://nano-editor.org/dist/latest/nano.html>.

nano {{path/to/file1 path/to/file2 ...}}

편집기 시작:

nano {{[-I|--ignorercfiles]}}

설정 파일을 사용하지 않고 편집기 시작:

nano +{{line}},{{column}} {{path/to/file}}

특정 파일 열기, 이전 파일을 닫으면 다음 파일로 이동:

🔍

passwd

설명 보기 ▼

사용자의 비밀번호 변경.
관련 항목: `chpasswd`.
더 많은 정보: <https://manned.org/passwd>.

passwd

현재 사용자의 비밀번호를 대화식으로 변경:

sudo passwd {{username}}

특정 사용자의 비밀번호 변경:

passwd {{[-S|--status]}}

사용자의 현재 상태 확인:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

python

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

python {{path/to/file.py}}

특정 Python 파일 실행:

python -i {{path/to/file.py}}

특정 Python 파일 실행 후 REPL 시작:

🔍

dpkg-reconfigure

설명 보기 ▼

이미 설치된 패키지를 재구성합니다.
더 많은 정보: <https://manned.org/dpkg-reconfigure>.

dpkg-reconfigure {{package1 package2 ...}}

하나 이상의 패키지를 재구성:

dpkg-reconfigure console-setup

Reconfigure console font setup:

dpkg-reconfigure tzdata

Reconfigure the timezone:

🔍

net

설명 보기 ▼

네트워크 관련 설정을 보고 수정하는 시스템 유틸리티입니다.
더 많은 정보: <https://learn.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/gg651155(v=ws.11)>.

net {{start|stop}} {{service}}

동기적으로 Windows 서비스 시작 또는 중지:

net use {{\\smb_shared_folder}} /USER:{{username}}

현재 콘솔에서 SMB 공유 가능한지 확인:

net share

현재 SMB로 공유되는 폴더 표시:

// repository documentation