Compare commits

...

3 Commits

Author SHA1 Message Date
tteckster 8e9ea1bd3c
Update rdtclient-install.sh
tweak
2023-11-21 15:30:18 -05:00
tteckster e39cd4c56d
Update USER_SUBMITTED_GUIDES.md
update link
2023-11-21 10:39:04 -05:00
tteckster 117c32a408
Update microcode.sh
tweak
2023-11-21 10:26:20 -05:00
3 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@
[Home Assistant: Installing InfluxDB (LXC)](https://www.derekseaman.com/2023/04/home-assistant-installing-influxdb-lxc.html) [Home Assistant: Installing InfluxDB (LXC)](https://www.derekseaman.com/2023/04/home-assistant-installing-influxdb-lxc.html)
[Home Assistant: Proxmox Quick Start Guide](https://www.derekseaman.com/2023/04/installing-home-assistant-on-proxmox-quick-start-guide.html) [Home Assistant: Proxmox Quick Start Guide](https://www.derekseaman.com/2023/10/home-assistant-proxmox-ve-8-0-quick-start-guide-2.html)
[Home Assistant: Installing Grafana (LXC) with Lets Encrypt SSL](https://www.derekseaman.com/2023/04/home-assistant-installing-grafana-lxc.html) [Home Assistant: Installing Grafana (LXC) with Lets Encrypt SSL](https://www.derekseaman.com/2023/04/home-assistant-installing-grafana-lxc.html)

View File

@ -21,11 +21,11 @@ $STD apt-get install -y unzip
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing ASP.NET Core Runtime" msg_info "Installing ASP.NET Core Runtime"
wget -q https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb wget -q https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb
$STD dpkg -i packages-microsoft-prod.deb $STD dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb rm packages-microsoft-prod.deb
$STD apt-get update $STD apt-get update
$STD apt-get install -y dotnet-sdk-6.0 $STD apt-get install -y dotnet-sdk-8.0
msg_ok "Installed ASP.NET Core Runtime" msg_ok "Installed ASP.NET Core Runtime"
msg_info "Installing rdtclient" msg_info "Installing rdtclient"
@ -33,7 +33,7 @@ wget -q https://github.com/rogerfar/rdt-client/releases/latest/download/RealDebr
unzip -qq RealDebridClient.zip -d /opt/rdtc unzip -qq RealDebridClient.zip -d /opt/rdtc
rm RealDebridClient.zip rm RealDebridClient.zip
cd /opt/rdtc cd /opt/rdtc
mkdir -p data/db/ data/downloads mkdir -p data/{db,downloads}
sed -i 's#/data/db/#/opt/rdtc&#g' /opt/rdtc/appsettings.json sed -i 's#/data/db/#/opt/rdtc&#g' /opt/rdtc/appsettings.json
msg_ok "Installed rdtclient" msg_ok "Installed rdtclient"

View File

@ -30,7 +30,7 @@ msg_ok() { echo -e "${BFR} ${CM} ${GN}$1${CL}"; }
msg_error() { echo -e "${BFR} ${CROSS} ${RD}$1${CL}"; } msg_error() { echo -e "${BFR} ${CROSS} ${RD}$1${CL}"; }
header_info header_info
current_microcode=$(journalctl -k | grep -E "microcode: microcode" | awk -F 'microcode: microcode updated early to revision |, date = ' '{print $2 ", date = " $3}') current_microcode=$(journalctl -k | grep -oP "microcode: updated early: [^ ]+ -> \K[^,]+, date = [^ ]+" | head -n 1)
[ -z "$current_microcode" ] && current_microcode="Not found." [ -z "$current_microcode" ] && current_microcode="Not found."
intel() { intel() {