awk: get log data part by part – Ubuntu
the log file is Oct 01 [time] a Oct 02 [time] b Oct 03 [time] c . . . Oct 04 [time] d Oct 05 [time] e Oct 06 [time] f . . . Oct 28 [time] g Oct 29…
the log file is Oct 01 [time] a Oct 02 [time] b Oct 03 [time] c . . . Oct 04 [time] d Oct 05 [time] e Oct 06 [time] f . . . Oct 28 [time] g Oct 29…
I was trying to run a flutter app on Ubuntu 22.04 LTS. Everything was working fine. But, today this problem came up while running the app. The Flutter SDK fails to build the app throwing the below error. /snap/flutter/130/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/../../../../lib/x86_64-linux-gnu/libc.so.6: version…
Virtual Host not working i created a virtual host in nginx ubuntu for example.com but when i go to example.com it shows the original example.com This a virtual host file /etc/nginx/sites-enabled/example.com server { listen 80; listen [::]:80; server_name example.com; root…
I'm new with linux I'm trying to get logs between two dates with gawk. this is my log Oct 07 11:00:33 abcd Oct 08 12:00:33 abcd Oct 09 14:00:33 abcd Oct 10 21:00:33 abcd I can do it when both…
have a problem with authorization in clickhouse, my os Ubuntu 18.04. I can connect with clickhouse-client. clickhouse-client --user=dev --password=dev123 <jemalloc>: Number of CPUs detected is not deterministic. Per-CPU arena disabled. ClickHouse client version 22.8.5.29 (official build). Connecting to localhost:9000 as…
I am unable to access github at all from the command line on a newly installed Ubuntu server. Pinging and curling github fails but works fine for other hosts. OS: Ubuntu 22.04.1 LTS Ping test # google ping -c3 google.com…
I use netstat to see what ports are listening.The vncserver is running.,but listen on localhost,I want to make it listen on public ip ,how to do that?
After migrating our build server's OS to the latest Ubuntu LTS (ubuntu:jammy) I quickly run into GLIBC incompatibility issue with the latest Debian (debian:bullseye) used in the latest official pre-built Jenkins containers (jenkins/jenkins:jdk17), a problem already described here. This is…
I had already "rm" a file called "mongod.conf" in my user local folder. However, I could still find it by using "locate", while it was not there anymore by using "ls -al". I had made sure there were no mongodb…
I want to list all the files having e as the nth character in their name in the current directory. I tried this, but it's not working: find -regextype posix-egrep -regex '^./[e]{5}.txt$'