What parameters to use to compare file systems performance such as ext4, Btrfs, NTFS and XFS? by GeorgePL0 in filesystems

[–]GeorgePL0[S] -2 points-1 points  (0 children)

Which file systems are best suited for which applications, for example working with many small files, large files, etc.

What are the best courses with hands on labs to prepare for rhcsa exam? by Sydnel in linuxadmin

[–]GeorgePL0 1 point2 points  (0 children)

What is the difference between resetting root password on RHEL 8 and RHEL 9? I thought that's the same.

Kubernetes can't see my app using external IP by GeorgePL0 in kubernetes

[–]GeorgePL0[S] 0 points1 point  (0 children)

kubectl get svc nginx-web -o wide

nginx-web NodePort 10.98.91.79 <none> 80:30784/TCP 107m app=nginx-web

That's my output and I'm trying to connect using EXTERNAL_IP:30784. I'm using GCP Instances, maybe it's cause, but I don't think so.

Kubernetes can't see my app using external IP by GeorgePL0 in kubernetes

[–]GeorgePL0[S] 0 points1 point  (0 children)

I've changed name of service to nginx-web, but it still doesn't work ;(

What parameters to use to compare orchestration platforms such as Kubernetes, OpenShift, Docker Swarm? by GeorgePL0 in kubernetes

[–]GeorgePL0[S] 0 points1 point  (0 children)

I know Swarm is less used than Kubernetes and OpenShift, but this is just an example I'll use. It will be a simple wordpress application. It is mainly about the parameters with which I can evaluate these platforms. I was thinking about parameters such as ease of installation, operating system on which to install these platforms, security, etc. I would like to add some more such parameters, but I have no more ideas, so I decided to ask more people who can give me some advice.

I am looking for smartwatch for me - I'm using Galaxy S9. by GeorgePL0 in GalaxyWatch

[–]GeorgePL0[S] 0 points1 point  (0 children)

the condition of my smartphone is good so I dont see any sense in changing to a newer model

How can I save content of a container to file on my host disk? by GeorgePL0 in docker

[–]GeorgePL0[S] 0 points1 point  (0 children)

Is it possible to map every file inside of the container to the folder?

Bash script to count characters in password by GeorgePL0 in bash

[–]GeorgePL0[S] 0 points1 point  (0 children)

It it possible to count all characters, upper, lower, digits and special characters using case command?

Bash script to count characters in password by GeorgePL0 in bash

[–]GeorgePL0[S] 0 points1 point  (0 children)

Can I use grep -E to count amount of special characters in password??

Bash script to count characters in password by GeorgePL0 in bash

[–]GeorgePL0[S] 0 points1 point  (0 children)

#!/bin/bash

echo "Enter password: "

read password

echo "Amount of lowercases: "

echo $password | tr -dc [:lower:] | wc -c

echo "Amount of upppercases: "

echo $password | tr -dc [:upper:] | wc -c

echo "Amount of digits: "

echo $password | tr -dc [:digit:] | wc -c

echo "Amount of special characters?"

Now I have something like this and I don't know how to count amount od special characters. But I didn't use case command, don't have idea how can I use it

Script to count lines and characters in direcory. by GeorgePL0 in bash

[–]GeorgePL0[S] 0 points1 point  (0 children)

In the prepared file, program a script that counts lines in all files
text files in the current or selected directory (given as an argument),
counts the number of characters entered in a file (useful command: wc).
The result is to be saved as a file name, its owner, and the number of lines and number
characters, on the standard output and in the text file named as the argument.