CFS Zen Tweaks is a bash script and systemd service that tweak the Linux CPU scheduler for better desktop responsiveness when under heavy CPU utilization.
The default kernel settings are not tweaked for desktop usage, with high throughput being prioritized over latency, notes the CFS Zen Tweaks author. This results in a less responsive desktop under heavy CPU load. Using CFS Zen Tweaks, you should notice an improved desktop responsiveness – for example, its author mentions that before using this, YouTube would lag while compiling code, and that’s no longer the case using the CFS Zen tweaks.
The CFS Zen Tweaks project adjusts the default kernel CPU scheduler (CFS or Completely Fair Scheduler) for better desktop responsiveness. The CFS CPU scheduler settings come from Linux ZEN kernel, which was created to provide a better Linux kernel for everyday systems.
Note that only the CFS CPU scheduler tweaks are used from the ZEN kernel, while this custom kernel also has other tweaks.
The advantage of using these tweaks over installing a custom kernel is that you get to keep your Linux distribution’s official kernel packages (so you get official updates and there’s no risk of breaking stuff).
It’s important to note though, that using these tweaks will increase the battery drain on laptops, due to more context switches.
Download CFS Zen Tweaks
CFS Zen Tweaks is packaged as a DEB (for Debian, Ubuntu, Linux Mint, Pop!_OS, etc.), RPM (Fedora), and it’s also available on AUR for Arch Linux / Manjaro users. If you just want the script and systemd service, visit the project GitHub repository page. To use it, you’ll need bash, gawk, and systemd to apply the settings on boot (these will be installed as dependencies if you’re using the prebuilt packages).
After installing the package, enable the tweaks to be applied on boot (and apply them right now) by using:
https://codecubit.com/wp-content/uploads/2022/08/AVvXsEgv0cXLMjV_7YtByCHnzmpUnaW0TYFnpTd3B9BO14tuw2kM9USx3-010u5MyOYxqQDUlI6tJAOdpMA0_oOdk1zLrxDs5itOzZgZFQNHKy9uKMVbz5YRNMFypFEf_uF5JpDKHBPqmWGCBnzY2NkiY2yH0LG1OBGYsWAm3Y73YnSrZ5pKhGb-nLoP9Z6jw640-h360.webp360640RoboLinuxhttps://codecubit.com/wp-content/uploads/2022/05/logo340x156.svgRoboLinux2022-08-10 19:41:292022-08-10 19:54:01Get Better Desktop Responsiveness Under Heavy CPU Load Using CFS Zen Tweaks
“A load balancer receives requests and then transfers them to targets defined in a target group. We can create an Application Load balancer either using the AWS management console or AWS CLI. There are several routing options with AWS Application Load Balancer, e.g., Host-Based routing.
In Host-based routing, incoming traffic is routed on the basis of the domain name or host name given in the Host Header. In this tutorial, we are going to create an Application Load balancer with Host-Based routing.”
Overview of This Lab
In this lab, we will set up Application Load Balancer on AWS using the host-based routing approach. To perform this lab, we require the following components: First, we need two availability zones with a minimum of one EC2 instance in each of them. Next is a VPC with at least one public subnet in each of these availability zones. We will configure the load balancer using these public subnets. Finally, configure a web server for the above EC2 instances and use the security group to open the port 80 for http requests on these instances.
Configuring the EC2 Instances
The first EC2 instance is an Ubuntu 20.04 Linux machine, and the web server (apache) displays the message: “This is an xyz host”. It has a hostname: www.xyz.tecofers.com
Similarly, the second instance is also an Ubuntu 20.04 Linux, with the web server displaying the message: “This is an abc host”. It has a hostname: www.abc.tecofers.com
The web servers contain the “abc” and “xyz” directories inside their root directories, i.e. (/var/www/).
Setting up the Target Group
Step 1. In this step, we will create target groups(“xyz” and “abc”) for routing the incoming requests. On the EC2 dashboard, select the Target Groups option on the left pane under the Load Balancing title. Now select the “Create target group” option:
Step 2. The “Specify group details” page has several options to be filled.
i) We start with the “Basic configuration” heading:
For the “Choose a target type” option, click the “Instances” radiodifusión button here.
For the “Target group name”, enter an appropriate target group name(“xyz” in my case).
For the “Protocol” and “Port” options, select “HTTP” and “80”, respectively.
For the “VPC” option, choose the VPC containing your instances.
Finally, for the “Protocol version,” stick to the default option(HTTP1).
ii) The “Health checks” Configuration has the following fields:
For the “Health check protocol” drop-down menu, choose HTTP.
For the “Health check path”, specify a custom path or use the default one(recommended).
We recommend keeping the “Advanced health check settings” as it is. Adding tags is an optional step. Enter “Next” to continue.
Register the Instances
In this step, we need to register the instances with the Target Groups.
Step 1. On this page, choose an instance and then select the button “Include as pending below”. This will make the instance appear in the “Review targets” heading. Proceed by hitting the “Create target group” button.
For another target group, “abc”, repeat the same steps of creating a target group and then attach another instance here. On the Target groups, the two target groups will appear as:
So far, we have not attached any Load balancer to our target groups. Let’s go and create a load balancer.
Create the Application Load Balancer
Note: Creating a load balancer service requires you to pay AWS.
Step 1. On the EC2 dashboard, select the Load Balancers title and hit the “Create Load Balancer” button, and then choose “Application Load Balancer”:
Step 2. Enter a name for the load balancer that satisfies the naming constraints. Under the Scheme, keep the default option (“Internet-facing”) selected. For “IP address type,” choose IPv4.
Step 3. On moving ahead, we have “Network mapping”; here, choose the VPC we are working with. Also, choose two availability zones that hold the targets. The incoming traffic will be routed to these targets by the load balancer.
Step 4. For the Security Groups, select or create a new security group for the load balancer that will allow communication with the target port (port 80)
Step 5. Now come the Listeners and routing segment; what we have to do here is to configure a listener by choosing a protocol(HTTP here) and a port. For the Default action, choose your target corresponding to the “forward to” field.
Step 6. Adding tags and Add-on services are optional steps and can be skipped. After reviewing the configuration summary and click the “Create load balancer” button:
The load balancer is now ready.
Add the Host-based Forwarding Rules
After the load balancer is created and its status becomes active, we are required to add traffic forward rules.
Step 1. From the “Load Balancers” page and select the load balancer and then further move to the Listeners tab:
Step 2. Navigate to the Listeners tab and under the “Rules” column, click on the “View/Edit rules” link. A new page appears here first; click on the “+” icon, then click on the “Insert Rule” link.
Step 3. For the IF(all match) column, do as follows:
i) click on the “+ Add condition” and set “Host header” as the type of Rule.
ii) enter the host or domain name inside the field corresponding to the label “is”.
Step 4. For the “Then” column, do as follows:
I) click on “+Add action” and set “Forward to” as the action.
ii) choose the target group.
Save the rule and for another target group, insert the rule in the same way and save it.
In case the above rules are not satisfied, the default rule will be used.
Register the Domain
To make the host-based routing work over the internet, we have to register the hostnames with Route 53 and map them with the load balancer DNS.
Step 1. From the Route 53 dashboard, choose the “Create hosted zone” option:
Step 2. Next, enter your domain name to where traffic will be routed to. For the “type” field, set “Public hosted zone”. Hit the button “Create hosted zone”.
Step 3. In the “Records” section, choose “Create record”.
Step 4. On the “Choose routing policy’ page, select the link “Switch to wizard” and then choose the “Simple Routing” box and click “Next”:
Step 5. Now choose “Define simple record” and then enter the record details:
Domain: domain or subdomain name to route the traffic to.
Record type: DNS type of the record.
Value/Route traffic to:
Choose “Apelativo to Application and Classic Load Balancer”
Choose the region where the load balancer is deployed
Choose the load balancer address and hit “Define simple record”.
On the next page, click on the “Create records” button.
Do the same steps for another domain name and verify the above record on the “Configure Records” page.
Test the Setup
To verify the above procedure, on a web browser, enter the DNS name of the load balancer along with the hostnames:
Conclusion
We have finally made the way to host-based routing on the AWS application load balancer. Try to do this lab yourself and also try to configure the Application Load balancer with path-based routing.
Potremmo richiedere che i cookie siano attivi sul tuo dispositivo. Utilizziamo i cookie per farci sapere quando visitate i nostri siti web, come interagite con noi, per arricchire la vostra esperienza utente e per personalizzare il vostro rapporto con il nostro sito web.
Clicca sulle diverse rubriche delle categorie per saperne di più. Puoi anche modificare alcune delle tue preferenze. Tieni presente che il blocco di alcuni tipi di cookie potrebbe influire sulla tua esperienza sui nostri siti Web e sui servizi che siamo in grado di offrire.
Cookie essenziali del sito Web
Questi cookie sono strettamente necessari per fornirvi i servizi disponibili attraverso il nostro sito web e per utilizzare alcune delle sue caratteristiche.
Poiché questi cookie sono strettamente necessari per fornire il sito web, rifiutarli avrà un impatto come il nostro sito funziona. È sempre possibile bloccare o eliminare i cookie cambiando le impostazioni del browser e bloccando forzatamente tutti i cookie di questo sito. Ma questo ti chiederà sempre di accettare/rifiutare i cookie quando rivisiti il nostro sito.
Rispettiamo pienamente se si desidera rifiutare i cookie, ma per evitare di chiedervi gentilmente più e più volte di permettere di memorizzare i cookie per questo. L’utente è libero di rinunciare in qualsiasi momento o optare per altri cookie per ottenere un’esperienza migliore. Se rifiuti i cookie, rimuoveremo tutti i cookie impostati nel nostro dominio.
Vi forniamo un elenco dei cookie memorizzati sul vostro computer nel nostro dominio in modo che possiate controllare cosa abbiamo memorizzato. Per motivi di sicurezza non siamo in grado di mostrare o modificare i cookie di altri domini. Puoi controllarli nelle impostazioni di sicurezza del tuo browser.
Cookie di Google Analytics
Questi cookie raccolgono informazioni che vengono utilizzate sia in forma aggregata per aiutarci a capire come viene utilizzato il nostro sito web o quanto sono efficaci le nostre campagne di marketing, o per aiutarci a personalizzare il nostro sito web e l'applicazione per voi al fine di migliorare la vostra esperienza.
Se non vuoi che tracciamo la tua visita al nostro sito puoi disabilitare il tracciamento nel tuo browser qui:
Altri servizi esterni
Utilizziamo anche diversi servizi esterni come Google Webfonts, Google Maps e fornitori esterni di video. Poiché questi fornitori possono raccogliere dati personali come il tuo indirizzo IP, ti permettiamo di bloccarli qui. Si prega di notare che questo potrebbe ridurre notevolmente la funzionalità e l’aspetto del nostro sito. Le modifiche avranno effetto una volta ricaricata la pagina.
Google Fonts:
Impostazioni Google di Enfold:
Cerca impostazioni:
Incorporazione di video Vimeo e Youtube:
Altri cookies
Sono necessari anche i seguenti cookie - Puoi scegliere se permetterli:
Informativa sulla privacy
Puoi leggere i nostri cookie e le nostre impostazioni sulla privacy in dettaglio nella nostra pagina sulla privacy.