Network Bonding with 802.3ad LACP

This tutorial is setting up a network bonding with two network interfaces in a server with the help of a managed network swtich (LACP-Link Aggregation Control Protocol, 802.3ad) In linux system, there are several modes in the network bonding. (Ref: Link) 0: balance-rr 1: active-backup 2: balance-xor 3: broadcast 4: 802.3ad 5: balance-tlb 6: balance-alb Only the 802.3ad mode requires LACP support in the switch side. As we have a managed switch, Pica8 P-3297, I have configured a network bonding with 802....

May 9, 2024 · Hyonyoung Choi

Install Conda System-Widely

Here’s how to install conda for multiple users. Download Miniconda install script from https://docs.anaconda.com/free/miniconda/index.html wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh chmod +x Miniconda3-latest-Linux-x86_64.sh -OR- curl -OLJ https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh chmod +x Miniconda3-latest-Linux-x86_64.sh Install Miniconda3 Target directory: /usr/local/conda Activate base by default? No sudo ./Miniconda3-latest-Linux-x86_64.sh -b -p /usr/local/conda Generate a global configuration Create a system-wide configuration, /usr/local/conda/.condarc, to force to use system-wide package cache and to skip activating base environment. --- pkg_dirs: #!final - /usr/local/conda/pkgs auto_activate_base: false #!...

May 8, 2024 · (updated May 9, 2024) · Hyonyoung Choi