matrix

(★ 5)

Plug-and-play Matrix homeserver for Unraid: Synapse + coturn + Element Web + Synapse-Admin in one container. Federation out of the box, one-toggle registration, TURN calls, Prometheus metrics — hourly rebuilds track upstream Synapse, smoke-tested against real PostgreSQL before every :latest

matrix 최신버젼 다운로드

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

username

설명 보기 ▼

사용자를 관리.
설정 모드에서 사용.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/security/s1/sec-s1-xe-3se-3850-cr-book/sec-s1-xe-3se-3850-cr-book_chapter_0110.html>.

username {{admin}} privilege 15 secret {{password}}

관리자 계정 생성:

🔍

docker exec

설명 보기 ▼

This command is an alias of `docker container exec`.

tldr docker container exec

View documentation for the original command:

🔍

docker logs

설명 보기 ▼

This command is an alias of `docker container logs`.

tldr docker container logs

View documentation for the original command:

🔍

docker stop

설명 보기 ▼

This command is an alias of `docker container stop`.

tldr docker container stop

View documentation for the original command:

🔍

git checkout

설명 보기 ▼

Checkout a branch or paths to the working tree.

git checkout -b {{branch_name}}

Create and switch to a new branch:

git checkout -b {{branch_name}} {{reference}}

Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):

git checkout {{branch_name}}

Switch to an existing local branch:

🔍

http

설명 보기 ▼

HTTPie: 테스트, 디버깅 및 일반적으로 API 및 HTTP 서버와 상호작용하도록 설계된 HTTP 클라이언트.
관련 항목: `xh`.
더 많은 정보: <https://httpie.io/docs/cli/usage>.

http {{https://example.com}}

간단한 GET 요청을 수행 (응답 헤더 및 콘텐츠 표시):

http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}

특정 출력 내용을 인쇄 (`H`: 요청 헤더, `B`: 요청 본문, `h`: 응답 헤더, `b`: 응답 본문, `m`: 응답 메타데이터):

http {{GET|POST|HEAD|PUT|PATCH|DELETE|...}} --proxy {{http|https}}:{{http://localhost:8080|socks5://localhost:9050|...}} {{https://example.com}}

요청을 보낼 때 HTTP 메소드를 지정하고 프록시를 사용하여 요청을 가로채기:

🔍

https

설명 보기 ▼

이 명령은 `http`의 별칭입니다.

tldr http

자세한 내용은 원본 명령을 참고하세요:

🔍

psql

설명 보기 ▼

PostgreSQL 명령줄 클라이언트.
더 많은 정보: <https://www.postgresql.org/docs/current/app-psql.html>.

psql {{database}}

데이터베이스에 연결. 기본적으로, 현재 로그인한 사용자로 포트 5432를 사용하여 로컬 소켓에 연결:

psql {{[-h|--host]}} {{host}} {{[-p|--port]}} {{port}} {{[-U|--username]}} {{username}} {{database}}

주어진 서버 호스트에서 주어진 포트로 주어진 사용자 명으로 데이터베이스에 연결, 비밀번호 입력은 생략:

psql {{[-h|--host]}} {{host}} {{[-p|--port]}} {{port}} {{[-U|--username]}} {{username}} {{[-W|--password]}} {{database}}

데이터베이스에 연결; 사용자는 비밀번호를 입력해야 함:

🔍

bridge

설명 보기 ▼

네트워크 브릿지와 인터페이스를 조회 및 관리하는 도구.
더 많은 정보: <https://manned.org/bridge>.

bridge {{[l|link]}}

모든 브릿지와 인터페이스 목록 출력:

bridge {{[v|vlan]}}

포트 VLAN 정보 출력:

sudo bridge {{[v|vlan]}} {{[a|add]}} dev {{lanX}} vid {{vlan_id}} pvid {{tagged|untagged}}

VLAN 할당:

🔍

register_new_matrix_user

설명 보기 ▼

등록이 비활성화된 상태에서 홈 서버에 새 사용자 등록.
더 많은 정보: <https://manned.org/register_new_matrix_user>.

register_new_matrix_user --config {{path/to/homeserver.yaml}}

대화형으로 사용자 생성:

register_new_matrix_user --config {{path/to/homeserver.yaml}} --admin

대화형으로 관리자 사용자 생성:

register_new_matrix_user --config {{path/to/homeserver.yaml}} --user {{username}} --password {{password}} --admin

비대화형으로 관리자 사용자 생성(권장하지 않음):

🔍

mas

설명 보기 ▼

Mac App Store용 명령줄 인터페이스.
더 많은 정보: <https://github.com/mas-cli/mas>.

mas signin "{{[email protected]}}"

Mac App Store에 처음으로 로그인:

mas list

설치된 모든 애플리케이션과 그 제품 식별자 표시:

mas search "{{application}}" --price

애플리케이션 검색 및 결과와 함께 가격 표시:

// repository documentation