The following column linux system tutorial will introduce and summarize the Linux system image. I hope it will be helpful to friends in need!
1. Linux official mirror
Deepin mirror
www.deepin.org/mirrors/rel…
Mint mirror
www.linuxmint.com/mirrors.php
kernel mirror site:
mirrors.kernel.org/
Fedora official mirror site:
mirrors.fedoraproject.org/publiclist
torrents.fedoraproject.org/
admin.fedoraproject.org/mirrormanag…
Debian global mirror site:
www.debian.org/mirror/
cdimage.debian.org/cdimage/arc…
Ubuntu official mirror site:
releases.ubuntu .com/releases/
cdimage.ubuntu.com/
launchpad.net/ubuntu/ cdm…
old-releases.ubuntu.com/releases/
SUSE official mirror station:
download.opensuse.org/
mirrors.opensuse.org/
CentOS:
mirror-status. centos.org/#cn
Archlinux:
www.archlinux.org/mirrors/sta…
Apache:
www.apache.org/ mirrors/#cn
Cygwin:
www.cygwin.com/mirrors.htm…
kali linux:
www.kali.org/downloads /
2. Open source mirror site for enterprises and institutions
NetEase open source mirror site:
mirrors.163.com/
Sohu Open source mirror site:
mirrors.sohu.com/
Capital Online Technology Co., Ltd.:
mirrors.yun-idc.com/
China Internet Information Center:
mirrors.cnnic.cn (Apache mirror)
Alibaba Cloud open source mirror:
mirrors.aliyun.com/
Changzhou Bei Tecom Software Technology Co., Ltd. (formerly cn99):
centos.bitcomm.cn/
Open Source World:
mirror.lupaworld.com/
3. Open source mirror sites of domestic universities
University of Electronic Science and Technology of China:
ubuntu.uestc.edu.cn/
Shanghai Jiaotong University:
ftp.sjtu.edu.cn/ (IPv4 only)
ftp6.sjtu.edu.cn(IPv6 only)
University of Science and Technology of China:
mirrors.ustc.edu.cn/ (IPv4 IPv6)
mirrors4.ustc.edu.cn/
mirrors6.ustc.edu.cn/
Northeastern University:
mirror.neu.edu.cn/ (IPv4 only)
mirror.neu6.edu.cn/ (IPv6 only)
Beijing Jiaotong University:
mirror.bjtu.edu.cn (IPv4 only)
mirror6.bjtu.edu.cn
debian.bjtu.edu.cn
Beijing University of Chemical Technology:
ubuntu.buct.edu.cn/
Tianjin University:
mirror.tju.edu.cn/
Xiamen University:
mirrors.xmu.edu.cn/
Zhejiang University:
mirrors.zju.edu.cn/
Sun Yat-sen University Mirror:
mirror. sysu.edu.cn/
Huazhong University of Science and Technology:
mirrors.hustunique.com/
Shanghai Jiaotong University:
ftp.sjtu.edu. cn/html/resour…
Huazhong University of Science and Technology:
mirror.hust.edu.cn/
Tsinghua University:
mirrors.tuna.tsinghua .edu.cn/
Beijing Institute of Technology:
mirror.bit.edu.cn/web/
Lanzhou University:
mirror.lzu. edu.cn/
University of Science and Technology of China:
mirrors.ustc.edu.cn/
Dalian Neusoft Institute of Information:
mirrors.neusoft.edu .cn/
Northeastern University:
mirror.neu.edu.cn/
Dalian University of Technology:
mirror.dlut.edu.cn/
Harbin Institute of Technology:
run.hit.edu.cn/html/
Beijing Jiaotong University:
mirror.bjtu.edu.cn/ cn/
Tianjin University:
mirror.tju.edu.cn
China University of Geosciences:
mirrors.cug.edu.cn/
Zhejiang University:
mirrors.zju.edu.cn/
Xiamen University:
mirrors.xmu.edu.cn/
Sun Yat-sen University:
mirror.sysu.edu.cn/
Chongqing University:
mirrors.cqu.edu.cn/
Beijing University of Chemical Technology:
ubuntu.buct.edu.cn/
Nanyang Institute of Technology:
mirror.nyist.edu.cn/
Chinese Academy of Sciences:
www.opencas.org/mirrors/
University of Electronic Science and Technology of China:
ubuntu.uestc.edu.cn/
Xingchen Studio of University of Electronic Science and Technology of China:
mirrors.stuhome.net/
Northwest A&F University:
mirrors.nwsuaf.edu.cn/
The Chinese University of Hong Kong:
ftp.cuhk.edu.hk/pub/Linux/
Hong Kong Baptist University:
ftp.comp.hkbu.edu.hk/pub/
Rackspace HK :
hkg.mirror.rackspace.com
4. Classified mirror server
RedHat Enterprise Linux Red Hat Linux mirror site (mainly RHEL resources ):
eduunix.ccut.edu.cn/index2/unix…
www.mmnt.net/db/0/0/volt…
ftp.corbina. net/pub/Linux/r…
Capital Online Technology Co., Ltd. (English name: Capital Online Data Service):
mirrors.yun-idc.com/
China Telecom Tianyi Cloud:
mirrors.ctyun.cn/
noc.im: mirrors.noc.im/
Changzhou Beitcom Software Technology Co., Ltd.:
centos.bitcomm.cn/
Public cloud PubYun (the parent company is Bitcomm):
mirrors.pubyun.com/
Linux operation and maintenance Pai:
mirrors.skyshe.cn/
China Internet Network Information Center:
mirrors.cnnic.cn/
Fayea Studio:
apache.fayea.com/
Chinese Academy of Sciences:
mirrors.opencas.ac.cn/android/rep…
Nanyang Polytechnic:
mirror.nyist.edu.cn/android/rep…
Chinese Academy of Sciences:
mirrors.opencas.cn/android/rep…
5 , Mirror sites of foreign universities
Hokuriku Advanced Institute of Science and Technology UniversityJAIST:
ftp.jaist.ac.jp/pub/
Carnegie Mellon UniversityCMU:
www. club.cc.cmu.edu/pub
MIT:
mirrors.mit.edu/
Columbia University:
mirror. cc.columbia.edu/
Oregon State University:
ftp.osuosl.org/pub
University of Illinois at Urbana-Champaign:
cosmos.cites.illinois.edu/
Duke University:
archive.linux.duke.edu/
Johns Hopkins University:
mirrors.acm.jhu.edu/
Russian mirror server:
ftp.kddilabs.jp/
ftp.jaist.ac.jp/pub/
ftp.kaist.ac.kr/
mirror.karneval.cz/pub/
ftp.gwdg.de/pub/
ftp.estpak. ee/pub/
Continuously updating ing
The above part needs to be bypassed, and some links may not be valid. Please let us know if you encounter it.
emmm are collected from various places. I don’t know whose 2333 is. If there is any infringement, please inform
Original address: https://juejin.cn/ post/6923854503833927687
The above is the detailed content of The linux system images are all here!. For more information, please follow other related articles on the PHP Chinese website!
How to find a process by name on LinuxAug 26, 2025 am 03:02 AMTo find processes by name in Linux, the most common method is to use the ps command combined with grep. First execute psaux to list all processes, and then filter the target name through grep. For example, psaux|grepnginx can view nginx process information, where the first line shows the running process details, and the second behavior grep's own process needs to be ignored; if you are not sure about the name case, psaux|grep-inginx can ignore case queries. If you only need to check whether the process exists and get the PID, it is recommended to use pgrepnginx, which is simple and only the process ID. Adding the -l parameter can display the name pgrep-lnginx at the same time. -i also supports ignoring upper and lower case. for
How to use dig to query DNSAug 26, 2025 am 12:31 AMdig is a command line tool for quickly querying DNS information. 1. Query basic records: Use digexample.com to check A records, digMXexample.com to check mail server, digCNAMEwww.example.com to check alias records, and the result is ANSWERSECTION. 2. Specify the DNS server: dig@8.8.8.8 example.com can bypass local DNS. 3. Simplified output: Adding short parameters only displays key information, such as digestample.com short. 4. Reverse query: dig-x93.184.216.34 can check domain names through IP, and be used for mail verification and other scenarios.
How to limit process resourcesAug 25, 2025 am 03:16 AMThere are three main ways to limit process resources. First, use ulimit to control the resource limit of a single process, such as maximum memory, CPU time, etc., but it only takes effect on the current session. Persistence requires modification of the configuration file; second, more refined resource management is achieved through cgroups, which can limit the CPU, memory and other resources of a group of processes, suitable for server and container environments; third, use nice and cpulimit to adjust process priorities and CPU occupancy, which is suitable for temporary adjustment.
How to use `lsusb` to list USB devicesAug 25, 2025 am 02:55 AMToviewconnectedUSBdevicesonLinux,usethelsusbcommand.Runninglsusbalonelistsalldeviceswithdetailslikebusnumber,devicenumber,vendorID,productID,anddescription.Adding-vprovidesdetailedtechnicalinfosuchasdeviceclass,speed,andpowerusage.Use-dfollowedbyaven
How to edit crontab fileAug 25, 2025 am 12:34 AMThe key to editing crontab files is to understand the syntax and operation process. 1. Use crontab-e to open the editor, and you can set the default editor to nano; 2. Add tasks according to the format "Minutes, Hours, Days, Days, Commands", it is recommended to use an absolute path and test the validity of the command; 3. When saving and exiting, press Ctrl O and Ctrl X, and enter: wq; 4. Use crontab-l to view the current task list to confirm that the configuration is effective. Pay attention to checking permissions, paths, and cron logs to solve common problems.
How to change open file limitsAug 25, 2025 am 12:31 AMWhen encountering the "Toomyopenfiles" error, you need to adjust the number of opens of the system file. Use the ulimit-n and ulimit-Hn commands to view the current limit. The default is 1024 for ordinary users. Server applications usually require higher values; temporary modifications can be used to ulimit-n65536 only valid for the current terminal and invalid after restart; permanent modifications require editing /etc/security/limits.conf to add soft and hard restrictions, and modify the LimitNOFILE parameters of the PAM configuration or systemd service unit file in some systems; precautions include the restart service taking effect, the configuration path differences between different distributions, and the container environment needs to specify the ulimit parameters and
How to secure a Linux server hardening stepsAug 24, 2025 am 05:50 AMLinux server security reinforcement requires disabling unnecessary services and ports, configuring strong password policies and restricting login permissions, regularly updating the system and installing firewall tools, and at the same time strengthening SSH access control. 1. Use systemctl to view and close non-essential services, and combine ufw or iptables restrictions to retain only necessary ports such as SSH, HTTP, HTTPS, etc.; 2. Modify sshd_config to prohibit root login, enable pam_pwquality.so to set password complexity, and use faillock and other tools to prevent brute-
How to configure Samba clientAug 24, 2025 am 05:01 AMWindows, Linux and macOS users can connect to Samba share in simple steps. 1. Windows users enter the \\ server IP in the resource manager, and after entering the credentials, they can be mapped to a network drive; 2. Linux users install cifs-utils and use the mount command to mount it, or configure /etc/fstab to achieve automatic mount on the computer; 3. MacOS users can access it through the "Connect Server" function of "Findor" and verify their identity. Ensuring that the network is smooth, the permissions are correct, and the necessary software is installed is the key to a successful connection.


Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.






