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:

81584

userrating:

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


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Tutorials per portage category->app-editors->VI

3. Practice Lesson #1


You should have a practice file called vilesson.txt in
your home directory. We will use it now:


$ vi vilesson.txt

Please note that in this lesson we will only practice the very
basics of vi. It is up to you to explore the editor further using
the provided cheat-sheet.


General Rules



  1. Do not use arrow keys to move the cursor
  2. Do not use PgDn or PgUp keys
  3. Do not use Home or End keys

If you accidently violate any of the above rules and cause strange
characters to be inserted into the file, or if anything else
unexpected happens, and you don't know how to correct it, press
Escape followed with :q! (quit without
saving
command). Then open the file again and continue the
lesson.


All exercises in Practice Lesson #1 consist of
Actions (marked here as A:) and Verifications
(marked here as V:).


Moving Around Text


First we will move around the file line by line.



A:
Press j three times.
V:
Cursor should now be resting on the fourth line.
A:
Type 8j
V:
Cursor should have moved 8 lines down to "Mr. John Bigfoot".
A:
Go up 2 lines by pressing k twice. Now go up 7 more
lines using the combination of a number and the k command.
V:
Your cursor should be on the "Big Town" line.

There is a way to move to a specific line number.



A:
Type :set number and press Enter key.
V:
Line numbers should be displayed at the left margin.
A:
Type 33G
V:
Your cursor should be resting at line #33.
A:
Type :set nonumber
V:
Line numbers should disappear.
A:
Go to the first line in the file by typing 1G (as in
line #1, GO).
V:
Your cursor should be at the top of the file.
A:
To go to the last line in the file, you do not need to specify
the line number at all (it would often be inconvenient). Type
G
V:
Cursor should be at the last line of the file.

To move sideways we will use command l (letter el)
to move right, and command h to move left. First go
back to the beginning of the line "40 PR Special (Pink Squirrel)".
When you're done, continue with the exercise.



A:
Press l three times.
V:
Cursor should be on character "P".
A:
Type 10l (number 10 followed by letter el)
V:
Cursor should be resting on white space between words "Special"
and "Pink".
A:
Press h twice.
V:
Cursor should be on character "a" of the letter "Special".
A:
Now go directly to the end of the line by pressing $
(dollar sign).
V:
Cursor should be at the end of the line.
A:
Go back to the beginning of the line by pressing 0 (zero).
V:
Cursor should be at the beginning of the line.

We can also move using words, sentences and paragraphs as delimiters.
First make sure your cursor is still at the beginning of the line
"40 PR Special (Pink Squirrel)".



A:
Press w (as in word) twice.
V:
Cursor should be at the beginning of the word "Special".
A:
Type 3w
V:
Cursor should be at the beginning of the word "Squirrel".
Note that vi knows that "(" is not a part of the word, and it
counts those elements separately.
A:
Go two paragraphs down by pressing 2} (right curly
brace).
V:
Cursor should be resting before the beginning of the
paragraph "We are looking forward [...]"
A:
Go to the previous sentence by pressing ( (left
parenthesis).
V:
Cursor should be on the word "We". Note:
Using sentences as delimiters is known to be broken in a couple
of vi implementations.
A:
Move to the end of the word by pressing e (as in end
of the word
).
V:
Cursor should be resting on the letter "e".
A:
To move one page forward, press Ctrl-F
V:
Depending on your terminal definition, the cursor should have
moved an appropriate number of lines forward. In our case, since
the file is short, you are most likely at the last line.
A:
Press Ctrl-B to go back one page.
V:
Cursor should have moved up one terminal page. Note:
On some older DOS versions of vi this command might scroll up the
page without moving the cursor. If this happens to you, press
Ctrl-B again.

Searching


Make sure your cursor is at the top of the file, then proceed
with the exercise.



A:
Press /, type your and press Enter
V:
Cursor should be on the word "your" in the middle of the sentence
"Thank you for placing your order with us".
A:
Press n (for 'next').
V:
Cursor should be on the word "your" before words "March 25".
A:
Press G to go to the end of the file.
V:
Cursor should be at the bottom of the file.
A:
Press ?, type ( and press Enter
V:
Your cursor should be on the left parenthesis before the word
"Moscow".

Deleting, Copying, And Pasting


We will practice commands d (delete),
p and P (paste), and the command
. (period, which means repeat last edit).
Make sure your cursor is still on the left paren before the word
"Moscow".



A:
Type d$
V:
You have just asked to delete to the end of line: d for
delete and $ for end of line (to
indicate the scope of the operation). Entire description of the
"Stock Option" drink should have disappeared.
A:
Press n to find the next instance of "(" (that was
our last search).
V:
Cursor should be on the left paren before the word "Ping-Pong".
A:
Repeat the previous edit (delete to end of the line) by pressing
. (period).
V:
Description of the "Day in TAC" drink should have disappeared.
A:
Press n again followed by . (period).
V:
Description of the "PR Special" drink should have disappeared.
A:
Repeat the last operation.
V:
All of the descriptions of the drinks (please ignore the fact that
some of them are intentionally wrong) should be gone.
A:
Exit the file without saving it by typing command :q!
V:
You should be at the UNIX shell command prompt.

Bring the file back into the editor with the command:



$ vi vilesson.txt

By now you have noticed that one of the drinks is really an appetizer.
We need to move it into the right place.



A:
Type /Early and press Enter
V:
Cursor should be on the line with "Early Release".
A:
Delete the whole line by pressing d twice.
V:
Line should be gone.
A:
Press P (upper case).
V:
The line you deleted is pasted above "Sales Engineer Special".
A:
Now press u for undo, remember which line
your cursor is on and then press p (lowercase).
V:
The line you deleted is pasted below your cursor line.

Note that uppercase P pastes text above the cursor line,
lowercase p pastes below.


If you only wish to copy the original line(s) without deleting at
the same time, use the yank command.



A:
Move you cursor to the second line, type 3Y, move your
cursor all the way down by pressing G and press
p
V:
Lines 2, 3, and 4 should have been pasted under "Tony Thomas".
A:
Now press u to undo the changes.
V:
The lines you have pasted should have disappeared.

The above operation could also be accomplished using lowercase
yank and the symbol for the object to be copied.



A:
Move your cursor back to line 2. Type commands y}Gp
V:
Lines 2, 3, and 4 should have been pasted under "Tony Thomas".
A:
Now undo the changes.
V:
The lines you have pasted should have disappeared.

Replacing Text


You have just noticed that the name of the addressee is spelled
"Bigfoot". It should be "Bigshot". You will now globally change
it.



A:
Press : (vi command line), type
%s/Bigfoot/Bigshot/g and press Enter
V:
All instances of "Bigfoot" should have changed to "Bigshot".

What you have typed means command line (:), the whole
file
(%), substitute (s), Bigfoot with Bigshot
(/Bigfoot/Bigshot/), any occurance on a line (g). Without
the last g, the substitution would be performed only
once per line. In our case it would not make any difference, but
it is a cheap insurance to take. The character % at
the beginning of the command means literally from the first to
the last line
. You could specify a narrower range of lines.
:13,19s/Bigfoot/Bigshot/ would perform the substitution
on a range of lines 13 through 19.


It is possible to replace specific number of words with whatever
text we wish to type in.



A:
Press / and then type send and press
Enter. Now type cw (for change word),
type be delivering and press Escape
V:
The word "send" should have been replaced with "be delivering".
Note that only the word "send" was replaced.

You could also specify
multiple words to be replaced, for example c3w. This
has a distinct advantage over more conventional overwriting because
it has clear word-boundary delimiters.


Overwriting one character, however, can be useful as a quick
correction. Note that the word "Febeuary" is misspelled.



A:
Place your cursor on the second "e" in that word and press r
twice.
V:
The word "Febeuary" should now read "February".

The first time you pressed r above it meant replace,
the second time with letter r. You do not need to finish
the command with Escape because there is an understanding
that only one letter will be input. This was single-letter
overwriting. Should you wish to overwrite continuously, you would
use the letter R instead. You would also need to finish
the command by pressing Escape since the number of
characters to be overwritten is not pre-determined.


Changing Case


Notice that the word "serVEd" has improperly capitalized two letters.



A:
Go to the word "serVEd", place your cursor over the first miscapitalized
letter and press ~ (tilde) twice.
V:
The word should now read "served".

Saving Files


It is time to save the changes.



A:
Press : (for command line), type w
(for write) and press Enter
V:
The changes have been saved. There could be a one-line note at
the bottom of the screen saying, "vilesson.txt: 48 lines, 954
characters" (or something similar) to confirm a successful save.

There are other ways to save files, so please read the cheat-sheet
for the command summary.


Inserting Text


There are three parts to entering text:



  1. input command (A, I, O, R, a, c, i, o)
  2. text to be inserted (anything you wish)
  3. termination of input command (Escape key)

The third part is always the same. All text input commands
listed above are terminated with Escape key. Part one
is where the variation occurs.



A:
Move the cursor to the beginning of line 38. Press i
and start typing text. When you finish the sentence, press
Escape.
V:
As you have noticed, i inserts text before the
letter the cursor rests on.

To enter text after the cursor, you would use a
(append) command. Now move your cursor to the second line
in the table listing drinks to be delivered.



A:
Press o.
V:
A new blank line should have been opened below the cursor line.
A:
Type some text. Press Escape.
V:
Text should have been entered on the blank line.
A:
Press u.
V:
Text you entered should have disappeared.
A:
Now press capital O, type some text and press
Escape.
V:
Text should have been entered on the line above the former cursor
line.

Note that the capitalized version of the same command opens the
line for text input above the cursor line. Note similarities
to the p and P commands. Press u.


Make sure you are approximately in the middle of the line of text (any
line).



A:
Press I (the capitalized version of the insert
command). Start typing text. Press Escape.
V:
Text should have been entered at the beginning of the line.
A:
Press u to undo changes.
V:
Text you entered should have disappeared.
A:
Now press A (the capitalized version of the append
command, type some text and terminate the command.
V:
Text should have been appended to the end of the line.
A:
Press u to undo changes.
V:
Text you entered should have disappeared.

Exiting file


You can exit file with or without saving changes.



A:
To save and exit, type :wq and press Enter.
V:
File has been saved and you should be at the UNIX command prompt.
A:
Open the file using vi vileson.txt and make some
changes (if you are entering text, please remember to terminate
the text input command with Escape). Type :q
and press Enter.
V:
Normally that would allow you to quit file, but since you have
changed the file, vi most likely will ask you to either save or
use bang (! command) to overwrite the protection.
A:
Type :q! and press Enter.
V:
You should be back at the UNIX command prompt.

Note that bang also works in conjunction with :w
and :wq commands.


End Of Practice Lesson #1



/* The article above and any accompanying files are freely
* distributable, but please leave this notice and the text intact.
* Home for this document: http://www.infobound.com/vi.html
* Copyright (C) 1994, 1999 Tony Thomas
* Contact author through email:
tony@infobound.com
* Last revision Feb 23, 1999
* UNIX is a trademark of X/Open
*/

rate this article:
current rating: average rating: 1.2 (24 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
2025-10-17
amarok - 3.3.1-r1
Ebuild name:

media-sound/amarok-3.3.1-r1

Description

Advanced audio player based on KDE Frameworks

Added to portage

2025-10-17

dotnet-runtime-nugets - 8.0.21
Ebuild name:

dev-dotnet/dotnet-runtime-nugets-8.0.21

Description

.NET runtime nugets

Added to portage

2025-10-17

dotnet-runtime-nugets - 9.0.10
Ebuild name:

dev-dotnet/dotnet-runtime-nugets-9.0.10

Description

.NET runtime nugets

Added to portage

2025-10-17

dotnet-sdk - 9.0.111
Ebuild name:

dev-dotnet/dotnet-sdk-9.0.111

Description

Added to portage

2025-10-17

dotnet-sdk-bin - 9.0.111
Ebuild name:

dev-dotnet/dotnet-sdk-bin-9.0.111

Description

.NET is a free, cross-platform, open-source developer platform

Added to portage

2025-10-17

dotnet-sdk-bin - 9.0.306
Ebuild name:

dev-dotnet/dotnet-sdk-bin-9.0.306

Description

.NET is a free, cross-platform, open-source developer platform

Added to portage

2025-10-17

installkernel - 9999
Ebuild name:

sys-kernel/installkernel-9999

Description

Gentoo fork of installkernel script from debianutils

Added to portage

2025-10-17

kio - 6.19.1
Ebuild name:

kde-frameworks/kio-6.19.1

Description

Framework providing transparent file and data management

Added to portage

2025-10-17

libxml2 - 2.15.1
Ebuild name:

dev-libs/libxml2-2.15.1

Description

XML C parser and toolkit

Added to portage

2025-10-17

mesa - 25.2.5
Ebuild name:

media-libs/mesa-25.2.5

Description

OpenGL-like graphic library for Linux

Added to portage

2025-10-17

mesa_clc - 25.2.5
Ebuild name:

dev-util/mesa_clc-25.2.5

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2025-10-17

nushell - 0.108.0
Ebuild name:

app-shells/nushell-0.108.0

Description

A new type of shell, written in Rust

Added to portage

2025-10-17

pwntools - 4.15.0
Ebuild name:

dev-util/pwntools-4.15.0

Description

CTF framework and exploit development library

Added to portage

2025-10-17

pwntools - 4.15.0_beta1-r1
Ebuild name:

dev-util/pwntools-4.15.0_beta1-r1

Description

CTF framework and exploit development library

Added to portage

2025-10-17

secret-service - 0-r1
Ebuild name:

virtual/secret-service-0-r1

Description

Virtual for a freedesktop.org Secret Service API provider

Added to portage

2025-10-17

sqlmap - 1.9.10
Ebuild name:

dev-db/sqlmap-1.9.10

Description

An automatic SQL injection and database takeover tool

Added to portage

2025-10-17

unicorn - 2.1.3-r1
Ebuild name:

dev-util/unicorn-2.1.3-r1

Description

A lightweight multi-platform, multi-architecture CPU emulator framework

Added to portage

2025-10-17

xosview - 1.24-r1
Ebuild name:

x11-misc/xosview-1.24-r1

Description

X11 operating system viewer

Added to portage

2025-10-17

zig - 0.15.2
Ebuild name:

dev-lang/zig-0.15.2

Description

A robust, optimal, and maintainable programming language

Added to portage

2025-10-17

zig-bin - 0.15.2
Ebuild name:

dev-lang/zig-bin-0.15.2

Description

A robust, optimal, and maintainable programming language

Added to portage

2025-10-17

2025-10-16
ahoviewer - 2.0.0_pre20241230-r1
Ebuild name:

media-gfx/ahoviewer-2.0.0_pre20241230-r1

Description

A GTK image viewer, manga reader, and booru browser

Added to portage

2025-10-16

apache-rat - 0.16.1
Ebuild name:

dev-java/apache-rat-0.16.1

Description

Apache Rat is a release audit tool, focused on licenses

Added to portage

2025-10-16

apptainer - 1.4.3
Ebuild name:

app-containers/apptainer-1.4.3

Description

The container system for secure high-performance computing

Added to portage

2025-10-16

asm - 9.9
Ebuild name:

dev-java/asm-9.9

Description

Bytecode manipulation framework for Java

Added to portage

2025-10-16

asm-jdk-bridge - 0.0.12
Ebuild name:

dev-java/asm-jdk-bridge-0.0.12

Description

A Bridge to Translate ASM From and to The OpenJDK Class File API

Added to portage

2025-10-16

awscli - 1.42.53
Ebuild name:

app-admin/awscli-1.42.53

Description

Universal Command Line Environment for AWS

Added to portage

2025-10-16

bash - 5.4_alpha_pre20251016
Ebuild name:

app-shells/bash-5.4_alpha_pre20251016

Description

The standard GNU Bourne again shell

Added to portage

2025-10-16

boto3 - 1.40.53
Ebuild name:

dev-python/boto3-1.40.53

Description

The AWS SDK for Python

Added to portage

2025-10-16

botocore - 1.40.53
Ebuild name:

dev-python/botocore-1.40.53

Description

Low-level, data-driven core of boto 3

Added to portage

2025-10-16

byte-buddy - 1.17.8
Ebuild name:

dev-java/byte-buddy-1.17.8

Description

Offers convenience for attaching an agent to the local or a remote VM

Added to portage

2025-10-16

chrome-binary-plugins - 141.0.7390.107
Ebuild name:

www-plugins/chrome-binary-plugins-141.0.7390.107

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2025-10-16

chrome-binary-plugins - 142.0.7444.34_beta
Ebuild name:

www-plugins/chrome-binary-plugins-142.0.7444.34_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-10-16

chromedriver-bin - 141.0.7390.107
Ebuild name:

www-apps/chromedriver-bin-141.0.7390.107

Description

WebDriver for Chrome

Added to portage

2025-10-16

chromium - 141.0.7390.107
Ebuild name:

www-client/chromium-141.0.7390.107

Description

Open-source version of Google Chrome web browser

Added to portage

2025-10-16

clutter - 1.26.4-r2
Ebuild name:

media-libs/clutter-1.26.4-r2

Description

Clutter is a library for creating graphical user interfaces

Added to portage

2025-10-16

coverage - 7.11.0
Ebuild name:

dev-python/coverage-7.11.0

Description

Code coverage measurement for Python

Added to portage

2025-10-16

cryptography - 46.0.3
Ebuild name:

dev-python/cryptography-46.0.3

Description

Library providing cryptographic recipes and primitives

Added to portage

2025-10-16

evince - 48.0-r2
Ebuild name:

app-text/evince-48.0-r2

Description

Simple document viewer for GNOME

Added to portage

2025-10-16

firefox - 144.0-r1
Ebuild name:

www-client/firefox-144.0-r1

Description

Firefox Web Browser

Added to portage

2025-10-16

gentoo-sources - 6.1.156
Ebuild name:

sys-kernel/gentoo-sources-6.1.156

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-16

gentoo-sources - 6.12.53
Ebuild name:

sys-kernel/gentoo-sources-6.12.53

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-16

gentoo-sources - 6.17.3
Ebuild name:

sys-kernel/gentoo-sources-6.17.3

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-16

gentoo-sources - 6.6.112
Ebuild name:

sys-kernel/gentoo-sources-6.6.112

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-16

git - 2.51.1
Ebuild name:

dev-vcs/git-2.51.1

Description

Stupid content tracker distributed VCS designed for speed and efficiency

Added to portage

2025-10-16

glade - 3.40.0-r3
Ebuild name:

dev-util/glade-3.40.0-r3

Description

A user interface designer for GTK+ and GNOME

Added to portage

2025-10-16

gnome-control-center - 47.6-r1
Ebuild name:

gnome-base/gnome-control-center-47.6-r1

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-10-16

gnome-control-center - 47.7-r1
Ebuild name:

gnome-base/gnome-control-center-47.7-r1

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-10-16

google-chrome - 141.0.7390.107
Ebuild name:

www-client/google-chrome-141.0.7390.107

Description

The web browser from Google

Added to portage

2025-10-16

google-chrome-beta - 142.0.7444.34
Ebuild name:

www-client/google-chrome-beta-142.0.7444.34

Description

The web browser from Google

Added to portage

2025-10-16

gsm - 1.0.23
Ebuild name:

media-sound/gsm-1.0.23

Description

Lossy speech compression library and tool

Added to portage

2025-10-16

humanize - 4.14.0
Ebuild name:

dev-python/humanize-4.14.0

Description

Common humanization utilities

Added to portage

2025-10-16

hypothesis - 6.141.1
Ebuild name:

dev-python/hypothesis-6.141.1

Description

A library for property based testing

Added to portage

2025-10-16

inline-snapshot - 0.30.0
Ebuild name:

dev-python/inline-snapshot-0.30.0

Description

Create and update inline snapshots in your Python tests

Added to portage

2025-10-16

jakarta-activation-api - 2.2.0
Ebuild name:

dev-java/jakarta-activation-api-2.2.0

Description

Jakarta Activation API jar

Added to portage

2025-10-16

jakarta-mail-api - 2.1.5
Ebuild name:

dev-java/jakarta-mail-api-2.1.5

Description

Jakarta Mail API 2.1 Specification API

Added to portage

2025-10-16

jenkins-bin - 2.528.1
Ebuild name:

dev-util/jenkins-bin-2.528.1

Description

The leading open source automation server

Added to portage

2025-10-16

kio-fuse - 5.1.1
Ebuild name:

kde-misc/kio-fuse-5.1.1

Description

FUSE interface for KIO

Added to portage

2025-10-16

libarchive - 3.8.2
Ebuild name:

app-arch/libarchive-3.8.2

Description

Multi-format archive and compression library

Added to portage

2025-10-16

lvtk - 1.2.0-r4
Ebuild name:

media-libs/lvtk-1.2.0-r4

Description

A set of C++ wrappers around the LV2 C API

Added to portage

2025-10-16

microsoft-edge-beta - 142.0.3595.19
Ebuild name:

www-client/microsoft-edge-beta-142.0.3595.19

Description

The web browser from Microsoft

Added to portage

2025-10-16

microsoft-edge-dev - 143.0.3614.1
Ebuild name:

www-client/microsoft-edge-dev-143.0.3614.1

Description

The web browser from Microsoft

Added to portage

2025-10-16

mkdocs-material - 9.6.22
Ebuild name:

dev-python/mkdocs-material-9.6.22

Description

A Material Design theme for MkDocs

Added to portage

2025-10-16

mutter - 48.6
Ebuild name:

x11-wm/mutter-48.6

Description

GNOME compositing window manager based on Clutter

Added to portage

2025-10-16

nautilus - 47.4-r1
Ebuild name:

gnome-base/nautilus-47.4-r1

Description

Default file manager for the GNOME desktop

Added to portage

2025-10-16

nautilus - 47.5-r1
Ebuild name:

gnome-base/nautilus-47.5-r1

Description

Default file manager for the GNOME desktop

Added to portage

2025-10-16

nautilus - 48.3-r1
Ebuild name:

gnome-base/nautilus-48.3-r1

Description

Default file manager for the GNOME desktop

Added to portage

2025-10-16

netdata-go-plugin - 2.5.3
Ebuild name:

net-analyzer/netdata-go-plugin-2.5.3

Description

Netdata plugin for collectors written in Go

Added to portage

2025-10-16

numpy - 2.3.4
Ebuild name:

dev-python/numpy-2.3.4

Description

Fast array and numerical python library

Added to portage

2025-10-16

openjdk - 26_alpha19
Ebuild name:

dev-java/openjdk-26_alpha19

Description

Open source implementation of the Java programming language

Added to portage

2025-10-16

openpgp-keys-pottlinger - 20251006
Ebuild name:

sec-keys/openpgp-keys-pottlinger-20251006

Description

OpenPGP keys used by creadur.apache.org

Added to portage

2025-10-16

patiencediff - 0.2.18
Ebuild name:

dev-python/patiencediff-0.2.18

Description

Python implementation of the patiencediff algorithm

Added to portage

2025-10-16

pbs-installer - 2025.10.14
Ebuild name:

dev-python/pbs-installer-2025.10.14

Description

Installer for Python Build Standalone

Added to portage

2025-10-16

phpmyadmin - 5.2.3
Ebuild name:

dev-db/phpmyadmin-5.2.3

Description

Web-based administration for MySQL database in PHP

Added to portage

2025-10-16

pillow - 12.0.0
Ebuild name:

dev-python/pillow-12.0.0

Description

Python Imaging Library (fork)

Added to portage

2025-10-16

plantuml - 1.2025.8
Ebuild name:

media-gfx/plantuml-1.2025.8

Description

Draw UML diagrams using a simple and human readable text description

Added to portage

2025-10-16

postfixadmin - 3.3.16
Ebuild name:

www-apps/postfixadmin-3.3.16

Description

Web Based Management tool for Postfix style virtual domains and users

Added to portage

2025-10-16

pyghmi - 1.6.6
Ebuild name:

dev-python/pyghmi-1.6.6

Description

A pure python implementation of IPMI protocol

Added to portage

2025-10-16

pylint - 4.0.1
Ebuild name:

dev-python/pylint-4.0.1

Description

Python code static checker

Added to portage

2025-10-16

pyproject-fmt - 2.11.0
Ebuild name:

dev-python/pyproject-fmt-2.11.0

Description

Format your pyproject.toml file

Added to portage

2025-10-16

qgit - 2.13
Ebuild name:

dev-vcs/qgit-2.13

Description

Qt-based GUI for Git repositories

Added to portage

2025-10-16

raku-mode - 0.2.1_p20211121
Ebuild name:

app-emacs/raku-mode-0.2.1_p20211121

Description

Major mode for editing Raku code

Added to portage

2025-10-16

reazon - 0.4.1
Ebuild name:

app-emacs/reazon-0.4.1

Description

GNU Emacs implementation of miniKanren, logic programming language

Added to portage

2025-10-16

redo+ - 1.19
Ebuild name:

app-emacs/redo+-1.19

Description

Redo/undo system for Emacs

Added to portage

2025-10-16

rosegarden - 25.06
Ebuild name:

media-sound/rosegarden-25.06

Description

MIDI and audio sequencer and notation editor

Added to portage

2025-10-16

samba - 4.21.9
Ebuild name:

net-fs/samba-4.21.9

Description

Samba Suite Version 4

Added to portage

2025-10-16

samba - 4.22.5
Ebuild name:

net-fs/samba-4.22.5

Description

Samba Suite Version 4

Added to portage

2025-10-16

samba - 4.23.2
Ebuild name:

net-fs/samba-4.23.2

Description

Samba Suite Version 4

Added to portage

2025-10-16

sip - 6.13.1-r1
Ebuild name:

dev-python/sip-6.13.1-r1

Description

Python bindings generator for C/C++ libraries

Added to portage

2025-10-16

sphinx-autodoc-typehints - 3.5.2
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.5.2

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2025-10-16

thunar - 4.20.6
Ebuild name:

xfce-base/thunar-4.20.6

Description

File manager for the Xfce desktop environment

Added to portage

2025-10-16

thunar - 4.21.3
Ebuild name:

xfce-base/thunar-4.21.3

Description

File manager for the Xfce desktop environment

Added to portage

2025-10-16

thunderbird - 140.4.0
Ebuild name:

mail-client/thunderbird-140.4.0

Description

Thunderbird Mail Client

Added to portage

2025-10-16

thunderbird - 144.0-r1
Ebuild name:

mail-client/thunderbird-144.0-r1

Description

Thunderbird Mail Client

Added to portage

2025-10-16

thunderbird-bin - 140.4.0
Ebuild name:

mail-client/thunderbird-bin-140.4.0

Description

Thunderbird Mail Client

Added to portage

2025-10-16

tomcat - 10.1.48
Ebuild name:

www-servers/tomcat-10.1.48

Description

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

Added to portage

2025-10-16

tomcat - 11.0.13
Ebuild name:

www-servers/tomcat-11.0.13

Description

Tomcat Servlet-6.1/JSP-4.0/EL-6.0/WebSocket-2.2/JASPIC-3.1 Container

Added to portage

2025-10-16

tomcat - 9.0.111
Ebuild name:

www-servers/tomcat-9.0.111

Description

Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container

Added to portage

2025-10-16

unearth - 0.18.1
Ebuild name:

dev-python/unearth-0.18.1

Description

A utility to fetch and download python packages

Added to portage

2025-10-16

uv - 0.9.3
Ebuild name:

dev-python/uv-0.9.3

Description

A Python package installer and resolver, written in Rust

Added to portage

2025-10-16

uv-build - 0.9.3
Ebuild name:

dev-python/uv-build-0.9.3

Description

PEP517 uv build backend

Added to portage

2025-10-16

vanilla-sources - 6.1.156
Ebuild name:

sys-kernel/vanilla-sources-6.1.156

Description

Full sources for the Linux kernel

Added to portage

2025-10-16

vanilla-sources - 6.12.53
Ebuild name:

sys-kernel/vanilla-sources-6.12.53

Description

Full sources for the Linux kernel

Added to portage

2025-10-16

vanilla-sources - 6.17.3
Ebuild name:

sys-kernel/vanilla-sources-6.17.3

Description

Full sources for the Linux kernel

Added to portage

2025-10-16

vanilla-sources - 6.6.112
Ebuild name:

sys-kernel/vanilla-sources-6.6.112

Description

Full sources for the Linux kernel

Added to portage

2025-10-16

vte - 0.76.3-r1
Ebuild name:

x11-libs/vte-0.76.3-r1

Description

Library providing a virtual terminal emulator widget

Added to portage

2025-10-16

vte - 0.78.5-r1
Ebuild name:

gui-libs/vte-0.78.5-r1

Description

Library providing a virtual terminal emulator widget

Added to portage

2025-10-16

vte - 0.78.5-r1
Ebuild name:

x11-libs/vte-0.78.5-r1

Description

Library providing a virtual terminal emulator widget

Added to portage

2025-10-16

vte - 0.80.3-r1
Ebuild name:

gui-libs/vte-0.80.3-r1

Description

Library providing a virtual terminal emulator widget

Added to portage

2025-10-16

vte - 0.80.3-r1
Ebuild name:

x11-libs/vte-0.80.3-r1

Description

Library providing a virtual terminal emulator widget

Added to portage

2025-10-16

zabbix - 6.0.42
Ebuild name:

net-analyzer/zabbix-6.0.42

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2025-10-16

zabbix - 7.0.19
Ebuild name:

net-analyzer/zabbix-7.0.19

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2025-10-16

zabbix - 7.2.13
Ebuild name:

net-analyzer/zabbix-7.2.13

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2025-10-16

zabbix - 7.4.3
Ebuild name:

net-analyzer/zabbix-7.4.3

Description

ZABBIX is software for monitoring of your applications, network and serve

Added to portage

2025-10-16

zfs - 2.4.0_rc2-r1
Ebuild name:

sys-fs/zfs-2.4.0_rc2-r1

Description

Linux kernel module and userland utilities for ZFS

Added to portage

2025-10-16

zfs-kmod - 2.4.0_rc2-r1
Ebuild name:

sys-fs/zfs-kmod-2.4.0_rc2-r1

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2025-10-16

zsh - 5.9.0.3-r2
Ebuild name:

app-shells/zsh-5.9.0.3-r2

Description

UNIX Shell similar to the Korn shell

Added to portage

2025-10-16

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: 75.8 ms