from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

67218

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
rate this article:
current rating: average rating: 1.7 (18 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2024-04-23
argyllcms - 3.2.0
Ebuild name:

media-gfx/argyllcms-3.2.0

Description

Open source, ICC compatible color management system

Added to portage

2024-04-23

awscli - 1.32.89
Ebuild name:

app-admin/awscli-1.32.89

Description

Universal Command Line Environment for AWS

Added to portage

2024-04-23

bitstring - 4.2.0
Ebuild name:

dev-python/bitstring-4.2.0

Description

A pure Python module for creation and analysis of binary data

Added to portage

2024-04-23

boost - 1.85.0
Ebuild name:

dev-libs/boost-1.85.0

Description

Boost Libraries for C++

Added to portage

2024-04-23

boto3 - 1.34.89
Ebuild name:

dev-python/boto3-1.34.89

Description

The AWS SDK for Python

Added to portage

2024-04-23

botocore - 1.34.89
Ebuild name:

dev-python/botocore-1.34.89

Description

Low-level, data-driven core of boto 3

Added to portage

2024-04-23

cadabra - 2.4.5.7
Ebuild name:

sci-mathematics/cadabra-2.4.5.7

Description

Field-theory motivated approach to computer algebra

Added to portage

2024-04-23

catch - 3.5.4
Ebuild name:

dev-cpp/catch-3.5.4

Description

Modern C++ header-only framework for unit-tests

Added to portage

2024-04-23

csharp-language-server - 0.12.0
Ebuild name:

dev-dotnet/csharp-language-server-0.12.0

Description

Roslyn-based LSP language server for C

Added to portage

2024-04-23

devcontainer - 0.59.1
Ebuild name:

app-containers/devcontainer-0.59.1

Description

Reference implementation of the Development Containers specifica

Added to portage

2024-04-23

discord - 0.0.51
Ebuild name:

net-im/discord-0.0.51

Description

All-in-one voice and text chat for gamers

Added to portage

2024-04-23

fastfetch - 2.10.1
Ebuild name:

app-misc/fastfetch-2.10.1

Description

Fast neofetch-like system information tool

Added to portage

2024-04-23

filelight - 23.08.5-r1
Ebuild name:

kde-apps/filelight-23.08.5-r1

Description

Visualise disk usage with interactive map of concentric, segmented ri

Added to portage

2024-04-23

firefox - 125.0.2
Ebuild name:

www-client/firefox-125.0.2

Description

Firefox Web Browser

Added to portage

2024-04-23

firefox-bin - 125.0.2
Ebuild name:

www-client/firefox-bin-125.0.2

Description

Firefox Web Browser

Added to portage

2024-04-23

fsautocomplete - 0.71.0
Ebuild name:

dev-dotnet/fsautocomplete-0.71.0

Description

F language server using the Language Server Protocol

Added to portage

2024-04-23

fvwm - 2.7.0-r4
Ebuild name:

x11-wm/fvwm-2.7.0-r4

Description

An extremely powerful ICCCM-compliant multiple virtual desktop window manager

Added to portage

2024-04-23

genkernel - 4.3.11
Ebuild name:

sys-kernel/genkernel-4.3.11

Description

Gentoo automatic kernel building scripts

Added to portage

2024-04-23

gfloat - 0.0.5
Ebuild name:

dev-python/gfloat-0.0.5

Description

Generic floating-point types in Python

Added to portage

2024-04-23

i2c-tools - 4.3-r1
Ebuild name:

sys-apps/i2c-tools-4.3-r1

Description

I2C tools for bus probing, chip dumping, EEPROM decoding, and more

Added to portage

2024-04-23

incus - 6.0.0-r1
Ebuild name:

app-containers/incus-6.0.0-r1

Description

Modern, secure and powerful system container and virtual machine mana

Added to portage

2024-04-23

indilib - 2.0.7
Ebuild name:

sci-libs/indilib-2.0.7

Description

INDI Astronomical Control Protocol library

Added to portage

2024-04-23

jupyterlab-server - 2.27.0
Ebuild name:

dev-python/jupyterlab-server-2.27.0

Description

Server components for JupyterLab and JupyterLab like applicatio

Added to portage

2024-04-23

kitty-shell-integration - 0.34.1-r1
Ebuild name:

x11-terms/kitty-shell-integration-0.34.1-r1

Description

Shell integration scripts for kitty, a GPU-based termin

Added to portage

2024-04-23

kstars - 3.7.0
Ebuild name:

sci-astronomy/kstars-3.7.0

Description

Desktop Planetarium

Added to portage

2024-04-23

kwin - 6.0.4.1
Ebuild name:

kde-plasma/kwin-6.0.4.1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2024-04-23

libetpan - 1.9.4-r2
Ebuild name:

net-libs/libetpan-1.9.4-r2

Description

A portable, efficient middleware for different kinds of mail access

Added to portage

2024-04-23

libical - 3.0.18
Ebuild name:

dev-libs/libical-3.0.18

Description

Implementation of basic iCAL protocols

Added to portage

2024-04-23

libquotient - 0.8.2
Ebuild name:

net-libs/libquotient-0.8.2

Description

Qt-based SDK to develop applications for Matrix

Added to portage

2024-04-23

libva-intel-media-driver - 24.2.1
Ebuild name:

media-libs/libva-intel-media-driver-24.2.1

Description

Intel Media Driver for VA-API (iHD)

Added to portage

2024-04-23

ml-dtypes - 0.3.2-r1
Ebuild name:

dev-python/ml-dtypes-0.3.2-r1

Description

A stand-alone implementation of several NumPy dtype extensions

Added to portage

2024-04-23

ml-dtypes - 0.4.0
Ebuild name:

dev-python/ml-dtypes-0.4.0

Description

A stand-alone implementation of several NumPy dtype extensions

Added to portage

2024-04-23

moodle - 4.2.7
Ebuild name:

www-apps/moodle-4.2.7

Description

The Moodle Course Management System

Added to portage

2024-04-23

moodle - 4.3.4
Ebuild name:

www-apps/moodle-4.3.4

Description

The Moodle Course Management System

Added to portage

2024-04-23

moodle - 4.4
Ebuild name:

www-apps/moodle-4.4

Description

The Moodle Course Management System

Added to portage

2024-04-23

opensc - 0.25.1
Ebuild name:

dev-libs/opensc-0.25.1

Description

Libraries and applications to access smartcards

Added to portage

2024-04-23

pulseaudio-qt - 1.4.0-r2
Ebuild name:

media-libs/pulseaudio-qt-1.4.0-r2

Description

Qt bindings for libpulse

Added to portage

2024-04-23

pydantic-core - 2.18.2
Ebuild name:

dev-python/pydantic-core-2.18.2

Description

Core validation logic for pydantic written in Rust

Added to portage

2024-04-23

repology - 1.2.3
Ebuild name:

app-emacs/repology-1.2.3

Description

Repology API access via Emacs Lisp

Added to portage

2024-04-23

rst-linker - 2.5.0
Ebuild name:

dev-python/rst-linker-2.5.0

Description

Sphinx plugin to add links and timestamps to the changelog

Added to portage

2024-04-23

stellarsolver - 2.5-r1
Ebuild name:

sci-libs/stellarsolver-2.5-r1

Description

Cross-platform Sextractor and Astrometry.net-Based internal astrometr

Added to portage

2024-04-23

tatt - 0.11-r1
Ebuild name:

app-portage/tatt-0.11-r1

Description

Arch testing tool

Added to portage

2024-04-23

translate-toolkit - 3.13.0
Ebuild name:

dev-python/translate-toolkit-3.13.0

Description

Toolkit to convert between many translation formats

Added to portage

2024-04-23

urwid - 2.6.11
Ebuild name:

dev-python/urwid-2.6.11

Description

Curses-based user interface library for Python

Added to portage

2024-04-23

urwidtrees - 1.0.3-r2
Ebuild name:

dev-python/urwidtrees-1.0.3-r2

Description

Tree widgets for urwid

Added to portage

2024-04-23

uv - 0.1.36
Ebuild name:

dev-python/uv-0.1.36

Description

A Python package installer and resolver, written in Rust

Added to portage

2024-04-23

xboxdrv - 0.8.8_p20190118-r3
Ebuild name:

games-util/xboxdrv-0.8.8_p20190118-r3

Description

Userspace Xbox 360 Controller driver

Added to portage

2024-04-23

2024-04-22
PEAR-MDB2 - 2.5.0_beta5-r3
Ebuild name:

dev-php/PEAR-MDB2-2.5.0_beta5-r3

Description

Database Abstraction Layer

Added to portage

2024-04-22

bats - 1.11.0
Ebuild name:

dev-util/bats-1.11.0

Description

Bats-core Bash Automated Testing System

Added to portage

2024-04-22

beartype - 0.18.5
Ebuild name:

dev-python/beartype-0.18.5

Description

Unbearably fast runtime type checking in pure Python

Added to portage

2024-04-22

buku - 4.9
Ebuild name:

www-misc/buku-4.9

Description

Powerful command-line bookmark manager

Added to portage

2024-04-22

console - 1.24.0
Ebuild name:

dev-ruby/console-1.24.0

Description

Beautiful logging for Ruby

Added to portage

2024-04-22

cri-o - 1.29.2
Ebuild name:

app-containers/cri-o-1.29.2

Description

OCI-based implementation of Kubernetes Container Runtime Interface

Added to portage

2024-04-22

cutter - 2.3.4
Ebuild name:

dev-util/cutter-2.3.4

Description

A Qt and C++ GUI for rizin reverse engineering framework

Added to portage

2024-04-22

debootstrap - 1.0.134
Ebuild name:

dev-util/debootstrap-1.0.134

Description

Debian/Ubuntu bootstrap scripts

Added to portage

2024-04-22

emoji - 2.11.1
Ebuild name:

dev-python/emoji-2.11.1

Description

Emoji for Python

Added to portage

2024-04-22

exo - 1.77.1
Ebuild name:

app-admin/exo-1.77.1

Description

Command-line tool for everything at Exoscale compute, storage, dns

Added to portage

2024-04-22

fotocx - 24.21-r1
Ebuild name:

media-gfx/fotocx-24.21-r1

Description

Program for improving image files made with a digital camera

Added to portage

2024-04-22

gcc - 14.0.1_pre20240421
Ebuild name:

sys-devel/gcc-14.0.1_pre20240421

Description

The GNU Compiler Collection

Added to portage

2024-04-22

git-sources - 6.9_rc5
Ebuild name:

sys-kernel/git-sources-6.9_rc5

Description

The very latest -git version of the Linux kernel

Added to portage

2024-04-22

glances - 3.4.0.5
Ebuild name:

sys-process/glances-3.4.0.5

Description

CLI curses based monitoring tool

Added to portage

2024-04-22

gnome-shell - 45.6
Ebuild name:

gnome-base/gnome-shell-45.6

Description

Provides core UI functions for the GNOME desktop

Added to portage

2024-04-22

hatchling - 1.24.2
Ebuild name:

dev-python/hatchling-1.24.2

Description

Modern, extensible Python build backend

Added to portage

2024-04-22

hcloud - 1.43.1
Ebuild name:

app-admin/hcloud-1.43.1

Description

A command-line interface for Hetzner Cloud

Added to portage

2024-04-22

imageio - 2.34.1
Ebuild name:

dev-python/imageio-2.34.1

Description

Python library for reading and writing image data

Added to portage

2024-04-22

kubo - 0.28.0
Ebuild name:

net-p2p/kubo-0.28.0

Description

Main implementation of IPFS

Added to portage

2024-04-22

libepoxy - 1.5.10-r3
Ebuild name:

media-libs/libepoxy-1.5.10-r3

Description

Library for handling OpenGL function pointer management

Added to portage

2024-04-22

libtmux - 0.37.0
Ebuild name:

dev-python/libtmux-0.37.0

Description

Typed library that provides an ORM wrapper for tmux, a terminal multiplex

Added to portage

2024-04-22

libusb - 0.7.1
Ebuild name:

dev-ruby/libusb-0.7.1

Description

binding that gives Ruby programmers access to arbitrary USB devices

Added to portage

2024-04-22

lidarr-bin - 2.3.0.4159
Ebuild name:

www-apps/lidarr-bin-2.3.0.4159

Description

Looks and smells like Sonarr but made for music

Added to portage

2024-04-22

lxd - 5.21.1
Ebuild name:

app-containers/lxd-5.21.1

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2024-04-22

mkdocs - 1.6.0
Ebuild name:

dev-python/mkdocs-1.6.0

Description

Project documentation with Markdown

Added to portage

2024-04-22

mkdocs-get-deps - 0.2.0
Ebuild name:

dev-python/mkdocs-get-deps-0.2.0

Description

extension that lists all dependencies according to a mkdocs.yml fi

Added to portage

2024-04-22

mutter - 45.6
Ebuild name:

x11-wm/mutter-45.6

Description

GNOME compositing window manager based on Clutter

Added to portage

2024-04-22

nanoc-checking - 1.0.5
Ebuild name:

www-apps/nanoc-checking-1.0.5

Description

Provides checking functionality for Nanoc

Added to portage

2024-04-22

opendkim - 2.10.3-r31
Ebuild name:

mail-filter/opendkim-2.10.3-r31

Description

A milter providing DKIM signing and verification

Added to portage

2024-04-22

pcsx2 - 1.7.5724
Ebuild name:

games-emulation/pcsx2-1.7.5724

Description

PlayStation 2 emulator

Added to portage

2024-04-22

pcsx2_patches - 0_p20240416
Ebuild name:

games-emulation/pcsx2_patches-0_p20240416

Description

Collection of game patches for use with PCSX2 (e.g. wides

Added to portage

2024-04-22

pipenv - 2023.12.1-r1
Ebuild name:

dev-python/pipenv-2023.12.1-r1

Description

Python Development Workflow for Humans

Added to portage

2024-04-22

pyqtgraph - 0.13.6
Ebuild name:

dev-python/pyqtgraph-0.13.6

Description

A pure-python graphics and GUI library built on PyQt and numpy

Added to portage

2024-04-22

radarr-bin - 5.5.0.8730
Ebuild name:

www-apps/radarr-bin-5.5.0.8730

Description

A fork of Sonarr to work with movies a la Couchpotato

Added to portage

2024-04-22

readarr-bin - 0.3.24.2510
Ebuild name:

www-apps/readarr-bin-0.3.24.2510

Description

An ebook and audiobook collection manager for Usenet and BitTorren

Added to portage

2024-04-22

repology - 1.2.4
Ebuild name:

app-emacs/repology-1.2.4

Description

Repology API access via Emacs Lisp

Added to portage

2024-04-22

rizin - 0.7.3
Ebuild name:

dev-util/rizin-0.7.3

Description

reverse engineering framework for binary analysis

Added to portage

2024-04-22

ruffle - 0_p20240422
Ebuild name:

app-emulation/ruffle-0_p20240422

Description

Flash Player emulator written in Rust

Added to portage

2024-04-22

scikit-build-core - 0.9.2-r1
Ebuild name:

dev-python/scikit-build-core-0.9.2-r1

Description

Build backend for CMake based projects

Added to portage

2024-04-22

simpleini - 4.22-r1
Ebuild name:

dev-cpp/simpleini-4.22-r1

Description

C++ library providing a simple API to read and write INI-style files

Added to portage

2024-04-22

sunshine - 0.23.1
Ebuild name:

net-misc/sunshine-0.23.1

Description

Self-hosted game stream host for Moonlight

Added to portage

2024-04-22

tomcat - 10.1.20-r2
Ebuild name:

www-servers/tomcat-10.1.20-r2

Description

Tomcat Servlet-6.0/JSP-3.1/EL-5.0/WebSocket-2.1/JASPIC-3.0 Container

Added to portage

2024-04-22

uefi-mkconfig - 1.5
Ebuild name:

sys-boot/uefi-mkconfig-1.5

Description

Automatic management of UEFI entries

Added to portage

2024-04-22

vivaldi - 6.6.3271.61
Ebuild name:

www-client/vivaldi-6.6.3271.61

Description

A browser for our friends

Added to portage

2024-04-22

vivaldi-snapshot - 6.7.3329.9
Ebuild name:

www-client/vivaldi-snapshot-6.7.3329.9

Description

A browser for our friends

Added to portage

2024-04-22

wofi - 1.4
Ebuild name:

gui-apps/wofi-1.4

Description

Wofi is a launcher/menu program for wlroots based wayland compositors like sway

Added to portage

2024-04-22

you-get - 0.4.1650-r1
Ebuild name:

net-misc/you-get-0.4.1650-r1

Description

Utility to download media contents from the web

Added to portage

2024-04-22

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 72.8 ms