Concrete CMS

Web site: www.concretecms.com Category: Network Subcategory: Content Management System Platform: Cross-platform License: MIT Interface: Web-interface Wikipedia: Concrete CMS First release: 2008 Concrete CMS – a free and open-source content management system (CMS) written in PHP, using a MySQL database. It allows content to be edited directly on the page, which makes it particularly user-friendly for ... Read more

Source

Smeagol

Web site: github.com/journeyman-cc/smeagol Category: Network Subcategory: Wiki Platform: Cross-platform License: GNU GPL Interface: Web-interface Wikipedia: First release: 2014 Smeagol – a simple Wiki engine inspired by Gollum. Gollum is a Wiki engine written in Ruby that uses several simple text formats, including Markdown, and that uses Git to provide versioning and backups. Smeagol is a ... Read more

Source

Ubuntu 24.04.1 LTS installation

ubuntu 24.04.1 lts

Ubuntu is a Live Linux distribution based on Debian, with the option of installing to a hard drive. The distribution is sponsored by Canonical and the Ubuntu Foundation, and the first version was released in 2004.

This installation of Ubuntu is my third installation of this system. I did my first installation of Ubuntu 10.04 LTS in 2010 and the second, Ubuntu 20.04 LTS in 2020. A little has changed since then, so I decided to do another, third installation of this popular Linux distribution.

For this installation I used the Ubuntu 24.04.1 LTS ISO media, I installed it on a virtual machine, to which I gave 25 GB of disk space, 2 processor cores and 4 GB of RAM.

The live media started in BIOS mode no longer has the Isolinux bootloader (as it was in older versions), but is equipped with GRUB, which boots machines with UEFI or BIOS motherboard.

After starting the graphics server, you first have the opportunity to configure the system according to your needs.
start installation

installation step 2

choose language

In the next step you can select the type of Internet connection or no connection at all (offline installation).

connect to the internet

Now you can install Ubuntu, or close the setup window and go to the Ubuntu desktop in live mode.

installation or live system

If you have chosen to install, in the next step select the type of installation:
– Interactive – recommended for novice users and new (first) installations
– Automated – allows you to use the autoinstall.yaml file, which will install Ubuntu according to the saved settings of previous installations.

installation mode

Now choose the programs that you want to install with your system:
– Default selection – just a few basic applications, ideal for configuring your system after the first boot from the disk
– Extended selection – if you want to install Ubuntu with a set of additional applications

package secection

You can also install proprietary drivers from third-party vendors and support for additional multimedia formats.

proprietary packages

The next step allows you to divide the disk, allocate partitions for Ubuntu installation in manual or automatic mode. Advanced features allow you to use LVM (Logical Volume Manager – an operating system mechanism for managing storage space), encryption or the ZFS file system.

disk partitioning

disk partitioning options

The next tasks involve configuring the target user, selecting the time zone and confirming the settings.

user configuration

time zone

confirmation

Installing Ubuntu 24.04.1 LTS on my virtual machine took about 20 minutes.

installation in progress

the end of installation ubuntu

After closing the live system, booting Ubuntu from the hard drive, and logging in, the system configurator was automatically launched.

welcome to ubuntu

One of the more interesting Ubuntu options is Ubuntu Pro activation, which extends technical support (updates) from 5 to 10 years. This option is free for up to 5 machines.

ubuntu pro

If you want to help the Ubuntu team improve it by sending data from your system – select the first option. Otherwise, use the second option.

send report

Closing the configuration window will take you to the desktop.
You can also launch the Software Center (app store) to install additional software.

end of post-installation configuration

The graphical system updater did not start, so I assumed there were no updates.
Having old habits and trusting only myself, I checked for updates (theoretically, the packages were updated during the system installation) – there was one update available, which you can perform, just like on Debian-derived systems:
sudo apt update && sudo apt upgrade

package-upgrading

At this point I’m done with Ubuntu.

Summary

Ubuntu uses a slightly modified GNOME desktop by default. Personally, I think it looks like something between GNOME Shell and GNOME Flashback, with the Shell session preserved, but with slightly better functionality with Flashback.
The Live system uses about 1.4 GB of RAM at startup, which I consider a good result, but not the best.

After installing and booting from disk, Ubuntu without additional applications and services uses about 1 GB of RAM, which I also consider a pretty good achievement.

However, considering that Ubuntu is not available for old 32-bit machines, and old 64-bit machines may not have enough power to handle Ubuntu, I conclude that Ubuntu is currently aimed only at newer generation computers with 64-bit processors.

Ubuntu still supports slightly older 64-bit machines equipped with BIOS, instead of UEFI, which allows the system to be started and installed on mid-range machines.

Installing Ubuntu on a computer with less than 4 GB of RAM is a mistake in my opinion.

Summing up the relatively quick (about 20 min.) installation of the system on the disk, its simplicity and additional options for more advanced users, updating packages during installation and choosing the minimal installation mode or with additional applications, I can safely say that I can still recommend Ubuntu LTS to beginner Linux users.

 
Ten post dostępny jest również w języku polskim: https://linuxiarze.pl/instalacja-ubuntu-24-04-1-lts/

Beamrise

Web site: beamrise.com (not active) Category: Network Subcategory: Web browsers Platform: Windows License: Freeware Interface: GUI Wikipedia: First release: unknown Beamrise – a freeware, abandoned, Chromium-based web browser for Windows users. It is a “Next-generation Internet social browser that unites browsing and chatting. Beamrise goes one step further and brings your favorite messenger with you ... Read more

Source

Rings of Power

Web site: Category: Games Sub-Category: RPG Platform: Sega Genesis License: Proprietary Interface: GUI Wikipedia: Rings of Power First release: 1992 Rings of Power – a console role-playing game (RPG) released in 1991 for the Sega Mega Drive game console. It was developed by Naughty Dog and distributed by Electronic Arts. It was one of the ... Read more

Source

Frogatto

Web site: frogatto.com Category: Games Sub-Category: Platform Platform: Linux, OS X, Windows License: CC-BY 3.0/CC-BY-NC-SA 4.0 Interface: GUI Wikipedia: First release: 2010 Frogatto – an action-adventure game, starring a certain quixotic frog. Frogatto is a platformer in the style of old arcade, Sega and Nintendo games. The world is viewed as a cross-section seen from ... Read more

Source

TOP 10 Linux commands 2024

adduser

In the next list of the 10 Most… I have listed the 10 most popular commands used in Linux systems (and not only) in 2024, published as part of the Admin Tips series on the Linuxiarze.pl portal

The list takes into account the views of posts from the Admin Tips category and their comments.

1. fdisk
fdisk
fdisk is a Linux command used to create and manipulate the partition table of a disk. It is used to view, create, delete, change, resize, copy, and move partitions on a hard disk using a dialog interface.
Admin Tips: fdisk

2. fsck
fsck
fsck is used to examine and optionally repair one or more Linux file systems. A file system can be a device name (e.g. /dev/hdc1, /dev/sdb2), a mount point (e.g. /, /usr, /home), or a file system label or UUID (e.g. UUID=8868abf6-88c5-4a83-98b8-bfc24057f7bd or LABEL=root). In order to shorten the total time needed to check all file systems, the fsck program will attempt to check file systems located on physically different disk drives in parallel.
Admin Tips: fsck

3. dmesg
dmesg
dmesg (ang. diagnostic message) – a Unix family system command that displays the kernel ring buffer. It allows, among other things, to display system boot messages. dmesg is used to check or control the kernel ring buffer. The default action is to display all messages from the kernel ring buffer.
Admin Tips: dmesg

4. dd
dd
dd is a powerful and useful tool available in Unix and Unix-like operating systems. Its purpose is to convert and copy files. In Unix and Unix-like operating systems such as Linux, almost everything is treated as a file, even block devices: this makes dd useful for things like cloning disks or wiping data. The dd utility is available out-of-the-box in most, if not all, Linux distributions.
Admin Tips: dd

5. sed
sed
Sed is a text filtering/transforming editor. The sed program reads data from specified files or from standard input if no files are specified, makes edits according to a list of commands, and writes the results to standard output.
Admin Tips: sed

6. unrar
unrar
RAR is one of the most popular tools for creating and unpacking compressed archive files (.rar). RAR is available for free on Windows operating systems to handle compressed files, but unfortunately the rar tool is not installed by default on Linux systems.
Admin Tips: unrar

7. ifconfig
ifconfig
The ifconfig command is used to configure or view the configuration of a network interface. On some Linux systems, the ifconfig command has been replaced by the ip command.
ifconfig stands for “interface configuration”.
Admin Tips: ifconfig

8. xargs
xargs
xargs is a tool that searches for files that meet the specified criteria and performs various actions on the files found. xargs reads from standard input a list of items separated by spaces (arguments containing them can be enclosed in single or double quotes, or spaces in arguments can be preceded by backslashes) or newlines.
Admin Tips: xargs

9. chroot
chroot
The chroot command in Linux/Unix is ​​used to change the root directory. Each process/command in Linux/Unix has a current working directory called the root directory. chroot changes the root directory of currently running processes, as well as child processes.
Admin Tips: chroot

10. adduser
adduser
The adduser package (in Debian and Ubuntu) provides 4 tools: adduser, addgroup, deluser and delgroup, we will deal with the first two. adduser creates new users and groups and adds existing users to an existing group.
Admin Tips: adduser

A full list of console commands available on the Linuxiarze.pl portal can be found in the Porady Admina category.

 
Ten post jest również dostępny w języku polskim: https://linuxiarze.pl/top-10-polecen-linux-2024/

Zed

Producent: zed.dev Typ: Edytory tekstu Przeznaczenie: szkoły, uczelnie, firmy, organizacje Licencja: AGPL, GPL, Apache Pobranie: github.com/zed-industries/zed/releases Platforma: Linux, OS X,

Źródło

Sparky news 2024/08

The 8th monthly Sparky project and donate report of the 2024: – Linux kernel updated up to 6.10.7, 6.6.48-LTS, 6.1.107-LTS & 5.15.165-LTS – Sparky semi-rolling 2024.08 & 2024.08 Special Editions released – added to repos: PeaZip Many thanks to all of you for supporting our open-source projects. Your donations help keeping them and us alive. Don’t forget to send a small tip in september too…

Source

MyNotex

Producent: sites.google.com/site/mynotex/ Typ: Notatki Przeznaczenie: szkoły, uczelnie, firmy, organizacje Licencja: GPL Pobranie: sites.google.com/site/mynotex/files Platforma: Linux Dokumentacja: FAQ: Forum: Wikipedia (en):

Źródło

Accessibility Toolbar