Linux Mediacenter bauen: Unterschied zwischen den Versionen

Aus Zovis Wikili
Wechseln zu: Navigation, Suche
(Alles Terminal Befehle zusammen)
(Wlan Adapter USB Realtek 8821CU inst)
Zeile 46: Zeile 46:
 
   
 
   
 
https://askubuntu.com/questions/1211456/realtek-rtl8811cu-wifi-dongle
 
https://askubuntu.com/questions/1211456/realtek-rtl8811cu-wifi-dongle
  sudo apt install build-essential git -y
+
  <pre>sudo apt install build-essential git -y
 
  mkdir -p ~/build
 
  mkdir -p ~/build
 
  cd ~/build
 
  cd ~/build
Zeile 53: Zeile 53:
 
  make
 
  make
 
  sudo make install
 
  sudo make install
 
+
</pre>
  
  

Version vom 22. Oktober 2021, 11:47 Uhr

Installation

  • Ubuntu mit Autologin und ohne Zusatzsoftware installieren
  • updaten
sudo apt update && sudo apt dist-upgrade -y && sudo reboot
  • snap löschen
sudo snap remove gnome-3-34-1804 gtk-common-themes snap-store
sudo snap remove core18
sudo snap remove snapd
sudo apt purge snapd -y
  • diverse SW installieren
sudo apt update && sudo apt install nemo synaptic apt-transport-https curl gnupg -y

curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add -

echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main" | sudo tee /etc/apt/sources.list.d/brave-browser-release.list

sudo apt update && sudo apt install brave-browser -y

  • Start von emby im kioskmode
    • Startprogramme öffnen
    • Hinzufügen
    • Name:
    Start Emby
    • Befehl:
   /usr/bin/brave-browser --start-fullscreen -app=https://moviez.naranja.li/
    • speichern und rebooten


Alles Terminal Befehle zusammen

 sudo apt update && sudo apt dist-upgrade -y && sudo snap remove gnome-3-34-1804 gtk-common-themes snap-store && sudo snap remove core18 && sudo snap remove snapd && sudo apt purge snapd -y && sudo apt update && sudo apt install nemo synaptic apt-transport-https curl gnupg -y && curl -s https://brave-browser-apt-release.s3.brave.com/brave-core.asc | sudo apt-key --keyring /etc/apt/trusted.gpg.d/brave-browser-release.gpg add - && echo "deb [arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main" | sudo tee /etc/apt/sources.list.d/brave-browser-release.list && sudo apt update && sudo apt install brave-browser -y && sudo reboot

Seahorse Passwort Schlüsselbund Popup

öffne das Proggi seahorse

Right-click on the "Login" entry at the top and choose Change Password. You'll need to enter the current password, which should be your user account password, before continuing. When you do that, you'll get a dialog where you will be asked to enter the new password twice:

Leave this blank, choose "Continue", and choose it again to confirm you desire to continue without a password.


Wlan Adapter USB Realtek 8821CU inst

https://askubuntu.com/questions/1211456/realtek-rtl8811cu-wifi-dongle

sudo apt install build-essential git -y
 mkdir -p ~/build
 cd ~/build
 git clone https://github.com/brektrou/rtl8821CU.git
 cd rtl8821CU
 make
 sudo make install


sudo apt install build-essential git -y && mkdir -p ~/build && cd ~/build && git clone https://github.com/brektrou/rtl8821CU.git && cd rtl8821CU && make && sudo make install


ubuntu4me.ch