Fast and reliable mirrors
https://repo.vafda.ir/repository/linux-kernel/
You can view Linux kernel mirrors through this link. It provides access to various versions of the Linux kernel for download and use. This mirror is particularly useful for developers, advanced users, and system maintainers who want reliable and fast access to official kernel sources.
https://pypi-mirror.vafda.ir/simple
pip install -i https://pypi-mirror.vafda.ir/simple <package-name>
Example:
pip install -i https://pypi-mirror.vafda.ir/simple requests
Create or edit the pip configuration file:
~/.pip/pip.conf%APPDATA%\pip\pip.iniAdd the following content:
[global]
index-url = https://pypi-mirror.vafda.ir/simple
https://npm-mirror.vafda.ir
Set the Maha Zist Boom MirrorNPM registry mirror by running:
npm set registry https://npm-mirror.vafda.ir
Verify your current npm registry with:
npm get registry
To reset npm registry back to the default, run:
npm config delete registry
https://repo.vafda.ir/repository/goproxy/
Set the Maha Zist Boom MirrorGo proxy temporarily by running:
export GOPROXY=https://repo.vafda.ir/repository/goproxy/,direct
To make this change permanent, add the export line to your shell configuration file
(~/.bashrc, ~/.zshrc, etc.):
echo 'export GOPROXY=https://repo.vafda.ir/repository/goproxy/,direct' >> ~/.bashrc
Then, reload your shell configuration:
source ~/.bashrc
http://docker.vafda.ir
Edit /etc/docker/daemon.json to use the Maha Zist Boom MirrorDocker mirror:
sudo bash -c 'cat > /etc/docker/daemon.json <
Then restart Docker to apply the changes:
sudo systemctl restart docker
You can verify the mirror is in use with:
docker info | grep -i vafda
https://repo.vafda.ir/repository/quay/
Pull container images from the Maha Zist Boom MirrorQuay mirror using:
docker pull repo.vafda.ir/repository/quay/<repository>/<image>:<tag>
Replace <repository>, <image>, and <tag>
with your desired values.
For example:
docker pull repo.vafda.ir/repository/quay/coreos/etcd:v3.5.0
https://repo.vafda.ir/repository/k8s/
Use the Maha Zist Boom MirrorKubernetes mirror for pulling images from registry.k8s.io.
For containerd: Edit /etc/containerd/config.toml:
[plugins."io.containerd.grpc.v1.cri".registry]
[plugins."io.containerd.grpc.v1.cri".registry.mirrors]
[plugins."io.containerd.grpc.v1.cri".registry.mirrors."registry.k8s.io"]
endpoint = ["https://repo.vafda.ir/repository/k8s/"]
Restart containerd to apply changes:
sudo systemctl restart containerd
For Docker: Edit /etc/docker/daemon.json:
{
"registry-mirrors": ["https://repo.vafda.ir/repository/k8s/"]
}
Restart Docker:
sudo systemctl restart docker
https://repo.vafda.ir/repository/mcr-mirror/
Use the Maha Zist Boom Mirrormirror to pull images from the Microsoft Container Registry
(mcr.microsoft.com).
Pull images using:
docker pull repo.vafda.ir/repository/mcr-mirror//<repository>/<image>:<tag>
Replace <repository>, <image>, and <tag>
with the desired values.
Example:
docker pull repo.vafda.ir/repository/mcr-mirror//dotnet/aspnet:7.0
https://repo.vafda.ir/repository/slackware/
Use the Maha Zist Boom MirrorSlackware mirror to update your system.
Edit /etc/slackpkg/mirrors and uncomment or add the following line:
https://repo.vafda.ir/repository/slackware/slackware64-current/
Then update with:
sudo slackpkg update
https://debian-mirror.vafda.ir/debian
Use the Maha Zist Boom MirrorDebian mirror by editing your sources list.
Update /etc/apt/sources.list:
deb https://debian-mirror.vafda.ir/debian bookworm main contrib non-free
deb-src https://debian-mirror.vafda.ir/debian bookworm main contrib non-free
deb https://debian-mirror.vafda.ir/security bookworm-security main contrib non-free
deb-src https://debian-mirror.vafda.ir/debian bookworm-security main contrib non-free
Then refresh the package index:
sudo apt update
https://ubuntu-mirror.vafda.ir/ubuntu
Use the Maha Zist Boom MirrorUbuntu mirror by editing your sources list.
Edit /etc/apt/sources.list to include:
deb https://ubuntu-mirror.vafda.ir/ubuntu jammy main restricted universe multiverse
deb-src https://ubuntu-mirror.vafda.ir/ubuntu jammy main restricted universe multiverse
deb https://ubuntu-mirror.vafda.ir/ubuntu jammy-updates main restricted universe multiverse
deb-src https://ubuntu-mirror.vafda.ir/ubuntu jammy-updates main restricted universe multiverse
Replace jammy with your Ubuntu version codename if different.
Update package lists:
sudo apt update
https://repo.vafda.ir/repository/mint/
Use the Maha Zist Boom MirrorLinux Mint mirror by editing the repository list.
Edit /etc/apt/sources.list.d/official-package-repositories.list:
deb https://repo.vafda.ir/repository/mint/ ${MINT_CODENAME} main upstream import backport
deb http://ubuntu-mirror.vafda.ir/ubuntu ${UBUNTU_CODENAME} main restricted universe multiverse
deb http://ubuntu-mirror.vafda.ir/ubuntu ${UBUNTU_CODENAME}-updates main restricted universe multiverse
deb http://ubuntu-mirror.vafda.ir/ubuntu ${UBUNTU_CODENAME}-backports main restricted universe multiverse
deb http://ubuntu-mirror.vafda.ir/ubuntu ${UBUNTU_CODENAME}-security main restricted universe multiverse
Replace ${MINT_CODENAME} with your Linux Mint release codename (e.g., una,
vanessa).
Replace ${UBUNTU_CODENAME} with your Ubuntu base codename (e.g., focal,
jammy).
Refresh package lists:
sudo apt update
https://repo.vafda.ir/repository/fedora/
Configure Maha Zist Boom Mirroras your Fedora mirror by editing
/etc/yum.repos.d/fedora.repo:
[fedora]
name=Fedora $releasever - $basearch
baseurl=https://repo.vafda.ir/repository/fedora/linux/releases/$releasever/Everything/$basearch/os/
gpgcheck=1
gpgkey=https://repo.vafda.ir/repository/fedora/linux/releases/$releasever/Everything/$basearch/os/RPM-GPG-KEY-fedora-$releasever-$basearch
Then run:
sudo dnf update
to refresh package metadata.
https://repo.vafda.ir/repository/centos/
Set Maha Zist Boom Mirroras your CentOS mirror by creating
/etc/yum.repos.d/mofid.repo with the following content:
[base]
name=CentOS-$releasever - Base
baseurl=https://repo.vafda.ir/repository/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=https://repo.vafda.ir/repository/centos/RPM-GPG-KEY-CentOS-Official
Then run:
sudo yum update
to refresh package metadata.
https://repo.vafda.ir/repository/rocky/
Create or edit the file /etc/yum.repos.d/rocky.repo with this content:
[baseos]
name=Rocky Linux $releasever - BaseOS
baseurl=https://repo.vafda.ir/repository/rocky/$releasever/BaseOS/$basearch/os/
enabled=1
gpgcheck=1
gpgkey=https://repo.vafda.ir/repository/rocky/RPM-GPG-KEY-rockyofficial
[appstream]
name=Rocky Linux $releasever - AppStream
baseurl=https://repo.vafda.ir/repository/rocky/$releasever/AppStream/$basearch/os/
enabled=1
gpgcheck=1
gpgkey=https://repo.vafda.ir/repository/rocky/RPM-GPG-KEY-rockyofficial
[extras]
name=Rocky Linux $releasever - Extras
baseurl=https://repo.vafda.ir/repository/rocky/$releasever/extras/$basearch/os/
enabled=1
gpgcheck=1
gpgkey=https://repo.vafda.ir/repository/rocky/RPM-GPG-KEY-rockyofficial
Run:
sudo dnf makecache
sudo dnf update
https://repo.vafda.ir/repository/almalinux/
Create or edit the file /etc/yum.repos.d/almalinux.repo with the following content:
[baseos]
name=AlmaLinux $releasever - BaseOS
baseurl=https://repo.vafda.ir/repository/almalinux/$releasever/BaseOS/$basearch/os/
enabled=1
gpgcheck=1
gpgkey=https://repo.vafda.ir/repository/almalinux/RPM-GPG-KEY-AlmaLinux
[appstream]
name=AlmaLinux $releasever - AppStream
baseurl=https://repo.vafda.ir/repository/almalinux/$releasever/AppStream/$basearch/os/
enabled=1
gpgcheck=1
gpgkey=https://repo.vafda.ir/repository/almalinux/RPM-GPG-KEY-AlmaLinux
[extras]
name=AlmaLinux $releasever - Extras
baseurl=https://repo.vafda.ir/repository/almalinux/$releasever/extras/$basearch/os/
enabled=1
gpgcheck=1
gpgkey=https://repo.vafda.ir/repository/almalinux/RPM-GPG-KEY-AlmaLinux
Then run:
sudo dnf makecache
sudo dnf update
https://repo.vafda.ir/repository/oracle/
Create or edit /etc/yum.repos.d/oracle.repo with the following content:
For Oracle Linux 7:
[ol7_latest]
name=Oracle Linux $releasever Latest ($basearch)
baseurl=https://repo.vafda.ir/repository/oracle/linux/OL7/latest/$basearch/
gpgkey=https://repo.vafda.ir/repository/oracle/linux/OL7/RPM-GPG-KEY-oracle
gpgcheck=1
enabled=1
For Oracle Linux 8 or newer, use:
[ol8_latest]
name=Oracle Linux $releasever Latest ($basearch)
baseurl=https://repo.vafda.ir/repository/oracle/linux/OL8/latest/$basearch/
gpgkey=https://repo.vafda.ir/repository/oracle/linux/OL8/RPM-GPG-KEY-oracle
gpgcheck=1
enabled=1
Then refresh repository metadata and update:
sudo yum clean all
sudo yum update
https://repo.vafda.ir/repository/alpine-linux/
Configure Alpine Linux to use the Maha Zist Boom Mirrormirror by editing
/etc/apk/repositories:
http://repo.vafda.ir/repository/alpine-linux//v${ALPINE_VERSION}/main
http://repo.vafda.ir/repository/alpine-linux//v${ALPINE_VERSION}/community
Replace ${ALPINE_VERSION} with your Alpine release version (e.g., 3.18,
3.19).
Then update the package index:
sudo apk update
https://repo.vafda.ir/repository/manjaro/
Edit /etc/pacman.d/mirrorlist with sudo:
sudo nano /etc/pacman.d/mirrorlist
Add or replace the Manjaro mirror servers with:
Server = https://repo.vafda.ir/repository/manjaro/stable/$repo/$arch
Replace
stablewith your Manjaro branch if different (stable,testing,unstable).
Save and exit (Ctrl+O, then Ctrl+X).
Then refresh the package databases:
sudo pacman -Syy
https://repo.vafda.ir/repository/mx/
Update /etc/apt/sources.list.d/mx.list:
sudo nano /etc/apt/sources.list.d/mx.list
Replace the contents with:
deb https://repo.vafda.ir/repository/mx/mx-packages/mx/repo/ <DEBIAN_CODENAME> main non-free
If you're using a different version of MX Linux (like 21), replace
<DEBIAN_CODENAME> with the correct codename:
MX 23 → bookwormMX 21 → bullseyeThen refresh the package index:
sudo apt update
https://repo.vafda.ir/repository/opensuse/
Add the Maha Zist Boom MirrorOpenSUSE mirror with zypper:
sudo zypper addrepo https://repo.vafda.ir/repository/opensuse/distribution/leap/$releasever/repo/oss/ opensuse-oss
sudo zypper refresh
https://repo.vafda.ir/repository/parchlinux/
Update /etc/pacman.d/parch-mirrors to use the Maha Zist Boom MirrorParch Linux mirror:
Server = https://repo.vafda.ir/repository/parchlinux/repos/$repo/$arch
Run sudo pacman -Syy to sync the repositories.
https://repo.vafda.ir/repository/archlinux/
Add the Maha Zist Boom Mirrormirror to /etc/pacman.d/mirrorlist:
Server = https://repo.vafda.ir/repository/archlinux/$repo/os/$arch
Run sudo pacman -Syy to sync the repositories.
https://repo.vafda.ir/repository/voidlinux/
Configure Void Linux to use the Maha Zist Boom Mirrormirror by editing
/etc/xbps.d/00-repository-main.conf:
repository=https://repo.vafda.ir/repository/voidlinux/current
Then update package index:
sudo xbps-install -S
https://repo.vafda.ir/repository/gentoo/
Edit /etc/portage/repos.conf/gentoo.conf:
[gentoo]
location = /var/db/repos/gentoo
sync-type = rsync
sync-uri = rsync://repo.vafda.ir/repository/gentoo
Run:
sudo emerge --sync
https://repo.vafda.ir/repository/kali/
Use the Maha Zist Boom MirrorKali mirror by editing your sources list.
Update /etc/apt/sources.list:
deb [trusted=yes] https://repo.vafda.ir/repository/kali/ kali-rolling main contrib non-free non-free-firmware
Then refresh the package index:
sudo apt update
https://repo.vafda.ir/repository/freebsd/
Configure /etc/pkg/FreeBSD.conf (create it if missing) to use the Maha Zist
BoomMirrorFreeBSD mirror:
FreeBSD: {
url: "pkg+http://repo.vafda.ir/repository/freebsd//${ABI}/latest",
enabled: yes
}
Replace ${ABI} with your system ABI string (e.g., FreeBSD:13:amd64).
To find your ABI, run:
pkg config abi
Then update your package repository:
sudo pkg update