-
-
Notifications
You must be signed in to change notification settings - Fork 13
Menu
Tearran edited this page Apr 11, 2024
·
5 revisions
armbian-config jobs list.
Enable Armbina kernal upgrades
Jobs:
get_user_continue "This will allow apt to update boot critical items
Continue?" process_input
set_safe_boot unhold
Disable Armbina kernal upgrades
Jobs:
get_user_continue "This will apt hold boot critical items
Continue?" process_input
set_safe_boot freeze
Edit the boot enviroment (WIP)
Jobs:
get_user_continue "This will open /boot/armbianEnv.txt file to edit
CTRL+S to save
CTLR+X to exit
would you like to continue?" process_input
nano /boot/armbianEnv.txt
Install Bluetooth support
Jobs:
see_current_apt
debconf-apt-progress -- apt-get -y install bluetooth bluez bluez-tools
check_if_installed xserver-xorg && debconf-apt-progress -- apt-get -y --no-install-recommends install pulseaudio-module-bluetooth blueman
Remove Bluetooth support
Jobs:
see_current_apt
debconf-apt-progress -- apt-get -y remove bluetooth bluez bluez-tools
check_if_installed xserver-xorg && debconf-apt-progress -- apt-get -y remove pulseaudio-module-bluetooth blueman
debconf-apt-progress -- apt -y -qq autoremove
Bluetooth Discover
Jobs:
get_user_continue "Verify that your Bluetooth device is discoverable!" process_input ; connect_bt_interface
Install Infrared support
Jobs:
see_current_apt; debconf-apt-progress -- apt-get -y --no-install-recommends install lirc
Uninstall Infrared support
Jobs:
see_current_apt; debconf-apt-progress -- apt-get -y --no-install-recommends install lirc
Manage wifi network connections
Jobs:
nmtui connect
Advanced Edit /etc/network/interface
Jobs:
get_user_continue "This will open interface file to edit
CTRL+S to save
CTLR+X to exit
would you like to continue?" process_input
nano /etc/network/interfaces
Disconect and forget all wifi connections (Advanced)
Jobs:
get_user_continue "Disconect and forget all wifi connections
Would you like to contiue?" process_input
LC_ALL=C nmcli --fields UUID,TIMESTAMP-REAL,TYPE con show | grep wifi | awk '{print $1}' | while read line; \
do nmcli con delete uuid $line; done > /dev/null
Toggle system IPv6/IPv4 internet protical
Jobs:
get_user_continue "This will toggle your internet protical
Would you like to contiue?" process_input
toggle_ipv6 | show_infobox
Change Globla timezone (WIP)
Jobs:
dpkg-reconfigure tzdata
Change Locales reconfigure the language and charitorset
Jobs:
dpkg-reconfigure locales
source /etc/default/locale ; sed -i "s/^LANGUAGE=.*/LANGUAGE=$LANG/" /etc/default/locale
export LANGUAGE=$LANG
Change Keyboard layout
Jobs:
dpkg-reconfigure keyboard-configuration ; setupcon
Change APT mirrors
Jobs:
get_user_continue "This is only a frontend test" process_input
Update Application Repository
Jobs:
get_user_continue "This will update apt" process_input
debconf-apt-progress -- apt update
CLI System Monitor
Jobs:
armbianmonitor -m | show_infobox
About This systme. (WIP)
Jobs:
show_message <<< "This app is to help exicute prosedures to configure your system
Some option may not work on manualy modified sytemes"
List of Config function(WIP)
Jobs:
show_message <<< see_use