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:

86369

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.3 (46 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
2026-06-28
GnuPG-Interface - 1.70.0
Ebuild name:

dev-perl/GnuPG-Interface-1.70.0

Description

Perl interface to GnuPG

Added to portage

2026-06-28

asyncssh - 2.24.0
Ebuild name:

dev-python/asyncssh-2.24.0

Description

Asynchronous SSHv2 client and server library

Added to portage

2026-06-28

atari800 - 7.0.0
Ebuild name:

games-emulation/atari800-7.0.0

Description

Emulator of Atari 8-bit computer systems and 5200 game console

Added to portage

2026-06-28

gentoolkit - 0.7.5
Ebuild name:

app-portage/gentoolkit-0.7.5

Description

Collection of administration scripts for Gentoo

Added to portage

2026-06-28

libtmux - 0.59.0
Ebuild name:

dev-python/libtmux-0.59.0

Description

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

Added to portage

2026-06-28

lxqt-panel - 2.4.1-r1
Ebuild name:

lxqt-base/lxqt-panel-2.4.1-r1

Description

LXQt desktop panel and plugins

Added to portage

2026-06-28

lxqt-panel - 2.4.1-r2
Ebuild name:

lxqt-base/lxqt-panel-2.4.1-r2

Description

LXQt desktop panel and plugins

Added to portage

2026-06-28

mirrorselect - 2.6.5
Ebuild name:

app-portage/mirrorselect-2.6.5

Description

Tool to help select distfiles mirrors for Gentoo

Added to portage

2026-06-28

obs-studio - 32.1.2
Ebuild name:

media-video/obs-studio-32.1.2

Description

Software for Recording and Streaming Live Video Content

Added to portage

2026-06-28

pkgconf - 2.9.94
Ebuild name:

dev-util/pkgconf-2.9.94

Description

pkg-config compatible replacement with no dependencies other than C99

Added to portage

2026-06-28

pulsectl-asyncio - 1.3.2
Ebuild name:

dev-python/pulsectl-asyncio-1.3.2

Description

Asyncio frontend for pulsectl, Python bindings of libpulse

Added to portage

2026-06-28

qtox - 1.18.5
Ebuild name:

net-im/qtox-1.18.5

Description

Instant messaging client using the encrypted p2p Tox protocol

Added to portage

2026-06-28

screengrab - 3.2.0-r1
Ebuild name:

x11-misc/screengrab-3.2.0-r1

Description

Qt GUI Screenshot Utility

Added to portage

2026-06-28

screengrab - 3.2.0-r2
Ebuild name:

x11-misc/screengrab-3.2.0-r2

Description

Qt GUI Screenshot Utility

Added to portage

2026-06-28

tibs - 0.11.0
Ebuild name:

dev-python/tibs-0.11.0

Description

A sleek Python library for your binary data

Added to portage

2026-06-28

tinc - 1.0.37
Ebuild name:

net-vpn/tinc-1.0.37

Description

tinc is an easy to configure VPN implementation

Added to portage

2026-06-28

xclock - 1.2.0
Ebuild name:

x11-apps/xclock-1.2.0

Description

analog / digital clock for X

Added to portage

2026-06-28

xxhash - 3.8.0
Ebuild name:

dev-python/xxhash-3.8.0

Description

Python binding for the xxHash library

Added to portage

2026-06-28

2026-06-27
7zip - 26.02
Ebuild name:

app-arch/7zip-26.02

Description

Free file archiver for extremely high compression

Added to portage

2026-06-27

AusweisApp - 2.5.3
Ebuild name:

sys-auth/AusweisApp-2.5.3

Description

Official authentication app for German ID cards and residence permits

Added to portage

2026-06-27

arcconf - 5.09.00.28391
Ebuild name:

sys-block/arcconf-5.09.00.28391

Description

Microsemi Adaptec RAID Controller Command Line Utility

Added to portage

2026-06-27

ast-serialize - 0.5.0
Ebuild name:

dev-python/ast-serialize-0.5.0

Description

Python bindings for mypy AST serialization

Added to portage

2026-06-27

bedrock-server - 1.26.32.2
Ebuild name:

games-server/bedrock-server-1.26.32.2

Description

The official bedrock (non-java) based server for the sandbox

Added to portage

2026-06-27

buildah - 1.44.0-r1
Ebuild name:

app-containers/buildah-1.44.0-r1

Description

A tool that facilitates building OCI images

Added to portage

2026-06-27

c-blosc2 - 3.1.5
Ebuild name:

dev-libs/c-blosc2-3.1.5

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-06-27

closure-compiler-bin - 20260622
Ebuild name:

dev-lang/closure-compiler-bin-20260622

Description

JavaScript optimizing compiler

Added to portage

2026-06-27

container-libs - 0.68.0
Ebuild name:

app-containers/container-libs-0.68.0

Description

Several utilities from the containers project

Added to portage

2026-06-27

dist-kernel - 6.18.37
Ebuild name:

virtual/dist-kernel-6.18.37

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-27

dist-kernel - 7.0.14
Ebuild name:

virtual/dist-kernel-7.0.14

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-27

dist-kernel - 7.1.2
Ebuild name:

virtual/dist-kernel-7.1.2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-27

docker-buildx - 0.35.0
Ebuild name:

app-containers/docker-buildx-0.35.0

Description

Docker CLI plugin for extended build capabilities with BuildKit

Added to portage

2026-06-27

editline - 2.0.0
Ebuild name:

dev-libs/editline-2.0.0

Description

line editing library for UNIX call compatible with the FSF readline

Added to portage

2026-06-27

edk2 - 202605
Ebuild name:

sys-firmware/edk2-202605

Description

TianoCore EDK II UEFI firmware for virtual machines

Added to portage

2026-06-27

edk2-bin - 202605
Ebuild name:

sys-firmware/edk2-bin-202605

Description

TianoCore EDK II UEFI firmware for virtual machines

Added to portage

2026-06-27

eisl - 5.67
Ebuild name:

dev-lang/eisl-5.67

Description

Interpreter and compiler compatible with the ISLisp standard

Added to portage

2026-06-27

fastapi - 0.138.1
Ebuild name:

dev-python/fastapi-0.138.1

Description

High performance framework, easy to learn, fast to code, ready for produ

Added to portage

2026-06-27

firefox - 152.0.3
Ebuild name:

www-client/firefox-152.0.3

Description

Firefox Web Browser

Added to portage

2026-06-27

firefox-bin - 152.0.3
Ebuild name:

www-client/firefox-bin-152.0.3

Description

Firefox Web Browser

Added to portage

2026-06-27

firefox-l10n - 152.0.3
Ebuild name:

www-client/firefox-l10n-152.0.3

Description

Firefox Web Browser's translation files

Added to portage

2026-06-27

fuzzylite - 6.0
Ebuild name:

dev-libs/fuzzylite-6.0

Description

A fuzzy logic control library in C++

Added to portage

2026-06-27

gentoo-kernel - 6.18.37
Ebuild name:

sys-kernel/gentoo-kernel-6.18.37

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-27

gentoo-kernel - 7.0.14
Ebuild name:

sys-kernel/gentoo-kernel-7.0.14

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-27

gentoo-kernel - 7.1.2
Ebuild name:

sys-kernel/gentoo-kernel-7.1.2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-27

gentoo-kernel-bin - 6.18.37
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.37

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-27

gentoo-kernel-bin - 7.0.14
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.0.14

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-27

gentoo-kernel-bin - 7.1.2
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.1.2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-27

gentoo-kernel-modprep - 6.18.37
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.18.37

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-06-27

gentoo-kernel-modprep - 7.0.14
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.0.14

Description

Minimal subset of gentoo-kernel-bin for building modules, f

Added to portage

2026-06-27

gentoo-kernel-modprep - 7.1.2
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.1.2

Description

Minimal subset of gentoo-kernel-bin for building modules, fo

Added to portage

2026-06-27

gentoo-sources - 6.18.37
Ebuild name:

sys-kernel/gentoo-sources-6.18.37

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-27

gentoo-sources - 7.0.14
Ebuild name:

sys-kernel/gentoo-sources-7.0.14

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-27

gentoo-sources - 7.1.2
Ebuild name:

sys-kernel/gentoo-sources-7.1.2

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-27

greenlet - 3.5.3
Ebuild name:

dev-python/greenlet-3.5.3

Description

Lightweight in-process concurrent programming

Added to portage

2026-06-27

httplib2 - 0.32.0
Ebuild name:

dev-python/httplib2-0.32.0

Description

A comprehensive HTTP client library

Added to portage

2026-06-27

httpx2 - 2.5.0
Ebuild name:

dev-python/httpx2-2.5.0

Description

The next generation HTTP client (Pydantic fork)

Added to portage

2026-06-27

hypopg - 1.4.3
Ebuild name:

dev-db/hypopg-1.4.3

Description

Hypothetical Indexes for PostgreSQL

Added to portage

2026-06-27

ibus-m17n - 1.4.40
Ebuild name:

app-i18n/ibus-m17n-1.4.40

Description

M17N engine for IBus

Added to portage

2026-06-27

ibus-typing-booster - 2.30.10
Ebuild name:

app-i18n/ibus-typing-booster-2.30.10

Description

Completion input method for IBus

Added to portage

2026-06-27

ipython - 9.15.0
Ebuild name:

dev-python/ipython-9.15.0

Description

Advanced interactive shell for Python

Added to portage

2026-06-27

jinxed - 2.0.4
Ebuild name:

dev-python/jinxed-2.0.4

Description

A pure-Python implementation of a subset of the Python curses library

Added to portage

2026-06-27

joserfc - 1.7.1
Ebuild name:

dev-python/joserfc-1.7.1

Description

A Python library for JOSE RFCs JWS, JWE, JWK, JWA, JWT

Added to portage

2026-06-27

level-zero - 1.32.0
Ebuild name:

dev-libs/level-zero-1.32.0

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2026-06-27

libpass - 1.9.3
Ebuild name:

dev-python/libpass-1.9.3

Description

Fork of passlib, a password hashing framework

Added to portage

2026-06-27

libsquish - 1.15.1.4
Ebuild name:

media-libs/libsquish-1.15.1.4

Description

Library for compressing images with the DXT/S3TC standard

Added to portage

2026-06-27

man-pages-ja - 20260615
Ebuild name:

app-i18n/man-pages-ja-20260615

Description

Collection of manual pages translated into Japanese

Added to portage

2026-06-27

mgorny-dev-scripts - 82
Ebuild name:

app-portage/mgorny-dev-scripts-82

Description

Handy scripts for ebuild development and more

Added to portage

2026-06-27

minecraft-server - 26.2
Ebuild name:

games-server/minecraft-server-26.2

Description

The official server for the sandbox video game

Added to portage

2026-06-27

mlt - 7.40.0
Ebuild name:

media-libs/mlt-7.40.0

Description

Open source multimedia framework for television broadcasting

Added to portage

2026-06-27

modus-themes - 5.3.0
Ebuild name:

app-emacs/modus-themes-5.3.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-06-27

mysqltuner - 2.8.45
Ebuild name:

dev-db/mysqltuner-2.8.45

Description

Makes recommendations for increased performance and stability for MySQL

Added to portage

2026-06-27

nerdctl - 2.3.3
Ebuild name:

app-containers/nerdctl-2.3.3

Description

Docker-compatible CLI for containerd, with support for Compose

Added to portage

2026-06-27

nest-asyncio2 - 1.7.2
Ebuild name:

dev-python/nest-asyncio2-1.7.2

Description

Patch asyncio to allow nested event loops

Added to portage

2026-06-27

netavark - 2.0.0
Ebuild name:

app-containers/netavark-2.0.0

Description

A container network stack

Added to portage

2026-06-27

pg_qualstats - 2.1.4
Ebuild name:

dev-db/pg_qualstats-2.1.4

Description

Statistics about predicates for helping finding what indices are missing

Added to portage

2026-06-27

pg_stat_kcache - 2.3.2
Ebuild name:

dev-db/pg_stat_kcache-2.3.2

Description

Statistics about physical disk access and CPU consumption done by backe

Added to portage

2026-06-27

phpsysinfo - 3.4.6
Ebuild name:

www-apps/phpsysinfo-3.4.6

Description

A customizable PHP script that displays information about your system nic

Added to portage

2026-06-27

podman - 6.0.0
Ebuild name:

app-containers/podman-6.0.0

Description

A tool for managing OCI containers and pods with Docker-compatible CLI

Added to portage

2026-06-27

podman-tui - 1.11.2
Ebuild name:

app-containers/podman-tui-1.11.2

Description

Terminal UI frontend for Podman

Added to portage

2026-06-27

powa-archivist - 5.1.2
Ebuild name:

dev-db/powa-archivist-5.1.2

Description

PostgreSQL Workload Analyzer Archivist

Added to portage

2026-06-27

racket-mode - 1_p20260303
Ebuild name:

app-emacs/racket-mode-1_p20260303

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile,

Added to portage

2026-06-27

rclone - 1.74.3
Ebuild name:

net-misc/rclone-1.74.3

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-06-27

reason - 3.18.0
Ebuild name:

dev-ml/reason-3.18.0

Description

Simple, fast & type safe language that leverages JavaScript and OCaml

Added to portage

2026-06-27

rebulk - 4.1.0
Ebuild name:

dev-python/rebulk-4.1.0

Description

Python library that performs advanced searches in strings

Added to portage

2026-06-27

rsyslog - 8.2606.0
Ebuild name:

app-admin/rsyslog-8.2606.0

Description

An enhanced multi-threaded syslogd with database support and more

Added to portage

2026-06-27

skopeo - 1.23.0-r1
Ebuild name:

app-containers/skopeo-1.23.0-r1

Description

Work with remote container images registries

Added to portage

2026-06-27

sonarr-bin - 4.0.19.2979
Ebuild name:

www-apps/sonarr-bin-4.0.19.2979

Description

Sonarr is a Smart PVR for newsgroup and bittorrent users

Added to portage

2026-06-27

sqlglot - 30.12.0
Ebuild name:

dev-python/sqlglot-30.12.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-06-27

syrupy - 5.3.4
Ebuild name:

dev-python/syrupy-5.3.4

Description

The sweeter pytest snapshot plugin

Added to portage

2026-06-27

tables - 3.11.1-r1
Ebuild name:

dev-python/tables-3.11.1-r1

Description

Hierarchical datasets for Python

Added to portage

2026-06-27

tor - 0.4.9.11
Ebuild name:

net-vpn/tor-0.4.9.11

Description

Anonymizing overlay network for TCP

Added to portage

2026-06-27

translate-toolkit - 3.19.13
Ebuild name:

dev-python/translate-toolkit-3.19.13

Description

Toolkit to convert between many translation formats

Added to portage

2026-06-27

tree-sitter-clojure - 0.0.13
Ebuild name:

dev-libs/tree-sitter-clojure-0.0.13

Description

Clojure programming language grammar for Tree-sitter

Added to portage

2026-06-27

tree-sitter-erlang - 0.19
Ebuild name:

dev-libs/tree-sitter-erlang-0.19

Description

Erlang programming language grammar for Tree-sitter

Added to portage

2026-06-27

tree-sitter-powershell - 0.26.5
Ebuild name:

dev-libs/tree-sitter-powershell-0.26.5

Description

PowerShell programming language grammar for Tree-sitter

Added to portage

2026-06-27

tree-sitter-racket - 0.24.7_p1
Ebuild name:

dev-libs/tree-sitter-racket-0.24.7_p1

Description

Racket programming language grammar for Tree-sitter

Added to portage

2026-06-27

tree-sitter-unison - 2.1.3
Ebuild name:

dev-libs/tree-sitter-unison-2.1.3

Description

Unison programming language grammar for Tree-sitter

Added to portage

2026-06-27

typer - 0.26.8
Ebuild name:

dev-python/typer-0.26.8

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2026-06-27

unison-ts-mode - 0.3.0
Ebuild name:

app-emacs/unison-ts-mode-0.3.0

Description

GNU Emacs major mode for the Unison language that uses Tree-sitter

Added to portage

2026-06-27

uv - 0.11.25
Ebuild name:

dev-python/uv-0.11.25

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-06-27

uv-build - 0.11.25
Ebuild name:

dev-python/uv-build-0.11.25

Description

PEP517 uv build backend

Added to portage

2026-06-27

vanilla-kernel - 6.18.37
Ebuild name:

sys-kernel/vanilla-kernel-6.18.37

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-27

vanilla-kernel - 7.0.14
Ebuild name:

sys-kernel/vanilla-kernel-7.0.14

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-27

vanilla-kernel - 7.1.2
Ebuild name:

sys-kernel/vanilla-kernel-7.1.2

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-27

vanilla-sources - 6.18.37
Ebuild name:

sys-kernel/vanilla-sources-6.18.37

Description

Full sources for the Linux kernel

Added to portage

2026-06-27

vanilla-sources - 7.0.14
Ebuild name:

sys-kernel/vanilla-sources-7.0.14

Description

Full sources for the Linux kernel

Added to portage

2026-06-27

vanilla-sources - 7.1.2
Ebuild name:

sys-kernel/vanilla-sources-7.1.2

Description

Full sources for the Linux kernel

Added to portage

2026-06-27

vcmi - 1.7.4
Ebuild name:

games-strategy/vcmi-1.7.4

Description

Open-source engine for Heroes of Might and Magic III

Added to portage

2026-06-27

vcsgraph - 0.3.2
Ebuild name:

dev-python/vcsgraph-0.3.2

Description

Graph algorithms for version control systems

Added to portage

2026-06-27

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 102.2 ms