Extended private:

[Channel 1] [EPVT]: 430.025, CTCSS 100Hz

Planned frequencies (private UHF):

[Channel 3] [UPVT1]: 432.025MHz, CDCSS 703N

[Channel 5] [UPVT2]: 439.975MHz, CDCSS 703N

GMRS interop:

[Channel 2] [GMRS2]: 462.5875MHz

[Channel 4] [GMRS4]: 462.6375MHz

[Channel 6] [GMRS6]: 462.6875MHz

 

[Channel 7-10]: BF-888 default ON BF

 

BF interop ON CIG:

[Channel 7] [BF888_7]: 462.725MHz, CTCSS 136.5Hz

[Channel 8] [BF888_8]: 462.825MHz, CTCSS 162.2Hz

Planned frequencies (private VHF) ON CIG and other VHF:

[Channel 9] [VPVT1]: 142.025MHz, CTCSS 100Hz

[Channel 10] [VPVT2]: 144.025MHz, CDCSS 703N

 

[Channel 11] [DX3F_U]: 434.9200MHz, +5M, CTCSS 88.5Hz

[Channel 12] [DX3F_U]: 434.0250MHz, +5M, CTCSS 88.5Hz

[Channel 13] [DX2N_U]: 434.5000MHz, +5M, CTCSS 114.8Hz

[Channel 14] [DX3F_V]: 144.9400MHz, -0.6M, CTCSS 88.5Hz

[Channel 15] [DX2LA_V]: 144.9000MHz, -0.6M

[Channel 16] [TAR_V]: 144.7400MHz, -0.6M

[Channel 17] [DX3NE_V]: 144.120MHz, +0.6M, CTCSS 88.5Hz

[Channel 18] [DX2N_V]: 144.8600MHz, -0.6M, CTCSS 103.5Hz

 

Communications satellites

 

 

Aeronautical radionavigation:

117.795-137.000

Space-to-Earth:

137.000-138.000

Government simplex SRD:

138.025-140.000

Military:

140.025-142.000

Non-government:

142.025-143.600

Space research simplex:

143.600-144.000

PH Amateur:

144.000-146.000

Distress:

145.000MHz

Maritime distress:

156.800MHz

 

PH Amateur:

430.000-440.000

===============================================

==========

Enabling SSH

sudo apt update

sudo apt install openssh-server

 

sudo systemctl status ssh

 

# allow in firewall

sudo ufw allow ssh

 

==========

Change username

 

==========

Enable remote desktop

 

sudo apt-get install xrdp

 

==========

Static IP address for host (wlan0,eth0) /etc/dhcpcd.conf

 

static ip_address=192.168.1.254/24

static routers=192.168.1.1

static domain_name_servers=192.168.1.1

 

interface wlan0

static ip_address=192.168.1.253/24

static routers=192.168.1.1

static domain_name_servers=192.168.1.1

 

==========

Transfer files/directory using PSCP

 

pscp -r -P 22 -pw password C:\source\\ user@server.local:/destination/

==========

Configure sleep pattern

systemctl unmask sleep.target suspend.target hibernate.target hybrid-sleep.target

 

vi /etc/systemd/logind.conf

 

==========

Configure Samba

sudo apt update

sudo apt install samba

whereis samba

 

mkdir /home/<username>/sambashare/

sudo nano /etc/samba/smb.conf

 

Append text:

[sambashare]

comment = Samba on Ubuntu

path = /home/username/sambashare

read only = no

guest ok = yes

writable = yes

browsable = yes

 

sudo service smbd restart

sudo ufw allow samba

 

sudo smbpasswd -a username

 

==========

Install Docker

 

sudo apt-get install docker.io

 

OR

 

curl -fsSL https://get.docker.com -o get-docker.sh

sudo sh get-docker.sh

 

==========

Install home assistant

 

docker run -d --name="home-assistant" -v /home/ha_config:/config -v /home/foxriver:/media -v /etc/localtime:/etc/localtime:ro --net=host homeassistant/home-assistant:stable

 

docker run --init -d --name="home-assistant" -e "TZ=America/New_York" -v /home/ha_config:/config --net=host homeassistant/raspberrypi3-homeassistant:stable

 

docker run --init -d --name="home-assistant" -e "TZ=America/New_York" -v /PATH_TO_YOUR_CONFIG:/config --net=host homeassistant/raspberrypi4-homeassistant:stable

 

sudo docker update --restart always home-assistant

 

==========

New Install home assistant

 

sudo docker run -d \

  --name homeassistant \

  --privileged \

  --restart=unless-stopped \

  -e TZ=Asia/Manila \

  -v /home/foxriver/ha_config:/config \

  --network=host \

  ghcr.io/home-assistant/home-assistant:stable

 

==========

Inflate/deflate compressed file

 

unzip "file"

zip -r output.zip file1 input_directory

 

==========

Mount disk using fsdisk

 

blkid

 

sudo nano /etc/fstab

Append: "UUID=<UUID of disk>"  /mountpoint  ntfs  defaults  2  0

 

==========

Git commit

 

git add <files>

git commit -m "comment"

git push

 

==========

Git pull

 

git config --global github.user YOUR_USERNAME

git config --global github.token YOURTOKEN

git clone git@github.com:YOUR_USERNAME/YOUR_PROJECT.git

POWERSHELL

==========

Zip folder

Compress-Archive -Path C:\source\ -DestinationPath C:\destination\

 

==========

Sleep CLI Windows 11

 

powercfg -h off

 

rundll32.exe powrprof.dll, SetSuspendState Sleep

==========

Delete specific file type within subfolders

 

get-childitem -path C:\QQQ -include *.raw -recurse | remove-item

 

==========