How To Install newlisp on Fedora 34
Introduction
In this tutorial we learn how to install newlisp
on Fedora 34.
What is newlisp
Lisp-like general purpose scripting language. newlisp is well suited for applications in AI, web search. It also can be used for embedded systems applications.
We can use yum
or dnf
to install newlisp
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install newlisp.
Install newlisp on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install newlisp
using dnf
by running the following command:
sudo dnf -y install newlisp
Install newlisp on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install newlisp
using yum
by running the following command:
sudo yum -y install newlisp
How To Uninstall newlisp on Fedora 34
To uninstall only the newlisp
package we can use the following command:
sudo dnf remove newlisp
newlisp Package Contents on Fedora 34
/usr/bin/newlisp
/usr/bin/newlispdoc
/usr/lib/.build-id
/usr/lib/.build-id/18
/usr/lib/.build-id/18/3d08b210d0f17f559cd4020688a9ffe66c6beb
/usr/share/doc/newlisp
/usr/share/doc/newlisp/COPYING
/usr/share/doc/newlisp/CREDITS
/usr/share/doc/newlisp/CodePatterns.html
/usr/share/doc/newlisp/manual_frame.html
/usr/share/doc/newlisp/newLISP-10.7.5-Release.html
/usr/share/doc/newlisp/newLISPdoc.html
/usr/share/doc/newlisp/newlisp_index.html
/usr/share/doc/newlisp/newlisp_manual.html
/usr/share/man/man1/newlisp.1.gz
/usr/share/man/man1/newlispdoc.1.gz
/usr/share/newlisp
/usr/share/newlisp/modules/canvas.lsp
/usr/share/newlisp/modules/cgi.lsp
/usr/share/newlisp/modules/crypto.lsp
/usr/share/newlisp/modules/ftp.lsp
/usr/share/newlisp/modules/getopts.lsp
/usr/share/newlisp/modules/gsl.lsp
/usr/share/newlisp/modules/infix.lsp
/usr/share/newlisp/modules/mysql.lsp
/usr/share/newlisp/modules/odbc.lsp
/usr/share/newlisp/modules/plot.lsp
/usr/share/newlisp/modules/pop3.lsp
/usr/share/newlisp/modules/postgres.lsp
/usr/share/newlisp/modules/postscript.lsp
/usr/share/newlisp/modules/smtp.lsp
/usr/share/newlisp/modules/smtpx.lsp
/usr/share/newlisp/modules/sqlite3.lsp
/usr/share/newlisp/modules/stat.lsp
/usr/share/newlisp/modules/unix.lsp
/usr/share/newlisp/modules/xmlrpc-client.lsp
/usr/share/newlisp/modules/zlib.lsp
/usr/share/newlisp/util/newlisp.vim
/usr/share/newlisp/util/syntax.cgi
References
Summary
In this tutorial we learn how to install newlisp
on Fedora 34 using yum and dnf.