Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

560 total results found

Soft Phone

Asterisk

Open Source/Freeware Zoiper - Branding for your business, Freeware, Support mobile and desktop (Linux/Windows/macOS) Linphone - Open Source, Support mobile and desktop (Linux/Windows/macOS) MicroSIP - Open Source, based on PJSIP for Windows OS PhonerLite...

Tips

Python

編碼 UTF-8 宣告 #!/usr/bin/python # -*- coding: utf-8 -*- Find all installed modules help("modules"); 目前環境的模組安裝路徑 import powerline powerline.__path__ # Return ['/home/alang/.local/lib/python3.10/site-packages/powerline'] Print print( ... , end=" ") 輸...

Online Tools

未分類

Password Password Generator: https://passwrd.in  Modemly : Find the default password of the routers Linux VPS Benchmark yabs.sh curl -sL https://yabs.sh | bashwget -qO- yabs.sh | bash bench.sh wget -qO- bench.sh | bashcurl -Lso- bench.sh | bash ...

Build deb package

Linux Administration Ubuntu and Debian

Tutorials Create a deb package How to create a .deb file (tutorial) 如何製作「deb檔(Debian Package)」 How to Create DEB Packages for Debian/Ubuntu How to Create a Simple Debian Package How to Create a Simple (.deb) Debian Package On Building a Debian Package...

FAQ

Git

[GitHub] 無法 git push 錯誤訊息 remote: Support for password authentication was removed on August 13, 2021.remote: Please see https://docs.github.com/en/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls for information on cur...

Ubuntu Pro

Linux Administration Ubuntu and Debian

Ubuntu Pro is a set of features that you can enable for your Ubuntu system. Here is a list of what Ubuntu Pro includes: Security patches for common vulnerabilities and exposures (CVEs) Security guarantee for 23,000 packages in Ubuntu’s repos 10 years of e...

FAQ

Linux Administration SAN & iSCSI

如何確認 /dev/sda 是 Local Disk 還是 SAN DIsk Solution: #> lsscsi [2:0:0:0] cd/dvd hp DVD-ROM DTA0N WBD0 /dev/sr0 state=running queue_depth=1 scsi_level=6 type=5 device_blocked=0 timeout=0 [3:0:0:0] tape IBM ULT3580-HH5 D2AD /dev...

進階應用

Docker

存取 Container 網路 有個 Container 服務只需要與同個 Docker Network 的其他 Container 做通訊,平常不需要對外開放通訊埠,只有在開發或 Debug 時才需要從外部存取這個 Container 的網路,但又不想每次都要重啟 container 來開啟關閉需要的 port。 使用一個 socat 的 forwarder container,將外部 port 導入內部目的 container 的 port。 # 以 Nginx Web 為例 $ docker ru...

Linux 上的開發

dotnet

Create new project dotnet new console --output my-app dotnet run --project my-app Add Package from NuGet # The internet is required cd /path/to/your/project dotnet add package MySql.Data # Without the internet # Download the package from https://www....

NuGet

dotnet

裝載您自己的 NuGet 摘要概觀 | Microsoft Learn NuGet Server NuGet Server Running a NuGet Server on Docker | dotnetthoughts Porting NuGet Package .NET Core NuGet Package Offline Restore(離線還原) .NET Core NuGet Package Offline Restore(離線還原) - 續 NuGet Expor...

Functions

Python

參數類型定義範例 def _gpt_parse_images( image_infos: List[Tuple[str, List[str]]], prompt_dict: Optional[Dict] = None, output_dir: str = './', api_key: Optional[str] = None, base_url: Optional[str] = None, model: s...

Sample Codes

dotnet

MySQL Test using System; using System.Data; using MySql.Data.MySqlClient; namespace MySQL_test { class Program { static void Main(string[] args) { string connstring = @"server=example.com;userid=example_user;pass...

Linux Distros for Running Container

Docker

5 Best Lightweight Linux Distros for Running Containers (tecmint.com) Photon OS https://vmware.github.io/photon/docs/ Downloading Photon OS · vmware/photon Wiki · GitHub Default account credentials: username: root password: changeme Run Dock...

進階應用

Linux Administration LVM

VG Import/Export 用途:將 VG 的磁碟遷移至不同的主機上。 大致方法是在遷移磁碟前,先將 VG 做 Exort;遷移後做 VG Import。 How To Move LVM Volume Group To Another Machine In Linux 移除 PV Disk 從一個現有 LV 中移除正在使用的一個 PV Disk (/dev/sdb1) NOTE: 這個 LV 的所屬 VG 必須要有足夠的可用空間 https://access.redhat.com/sit...

OpenSIPS

Asterisk

Installation on Debian 10 OpenSIPS v3 with GUI on Debian v10 MariaDB Apache install guide Quick Start to OpenSIPS Training 3.2 OpenSIPS 3.3 apt install gnupg2 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 049AD65B # For Debian 10 echo "...

Learning Proxmox

Virtualization Proxmox VE

Proxmox VE(英語:Proxmox Virtual Environment,通常簡稱為PVE、Proxmox),是一個開源的伺服器虛擬化環境Linux發行版。 Getting started Getting Started With Proxmox Backup Server - OSTechNix Proxmox Docker Containers Monster - 13000 containers on a single host - Virtualization Howto Gettin...

XCP-ng

Virtualization

Based on XenServer, XCP-ng is the result of massive cooperation between individuals and companies, to deliver a product without limits. No restrictions on features and every bit available on GitHub! Tutorials How To Install Xen Orchestra Appliance (XOA) In...

Git 進階使用

Git

使用 rev-parse # Getting the top-level directory git rev-parse --show-toplevel # Find your way home git rev-parse --show-cdup ## Current location # 判斷是否在專案目錄 <git-repo>/.git 底下 git rev-parse --is-inside-git-dir # 判斷是否在專案目錄 <git-repo> 底下 (不包含 .git 目錄...