روزنوشته های یک برنامه نویس

۴ مطلب با موضوع «لینوکس :: شبکه» ثبت شده است

encrypted BTRFS multi-disk system

دوشنبه, ۲۳ مهر ۱۴۰۳، ۱۰:۰۹ ق.ظ

To set up an encrypted BTRFS multi-disk system in Alpine Linux, follow these steps:

Preparation

  1. Install necessary packages:

apk add btrfs-progs cryptsetup blkid

Encryption Setup

  1. Encrypt each disk partition you want to use:

cryptsetup luksFormat /dev/nvme0n1p2 cryptsetup luksFormat /dev/nvme0n1p3

  1. Open the encrypted partitions:

cryptsetup open /dev/nvme0n1p2 crypt1 cryptsetup open /dev/nvme0n1p3 crypt2

BTRFS Configuration

  1. Create a BTRFS filesystem across the encrypted partitions:

mkfs.btrfs -m raid1 -d raid1 /dev/mapper/crypt1 /dev/mapper/crypt2

  1. Mount the BTRFS filesystem:

mount /dev/mapper/crypt1 /mnt

  1. Create subvolumes:

btrfs subvolume create /mnt/root btrfs subvolume create /mnt/home

  1. Unmount the filesystem:

umount /mnt

  1. Mount the root subvolume:

mount -o subvol=root /dev/mapper/crypt1 /mnt

System Configuration

  1. Edit /etc/crypttab to include both encrypted partitions

  2. Modify /etc/fstab to mount the BTRFS subvolumes

  3. Update /etc/mkinitfs/mkinitfs.conf to include necessary features:

features="ata base cdrom btrfs keymap kms mmc nvme raid scsi usb cryptsetup cryptkey resume"

  1. Create a kernel hook to ensure proper boot setup
  • epi log

استریم به صورت RTP

دوشنبه, ۱۳ شهریور ۱۳۹۶، ۰۵:۱۵ ب.ظ

استریم کردن فایل به فرمت rtp: 

ffmpeg -re -i 1.wav -f rtp -payload_type 8 rtp://127.0.0.1:5545


پخش همان rtp:

ffplay  rtp://127.0.0.1:5545


  • epi log

تنظیم آدرس آی پی فایروال سیسکو در حالت ریداندانت

چهارشنبه, ۲۵ مرداد ۱۳۹۶، ۰۴:۱۴ ب.ظ
interface gigabitethernet 0/0
ip address 10.1.1.1 255.255.255.0 standby 10.1.1.2
منبع
  • epi log

حذف آدرس آی پی

شنبه, ۳۱ تیر ۱۳۹۶، ۱۰:۵۷ ق.ظ

حذف یک آدرس از کارت شبکه:

ip addr del 10.22.30.44/16 dev eth0

حذف کلیه آدرسها از یک کارت شبکه:

ip addr flush dev eth0


منبع

  • epi log