Open main menu

Changes

XScript

601 bytes added, 9 April
After your system boots, then you need to open <code>Terminal</code> prpgram, then type the following command to complete the installation of the script
 
 
'''[Update]'''
 
1. NASPi series does '''not support Raspberry Pi 5 hardwared''' due to different hardware interface.
 
2. Use gpiod instead of obsolete interface, and suuports ubuntu 23.04 also
 
3. The script now supports the Raspberry Pi OS '''BOOKWORM''' version. You just need to '''uninstall''' the original script and '''reinstall''' it. Please refer to the following:
 
OPen ternimal window, then run the following command:
<pre>
mv xscript xcript-old
git clone https://github.com/geekworm-com/xscript
cd xscript
chmod +x *.sh
./uninstall.sh
</pre>
Then just follow the installation process below.
==OS that has been tested==
* DietPi
* Manjaro
* Ubuntu(Testing based on '''Ubuntu 23.04''')
* myNode
* Umbrel
==Preconfigured <code>config.txt</code>==
To install pwm fan, first add <code>dtoverlay=pwm-2chan</code> to <code>/boot/firmware/config.txt</code> or <code>/boot/config.txt</code> under [all] or the end of file and <code>reboot</code>:
sudo nano /boot/firmware/config.txt
Some OS's config.txt may be in the /boot/ directory, so that you need to run the following command:
sudo nano /boot/config.txt
Using <code>ls /boot/firmware/config.txt</code> you can check if the file is in the /boot/firmware/ directory
 
Save & exit.
sudo reboot
PS: Only appending to the last line not replace.
 
===Install gpiod package===
sudo apt install -y gpiod
==Download the script==
Run the following command to install fan service script;
sudo ./install-fan-service.sh
Then the pwm fan starts running.
==Create the x-c1-pwr service==
If you are using <span class="tb_red">ubuntu verson 23.04</span> or more high version, please run the following command: ./install-pwr-service-ubuntu.shOR run the following command to install power management script; sudo ./install-pwr-service.sh
==Prepair software shutdown script==
If you are using <span class="tb_red">ubuntu verson 23.04</span> or more high version, please run the following command: ./install-sss-ubuntu.shOR, Run the following command to install software shutdown script (sss), sudo ./install-sss.sh
After the installation is complete, an <code>xoff</code> command will be created to shut down the software.Then you can run <code>xoff</code> to execute software shutdown.
 
==Uninstall==
Run the following command to uninstall all.
sudo ./uninstall.sh
==Test safe shutdown==
#The code for fan speed control is now in the <code>x-c1-fan.sh</code> file.
#<code>fan-rpi.py</code> and <code>fan-pigpio.py</code> are no longer used, and are reserved here for research and use by python lovers only.
 
==Uninstall==
Run the following command to uninstall all.
./uninstall.sh
==Support==