Wi-Fi Adapter for Linux, Ubuntu

solution:
These adapters are working with my pc!
TP-Link AC 1300 Archer Dual Antennas T4U Plus
TP-Link AC 1300 Archer T4U (older model)
#########################
mypc:
lspci | grep Network
03:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter

How do I install drivers for the RTL8821CE Network Controller on Ubuntu 20.04?
https://askubuntu.com/questions/1261902/how-do-i-install-drivers-for-the-rtl8821ce-network-controller-on-ubuntu-20-04

Realtek RTL8821CE Driver
https://github.com/tomaspinho/rtl8821ce

Secure Boot
If your system uses Secure Boot, the kernel will not accept user-supplied modules. There are two ways to solve this issue:

Disable Secure Boot via BIOS/UEFI settings.
Create or use an existing MOK (Machine Owner Key) to sign the compiled .ko linux kernel object produced by DKMS.

###################################xx
my pc:
Secure Boot kikapcsolása (Custom/Standard esetén)
1. Ha csak a “Custom” és “Standard” opciókat látod:
Állítsd a Secure Boot módot Custom-ra. Ez a módban lehetőséget kapsz a Secure Boot teljes kikapcsolására.
2. Secure Boot kikapcsolása a Custom módban:
Miután Custom módba kapcsoltál:
Keresd meg a Secure Boot beállítást (általában engedélyezett vagy tiltott – “Enabled”/”Disabled”).
Állítsd át Disabled-re.
3. Töröld az alapértelmezett kulcsokat (opcionális):
Ha Custom módban vagy, lehetőséged lehet az alábbiakra:
Delete Platform Keys (PK): Ez törli a gyártó által telepített Secure Boot kulcsokat.
Miután a kulcsok törlésre kerültek, a Secure Boot gyakorlatilag kikapcsol, mert nincs hitelesítési kulcs.

Enable Legacy Mode vagy CSM (Compatibility Support Module) – Ezzel az UEFI visszavált hagyományos BIOS-kompatibilis módba, amely automatikusan kikapcsolja a Secure Boot-ot.

######################################################xxx
ChatGPT:
Ha a tárolóból nem érhető el a csomag, letöltheted és telepítheted a drivert manuálisan a GitHub-ról vagy egyéb forrásból.

Példa a forrásból telepítésre:
Telepítsd a szükséges eszközöket:

sudo apt-get install build-essential dkms git

Klónozd a driver forráskódját:

git clone https://github.com/tomaspinho/rtl8821ce.git

Lépj be a mappába:

cd rtl8821ce

Telepítsd a drivert:

sudo ./dkms-install.sh

Töltsd be a modult:

sudo modprobe 8821ce

4. Ellenőrzés a hardverrel kapcsolatban
Győződj meg róla, hogy valóban RTL8821CE chipsetet használ a Wi-Fi adaptered. Ehhez futtasd:

lspci | grep -i network

#############################################xx

sudo apt-get install linux-firmware

How to Fix the Ubuntu “No Wi-Fi Adapter Found” Error
https://www.makeuseof.com/fix-ubuntu-no-wifi-adapter-found-error/

Looking for good wireless adapter
https://ubuntuforums.org/showthread.php?t=2486048

USB WiFi adapter
https://ubuntu-mate.community/t/usb-wifi-adapter/25504

Wi-Fi Not Working in Linux? Here’s a fix for Broadcom Wireless Cards

Which USB wireless adapters have driver support for Linux Ubuntu?
https://www.reddit.com/r/linuxhardware/comments/15nlijh/which_usb_wireless_adapters_have_driver_support/

USB-s WIFI adapter linuxhoz
https://linuxmint.hu/forum/usb-s-wifi-adapter-linuxhoz

Best USB Wifi for Linux

Wireless USB Adapters for Linux

How can I know if a wifi adpater will work with Ubuntu?
https://askubuntu.com/questions/1413650/how-can-i-know-if-a-wifi-adpater-will-work-with-ubuntu

Hardware for Ubuntu
https://linux-hardware.org/?view=howto

Best usb wifi adapter
https://forums.linuxmint.com/viewtopic.php?t=415022
################################

Set up TP-Link WA855RE as Ethernet Extender

Wi-Fi repeater with UTP connection?

Teorical question, can i use a repeater of repeater wifi adapter?
https://community.spiceworks.com/t/teorical-question-can-i-use-a-repeater-of-repeater-wifi-adapter/547724/5

############
Speed meter
https://www.speedmeter.hu/

https://szelessavindex.hu/

Xubuntu install with development environment

,

How to install Chrome on Ubuntu through the web

https://www.xda-developers.com/how-install-chrome-ubuntu/

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

sudo dpkg -i google-chrome-stable_current_amd64.deb

sudo apt -f install

##################################################

Laragon Alternatives for Linux
https://alternativeto.net/software/laragon/?platform=linux&p=2

##############################################

How to Install XAMPP on Ubuntu
2024 UPDATE
zsolt@zsolt-SATELLITE-C850-19P:~/Downloads$ chmod +x xampp-linux-x64-*-installer.run
zsolt@zsolt-SATELLITE-C850-19P:~/Downloads$ sudo ./xampp-linux-x64-*-installer.run

Permission problem:
sudo chown -R $USER /opt/lampp/htdocs
sudo chmod -R 777 /opt/lampp/htdocs

Xampp start
sudo /opt/lampp/manager-linux-x64.run

+ DESKTOP > Create Launcher > Add command + Click on ‘ Run as terminal’ So you can add password

https://phoenixnap.com/kb/how-to-install-xampp-on-ubuntu

How To Change PHP Version Of Your Xampp Server Easy and Quick

##############################

How To Install Git on Ubuntuhttps://phoenixnap.com/kb/how-to-install-git-on-ubuntu

###############################
Alternatives to TortoiseGIT for Ubuntu: Integrating GIT with Nautilus

https://devicetests.com/alternatives-to-tortoisegit-for-ubuntu-integrating-git-with-nautilus

cd /opt/lampp/htdocs

git clone https://github.com/felhasznalonev/projektnev.git
###############################

Github Tutorial: Generate Personal Access token to Clone and Push Private Repository

Managing your personal access tokens

https://docs.github.com/en/enterprise-server@3.9/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens

###############################
Create and store your GitHub personal access token

https://www.pragmaticlinux.com/2023/05/create-and-store-your-github-personal-access-token/

Storing Git Credentials with Git Credential Helper

https://techexpertise.medium.com/storing-git-credentials-with-git-credential-helper-33d22a6b5ce7

###############################
fatal: could not create work tree dir ‘myproject’: Permission denied
/opt/lampp$ sudo chmod 777 htdocs

#############################

VSCODE install ubuntu:
https://code.visualstudio.com/docs/setup/linux
#############################
xampp start on ubuntu:
sudo /opt/lampp/lampp start

#############################################x

zsolt@zsolt-Inspiron-5558:/opt/lampp/htdocs/laravel10_auction$ php artisan serve
Command ‘php’ not found, but can be installed with:
sudo apt install php8.1-cli # version 8.1.2-1ubuntu2.14, or
sudo apt install php-cli # version 2:8.1+92ubuntu1
################################
NOOOO,nem kell
How to Install PHP 8.2 on Ubuntu 22.04

https://techvblogs.com/blog/install-php-8-2-ubuntu-22-04

################################

How to Install and Use Composer on Ubuntu 22.04 | Step-by-Step
https://www.cherryservers.com/blog/how-to-install-composer-ubuntu

#####################################
delete php from ubuntu:
sudo apt-get purge php.*
#####################################

How to Install PHP Composer in Linux [Ubuntu,Debian,CentOS]

https://operavps.com/docs/install-php-composer-in-linux/

Vércukor , étkezés

MINDIG mag, azután gyümölcs

Mind az alma, mind pedig a körte gazdag rostban: egy közepes almában 19 gramm szénhidrát és 3 gramm rost található. Ha ezekhez eszünk némi mogyorót vagy mandulát is, akkor a fehérjék miatt a vércukor váltakozása még stabilabb lehet. Vigyázni kell azonban az almalével és az aszalt almával: ezekben a nyers gyümölcsnél jóval több cukor van.

Alacsony glikémiás indexű szénhidrátok például:

bulgur, quinoa, hajdina, barna rizs, gersli

zabpehely

hüvelyesek (lencse, bab, zöldborsó, sárgaborsó, csicseriborsó)

teljes kiőrlésű búzaliszt, rozsliszt, durumbúzaliszt és az ebből készült ételek (tészták, sütemények, stb.)

nyers zöldségek

nyírfacukor, eritrit, stevia

https://www.ennifogyni.hu/fogyni-akarok-/teszta-helyett-bulgur-burgonya-helyett-rizs-melyik-koret-dietas-/65125/

Ezek a legjobb szénhidrátok a cukorbetegeknek
https://www.hazipatika.com/napi_egeszseg/cukorbetegseg/cikkek/ezek_a_legjobb_szenhidratok_a_cukorbetegeknek

https://www.hazipatika.com/napi_egeszseg/cukorbetegseg/cikkek/ezek_a_legjobb_szenhidratok_a_cukorbetegeknek

Bulgur:
https://www.egeszsegkalauz.hu/eletmod/taplalkozas/alternativ-koret-szenhidrat-cukorbetegseg-bulgur-kisir-recept/h8x22cb

mintaétrend:

https://nephrohome.hu/dietetika-specialis-etrend-cukorbetegeknek/?gad_source=1&gclid=CjwKCAjwxNW2BhAkEiwA24Cm9DB3g8YWBtcvJShPmFFni30Tvl81HIk08uZRTdq8Cz75XPIED08WMBoC3GoQAvD_BwE