Mofid Core Proxy Mirrors

Fast and reliable mirrors

Development Mirrors

Container Registry Mirrors

BSD Mirrors

Linux Distribution Mirrors

×

Linux Kernel Mirror

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.

×

PyPI Mirror

https://pypi-mirror.vafda.ir/simple

Temporary usage (one-time install):

pip install -i https://pypi-mirror.vafda.ir/simple <package-name>

Example:

pip install -i https://pypi-mirror.vafda.ir/simple requests

Permanent usage (set mirror as default):

Create or edit the pip configuration file:

  • Linux/macOS: ~/.pip/pip.conf
  • Windows: %APPDATA%\pip\pip.ini

Add the following content:

[global]
index-url = https://pypi-mirror.vafda.ir/simple
×

NPM Registry Mirror

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
×

Go Proxy Mirror

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
×

Docker Hub Mirror

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
×

Quay Mirror

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
×

Kubernetes Mirror

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
×

Microsoft Container Registry Mirror

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
×

Slackware Mirror

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
×

Debian Mirror

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
×

Ubuntu Mirror

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
×

Linux Mint Mirror

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
×

Fedora Mirror

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.

×

CentOS Mirror

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.

×

Rocky Linux Mirror

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
×

AlmaLinux Mirror

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
×

Oracle Linux

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
×

Alpine Linux Mirror

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
×

Manjaro Mirror

https://repo.vafda.ir/repository/manjaro/

Use the Maha Zist Boom MirrorManjaro mirror by editing your mirror list.

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 stable with your Manjaro branch if different (stable, testing, unstable).

Save and exit (Ctrl+O, then Ctrl+X).

Then refresh the package databases:

sudo pacman -Syy
×

MX Linux Mirror

https://repo.vafda.ir/repository/mx/

Use the Maha Zist Boom MirrorMX Linux mirror by editing your sources list.

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 → bookworm
  • MX 21 → bullseye

Then refresh the package index:

sudo apt update
×

OpenSUSE Mirror

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
×

Parch Linux Mirror

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.

×

Arch Linux Mirror

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.

×

Void Linux Mirror

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
×

Gentoo Mirror

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
×

Kali Linux Mirror

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
×

FreeBSD Mirror

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