Hi, I've just upgraded from f40 to f42 and noticed /usr/bin/script is no longer part of util-linux. Where can I find it?
It also seems the typescript package is completely different, so that's not it, lol.
Thanks, Alex
I've just upgraded from f40 to f42 and noticed /usr/bin/script is no longer part of util-linux. Where can I find it?
It also seems the typescript package is completely different, so that's not it, lol.
Of course, a few minutes after I posted this, I figured it out.
/usr/bin/script is now in util-linux-script.
Thanks, Alex
On 28 Apr 2025, at 20:42, Alex mysqlstudent@gmail.com wrote:
Of course, a few minutes after I posted this, I figured it out.
/usr/bin/script is now in util-linux-script.
A nice trick is that dnf can install given the path to a program.
dnf install /usr/bin/script
Barry
On Mon, 2025-04-28 at 21:33 +0100, Barry wrote:
On 28 Apr 2025, at 20:42, Alex mysqlstudent@gmail.com wrote:
Of course, a few minutes after I posted this, I figured it out.
/usr/bin/script is now in util-linux-script.
A nice trick is that dnf can install given the path to a program.
dnf install /usr/bin/script
I never knew this. It can also remove it:
# dnf remove /usr/bin/script
will remove the corresponding package.
poc