Linux News
Is There An App To Both Open And Change File Modification Times For Each File In A Folder?
I just want to set the proper publication dates for archived files I collect, so they show up as a time-line when I set modification fate as the sort order. I'll need to open each file in a directory to see the publication dates before changing their modification dates.
Using touch in bash is to slow and tedious.
Thanks for any tips!
Using touch in bash is to slow and tedious.
Thanks for any tips!
Categories: Software and Help
About Two-Thirds of the World’s Surface Now Android (or Linux) Dominated
Today we examine which countries have the least Linux adoption (% shown above) and which ones have close to 90% Linux penetration (mostly Android), based on July 2023 data from statCounter (here’s the spreadsheet with the chart)
Categories: General News
Eclipse on Linux-SUSE
Dear Sir/Mrs.
I raised that problem to the Eclipse organization.
I installed the Eclipse using the installer on a PC 86x64 with SUSE Enterprice High Performance Linux
The points I did not understand are:
1. Why I do not have a Desktop when I am logged as a user.
2. I set all the necessary permissions. Why the list of application does not contain the Eclipse when I am logged as a regular user.
I would like to update you with new technology that may interest you. Automatic parallelization also on multiple distributed computing system/
Enclosed please find a non-confidential presentation.
Best regards,
Yehuda
I raised that problem to the Eclipse organization.
I installed the Eclipse using the installer on a PC 86x64 with SUSE Enterprice High Performance Linux
The points I did not understand are:
1. Why I do not have a Desktop when I am logged as a user.
2. I set all the necessary permissions. Why the list of application does not contain the Eclipse when I am logged as a regular user.
I would like to update you with new technology that may interest you. Automatic parallelization also on multiple distributed computing system/
Enclosed please find a non-confidential presentation.
Best regards,
Yehuda
Categories: Software and Help
LXer: GNOME 45: Best New Features and Improvements
Published at LXer:
Explore the revamped GNOME 45 desktop environment and discover new features, customizations, and performance upgrades.
Read More...
Explore the revamped GNOME 45 desktop environment and discover new features, customizations, and performance upgrades.
Read More...
Categories: Software and Help
GNOME 45: Best New Features and Improvements
Explore the revamped GNOME 45 desktop environment and discover new features, customizations, and performance upgrades.
Categories: General News
How to use qemu to simulate a Full OS and debug with gdb?
Hello guys,
I am new to gdb and debug.I'd like to ask you sevral questions about debug linux .
I want to debug drivers like blueZ on linux.I build a costum linux kernel myself and get a vmlinux file.Then,I build a busybox.I can debug by using qemu.But only for the kernel.There is no any drivers and softwares.And I also try to use qemu to run ubuntu,but I cannot get the symbol file.Is there any ideas?
I am new to gdb and debug.I'd like to ask you sevral questions about debug linux .
I want to debug drivers like blueZ on linux.I build a costum linux kernel myself and get a vmlinux file.Then,I build a busybox.I can debug by using qemu.But only for the kernel.There is no any drivers and softwares.And I also try to use qemu to run ubuntu,but I cannot get the symbol file.Is there any ideas?
Categories: Software and Help
How to Install PowerDNS and PowerDNS-Admin on Ubuntu 22.04
PowerDNS is a free and open-source authoritative nameserver written in C++. It supports several databases such as MySQL, MariaDB, PostgreSQL, and Oracle to store zone files and records. In this post, we will explain how to install PowerDNS and PowerDNS admin on Ubuntu 22.04 server.
Categories: Software and Help
LXer: How to Install VS Code on Debian 12: A Step-by-Step Guide
Published at LXer:
Learn how to install Visual Studio Code on Debian 12 effortlessly with our comprehensive guide. Enhance your coding experience today!
Read More...
Learn how to install Visual Studio Code on Debian 12 effortlessly with our comprehensive guide. Enhance your coding experience today!
Read More...
Categories: Software and Help
How to Install VS Code on Debian 12: A Step-by-Step Guide
Learn how to install Visual Studio Code on Debian 12 effortlessly with our comprehensive guide. Enhance your coding experience today!
Categories: General News
Can SDDM startup a bare Xorg server alongside a wayland session?
So I'm intersted in a setup where I use wayland for my daily driving, but I have a bare x server in another VT that I can launch applications in (I'm aware of xwayland, this is actually so I can allow a couple applications to get past a few wayland/nvidia driver limitations).
So I'd like to know if SDDM is capable of doing this. I *could* start the X server on my own but i'd rather it be automated with SDDM when I login and so SDDM does the job of killing it when I log out.
So I'd like to know if SDDM is capable of doing this. I *could* start the X server on my own but i'd rather it be automated with SDDM when I login and so SDDM does the job of killing it when I log out.
Categories: Software and Help
LXer: Why Kolektiva.social Is a Cautionary Tale for Activists Using Mastodon
Published at LXer:
A Mastodon server that focuses on left-leaning political activists, recently had an unencrypted copy of its database confiscated by the FBI.
Read More...
A Mastodon server that focuses on left-leaning political activists, recently had an unencrypted copy of its database confiscated by the FBI.
Read More...
Categories: Software and Help
Why Kolektiva.social Is a Cautionary Tale for Activists Using Mastodon
A Mastodon server that focuses on left-leaning political activists, recently had an unencrypted copy of its database confiscated by the FBI.
Categories: General News
genpowerd is not that well supported; nut appears to be more active.
Hi, it's me, I'm back.
genpowerd versus nut
genpowerd was last updated in 2014; nut was updated last month. (The slackbuild.org version of nut has not quite kept up.)
I'd be happy to have a number of backup power supply hooks that were called by rc.0, rc.6, and rc.M that would DTRT.
For example, on a Slackware64 14.2 system, I have modified a bit of both /etc/rc.d/rc.0 AND /etc/rc.d/rc.6 to be...
Code: # This is to ensure all processes have completed on SMP machines:
wait
if [ -x /sbin/genpowerd ]; then
# See if this is a powerfail situation:
if /bin/egrep -q "FAIL|SCRAM" /etc/upsstatus 2> /dev/null ; then
# Signal UPS to shut off the inverter:
/sbin/genpowerd -k
if [ ! $? = 0 ]; then
echo
echo "There was an error signaling the UPS."
echo "Perhaps you need to edit /etc/genpowerd.conf to configure"
echo "the serial line and UPS type."
# Wasting 15 seconds of precious power:
/bin/sleep 15
fi
fi
fi
if [ -e /etc/killpower ]; then
/etc/rc.d/rc.ups shutdown
sleep 120
echo "Well, that didn't work as expected"
fi I think it would be a good idea to replace the if [ -x /sbin/genpowerd ]; then block to a call to a hook script if said script exists and is executable that does the right thing depending upon your UPS handler. The default being the genpowerd block being already there.
genpowerd versus nut
genpowerd was last updated in 2014; nut was updated last month. (The slackbuild.org version of nut has not quite kept up.)
I'd be happy to have a number of backup power supply hooks that were called by rc.0, rc.6, and rc.M that would DTRT.
For example, on a Slackware64 14.2 system, I have modified a bit of both /etc/rc.d/rc.0 AND /etc/rc.d/rc.6 to be...
Code: # This is to ensure all processes have completed on SMP machines:
wait
if [ -x /sbin/genpowerd ]; then
# See if this is a powerfail situation:
if /bin/egrep -q "FAIL|SCRAM" /etc/upsstatus 2> /dev/null ; then
# Signal UPS to shut off the inverter:
/sbin/genpowerd -k
if [ ! $? = 0 ]; then
echo
echo "There was an error signaling the UPS."
echo "Perhaps you need to edit /etc/genpowerd.conf to configure"
echo "the serial line and UPS type."
# Wasting 15 seconds of precious power:
/bin/sleep 15
fi
fi
fi
if [ -e /etc/killpower ]; then
/etc/rc.d/rc.ups shutdown
sleep 120
echo "Well, that didn't work as expected"
fi I think it would be a good idea to replace the if [ -x /sbin/genpowerd ]; then block to a call to a hook script if said script exists and is executable that does the right thing depending upon your UPS handler. The default being the genpowerd block being already there.
Categories: Software and Help
next-20230728: linux-next
Version:next-20230728 (linux-next)
Released:2023-07-28
Categories: Linux Kernel
LXer: How to Install Neovim on Pop!_OS
Published at LXer:
Follow our step-by-step instructions for installing Neovim on Pop!_OS using a variety of methods.
Read More...
Follow our step-by-step instructions for installing Neovim on Pop!_OS using a variety of methods.
Read More...
Categories: Software and Help
How to Install Neovim on Pop!_OS
Follow our step-by-step instructions for installing Neovim on Pop!_OS using a variety of methods.
Categories: General News