Linux News
LXer: How to Install Zeek Network Security Monitoring Tool on Ubuntu 22.04
Zeek is a free, open-source, and worlds leading security monitoring tool used as a network intrusion detection system and network traffic analyzer. This post will show you how to install the Zeek network security tool on Ubuntu 22.04.
Read More...
How to Install Zeek Network Security Monitoring Tool on Ubuntu 22.04
WireGuard RTNETLINK answers: Operation not supported
Code: Starting ch7-mullvad...
[#] ip link add ch7-mullvad type wireguard
[#] wg setconf ch7-mullvad /dev/fd/63
[#] ip -4 address add <addr>/32 dev ch7-mullvad
[#] ip link set mtu 1420 up dev ch7-mullvad
[#] resolvconf -a ch7-mullvad -m 0 -x
[#] wg set ch7-mullvad fwmark 51820
[#] ip -4 route add 0.0.0.0/0 dev ch7-mullvad table 51820
[#] ip -4 rule add not fwmark 51820 table 51820
RTNETLINK answers: Operation not supported
[#] resolvconf -d ch7-mullvad -f
[#] ip link delete dev ch7-mullvad Code: -> % lsmod | grep wireguard
wireguard 73728 0
libchacha20poly1305 16384 1 wireguard
ip6_udp_tunnel 16384 1 wireguard
udp_tunnel 28672 1 wireguard
libcurve25519_generic 40960 1 wireguard
ipv6 462848 39 wireguard Nothing special within the config file, no ipv6, no hooks.
ubuntu-unity 22.10
Recently switched from ubuntu 22.04 with gnome as DE to ubuntu-unity 22.04.1. After running ubuntu-unity 22.04.1 then decided to upgrade to ubuntu-unity 22.10. I used software updater to do the update.Now that I'm running ubuntu-unity 22.10 I have found that sometimes the gnome file manager opens up files as well as nemo. Looked in synaptic and found that their is gnome desktop environment present, should I still have gnome present even though I'm running unity as my DE. And if not how can I safely remove the gnome DE or at least get rid of gnome file manager.
Thanks Jim C.
Xfce 4.20 Desktop Environment Will Bring Wayland Support
Work on Xfce 4.20 kicked off earlier this month with the release of libxfce4windowing, a new dependency for the Xfce desktop environment. Learn more here.
The post Xfce 4.20 Desktop Environment Will Bring Wayland Support appeared first on Linux Today.
[SOLVED] how do i sequentially run multiple awk/bash scripts
i have several bash scripts that each call awk.
from the command line, instead of doing
./script1.awk
./script2.awk
./script3.awk
i would like to do something like
./(script1.awk script2.awk script3.awk)
that of course doesn't work, but how can i do this?
You Can Now Get Red Hat Enterprise Linux on the Oracle Cloud
Despite their past differences, Red Hat and Oracle have developed a partnership, which now has RHEL distributions available on Oracle Cloud Infrastructure.
The post You Can Now Get Red Hat Enterprise Linux on the Oracle Cloud appeared first on Linux Today.
LXer: How to Install DokuWiki on Debian 11
DokuWiki is an open-source wiki application written in PHP programming language. It is mainly aimed at creating documentation of any kind. All data is stored in plain text; hence no database server is required.
Read More...
How to Install DokuWiki on Debian 11
System76 Shares Details on Its Rust-Based COSMIC Desktop
The upcoming COSMIC desktop environment will use XWayland for app compatibility and offer features like dynamic rendering. Learn more here.
The post System76 Shares Details on Its Rust-Based COSMIC Desktop appeared first on Linux Today.
elementary OS 7 “Horus” Released: This is What’s New
Check out the release highlights of elementary OS 7 “Horus,” which brings a revamped installer, App Center updates, UI tweaks, and more.
The post elementary OS 7 “Horus” Released: This is What’s New appeared first on Linux Today.
Clonezilla can't mount drive
The laptop drive we are trying to clone is a Windows 10 Home NTFS file system. I've tried checking the target external drive with gparted, reformatting it & trying different USB ports but none of that has worked.
Any help would be greatly appreciated. Thank you for your time.
LXer: Linux Mint 21.2 �Victoria� Is Slated for Release on June 2023, Here�s What to Expect
The Linux Mint developers shared today some details on the next major release of their Ubuntu-based distribution, Linux Mint 21.2, which is slated for release this summer with new features and improvements.
Read More...
Linux Mint 21.2 “Victoria” Is Slated for Release on June 2023, Here’s What to Expect
Linux Mint 21.2 ‘Victoria’ Releases June 2023
Dubbed “Victoria,” Linux Mint 21.2 will arrive at the end of June 2023, supporting the Cinnamon, Xfce, and MATE desktop environments.
The post Linux Mint 21.2 ‘Victoria’ Releases June 2023 appeared first on Linux Today.
[SOLVED] Deleting Flatpaks in LM 21.1 (Cinnamon)
Ray 2.2 Boosts Machine Learning Observability, ChatGPT Scalability
Ray 2.2 is an open-source machine learning and AI technology that will help enable the next generation of applications.
The post Ray 2.2 Boosts Machine Learning Observability, ChatGPT Scalability appeared first on Linux Today.
LXer: GNOME 44 Alpha is Out, Shaping Up to Be A Moderate Release
First testing images of the upcoming GNOME 44 release are now available. Here�s a quick look at the new features.
Read More...
GNOME 44 Alpha is Out, Shaping Up to Be A Moderate Release
Stop printing when non-comment lines are reached
Code: ## FAML [ASMB] keyword,keyword
## Some text
## END OF FAML [ASMB] I have encountered a problem that occurs when "## END OF FAML [ASMB]" is not reached. I want to stop as soon as lines not starting with comment characters "##" are encountered.
For instance, I want to stop upon reaching "Some code" even though it did not find
"## END OF FAML [ASMB]" because the line does not start with "##".
Code: ## FAML [ASMB] keyword,keyword
## Some text
## End OF FAL
Some code This is the implementation
Code: spc='[[:space:]]*'
gph="[[:graph:]]+"
cmt='\/\/'
ebl='\['
ebr='\]'
local pn_ere="^[[:space:]]*([#;!]+|@c|${cmt})[[:space:]]+"
local kys="(([^,]+)(,[^,]+)*)?"
nfaml=${faml:-"[[:graph:]]+"}
nasmb=${asmb:-"[[:graph:]]+"}
beg_ere="${pn_ere}${nfaml} ${ebl}${nasmb}${ebr}${spc}${kys}$"
end_ere="${pn_ere}END OF ${nfaml} ${ebl}${nasmb}${ebr}${spc}$"
sed -E -n "/$beg_ere/,/$end_ere/ {
/$end_ere/z; s/$pn_ere// ; p
}" "$filename"