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:

81398

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-02
awscli - 1.42.43
Ebuild name:

app-admin/awscli-1.42.43

Description

Universal Command Line Environment for AWS

Added to portage

2025-10-02

bash - 5.4_alpha_pre20251001
Ebuild name:

app-shells/bash-5.4_alpha_pre20251001

Description

The standard GNU Bourne again shell

Added to portage

2025-10-02

boto3 - 1.40.43
Ebuild name:

dev-python/boto3-1.40.43

Description

The AWS SDK for Python

Added to portage

2025-10-02

botocore - 1.40.43
Ebuild name:

dev-python/botocore-1.40.43

Description

Low-level, data-driven core of boto 3

Added to portage

2025-10-02

ccache - 4.12.1
Ebuild name:

dev-util/ccache-4.12.1

Description

Fast compiler cache

Added to portage

2025-10-02

clamav - 0.103.12-r3
Ebuild name:

app-antivirus/clamav-0.103.12-r3

Description

Clam Anti-Virus Scanner

Added to portage

2025-10-02

click-option-group - 0.5.8
Ebuild name:

dev-python/click-option-group-0.5.8

Description

Click-extension package that adds option groups missing in Clic

Added to portage

2025-10-02

croc - 10.2.5
Ebuild name:

net-misc/croc-10.2.5

Description

Easily and securely send things from one computer to another

Added to portage

2025-10-02

dist-kernel - 6.16.9_p1
Ebuild name:

virtual/dist-kernel-6.16.9_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-02

django - 4.2.25
Ebuild name:

dev-python/django-4.2.25

Description

High-level Python web framework

Added to portage

2025-10-02

django - 5.1.13
Ebuild name:

dev-python/django-5.1.13

Description

High-level Python web framework

Added to portage

2025-10-02

django - 5.2.7
Ebuild name:

dev-python/django-5.2.7

Description

High-level Python web framework

Added to portage

2025-10-02

dovecot - 2.4.1-r4
Ebuild name:

net-mail/dovecot-2.4.1-r4

Description

An IMAP and POP3 server written with security primarily in mind

Added to portage

2025-10-02

gentoo-kernel - 6.16.9_p1
Ebuild name:

sys-kernel/gentoo-kernel-6.16.9_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-02

gentoo-kernel-bin - 6.16.9_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.16.9_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-02

google-api-python-client - 2.184.0
Ebuild name:

dev-python/google-api-python-client-2.184.0

Description

Google API Client for Python

Added to portage

2025-10-02

gpgme - 2.0.1
Ebuild name:

app-crypt/gpgme-2.0.1

Description

GnuPG Made Easy is a library for making GnuPG easier to use

Added to portage

2025-10-02

inline-snapshot - 0.29.2
Ebuild name:

dev-python/inline-snapshot-0.29.2

Description

Create and update inline snapshots in your Python tests

Added to portage

2025-10-02

isort - 6.1.0
Ebuild name:

dev-python/isort-6.1.0

Description

A python utility/library to sort imports

Added to portage

2025-10-02

libcork - 0.15.0-r3
Ebuild name:

net-libs/libcork-0.15.0-r3

Description

Simple, easily embeddable cross-platform C library

Added to portage

2025-10-02

linux-headers - 6.16-r2
Ebuild name:

sys-kernel/linux-headers-6.16-r2

Description

Added to portage

2025-10-02

linux-headers - 6.17-r1
Ebuild name:

sys-kernel/linux-headers-6.17-r1

Description

Added to portage

2025-10-02

m2crypto - 0.46.0
Ebuild name:

dev-python/m2crypto-0.46.0

Description

A Python crypto and SSL toolkit

Added to portage

2025-10-02

mesa - 25.2.4
Ebuild name:

media-libs/mesa-25.2.4

Description

OpenGL-like graphic library for Linux

Added to portage

2025-10-02

mesa_clc - 25.2.4
Ebuild name:

dev-util/mesa_clc-25.2.4

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2025-10-02

mumble - 1.5.735-r2
Ebuild name:

net-voip/mumble-1.5.735-r2

Description

Mumble is an open source, low-latency, high quality voice chat software

Added to portage

2025-10-02

mumble - 1.6.0_pre20250920-r1
Ebuild name:

net-voip/mumble-1.6.0_pre20250920-r1

Description

Mumble is an open source, low-latency, high quality voice chat

Added to portage

2025-10-02

openssl - 3.0.18
Ebuild name:

dev-libs/openssl-3.0.18

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security

Added to portage

2025-10-02

openssl - 3.2.6
Ebuild name:

dev-libs/openssl-3.2.6

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security (

Added to portage

2025-10-02

openssl - 3.3.5
Ebuild name:

dev-libs/openssl-3.3.5

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security (

Added to portage

2025-10-02

openssl - 3.4.3
Ebuild name:

dev-libs/openssl-3.4.3

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security (

Added to portage

2025-10-02

openssl - 3.5.4
Ebuild name:

dev-libs/openssl-3.5.4

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security (

Added to portage

2025-10-02

openssl - 3.6.0
Ebuild name:

dev-libs/openssl-3.6.0

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security (

Added to portage

2025-10-02

openssl - 3.6.9999
Ebuild name:

dev-libs/openssl-3.6.9999

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Securit

Added to portage

2025-10-02

pam - 1.7.1-r1
Ebuild name:

sys-libs/pam-1.7.1-r1

Description

Linux-PAM (Pluggable Authentication Modules)

Added to portage

2025-10-02

php - 8.3.26
Ebuild name:

dev-lang/php-8.3.26

Description

The PHP language runtime engine

Added to portage

2025-10-02

php - 8.4.13
Ebuild name:

dev-lang/php-8.4.13

Description

The PHP language runtime engine

Added to portage

2025-10-02

popwin - 1.0.2
Ebuild name:

app-emacs/popwin-1.0.2

Description

Popup window manager for Emacs

Added to portage

2025-10-02

portage - 3.0.69.3
Ebuild name:

sys-apps/portage-3.0.69.3

Description

The package management and distribution system for Gentoo

Added to portage

2025-10-02

pydantic-core - 2.40.0
Ebuild name:

dev-python/pydantic-core-2.40.0

Description

Core validation logic for pydantic written in Rust

Added to portage

2025-10-02

pymongo - 4.15.2
Ebuild name:

dev-python/pymongo-4.15.2

Description

Python driver for MongoDB

Added to portage

2025-10-02

pyproject-fmt - 2.7.0
Ebuild name:

dev-python/pyproject-fmt-2.7.0

Description

Format your pyproject.toml file

Added to portage

2025-10-02

pyxdameraulevenshtein - 1.9.0
Ebuild name:

dev-python/pyxdameraulevenshtein-1.9.0

Description

Implements the Damerau-Levenshtein edit distance algorithm f

Added to portage

2025-10-02

spyder-kernels - 3.1.0
Ebuild name:

dev-python/spyder-kernels-3.1.0

Description

Kernels used by spyder on its ipython console

Added to portage

2025-10-02

st - 0.9.3
Ebuild name:

x11-terms/st-0.9.3

Description

Simple terminal implementation for X

Added to portage

2025-10-02

st-terminfo - 0.9.3
Ebuild name:

x11-terms/st-terminfo-0.9.3

Description

Terminfo for x11-terms/st

Added to portage

2025-10-02

types-psutil - 7.0.0.20251001
Ebuild name:

dev-python/types-psutil-7.0.0.20251001

Description

Typing stubs for psutil

Added to portage

2025-10-02

zfs - 2.4.0_rc2
Ebuild name:

sys-fs/zfs-2.4.0_rc2

Description

Userland utilities for ZFS Linux kernel module

Added to portage

2025-10-02

zfs-kmod - 2.4.0_rc2
Ebuild name:

sys-fs/zfs-kmod-2.4.0_rc2

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2025-10-02

zsh - 5.9.0.3-r1
Ebuild name:

app-shells/zsh-5.9.0.3-r1

Description

UNIX Shell similar to the Korn shell

Added to portage

2025-10-02

2025-10-01
alsa-scarlett-gui - 0.5.1
Ebuild name:

media-sound/alsa-scarlett-gui-0.5.1

Description

A UI for Focusrite Scarlett and Clarett audio interfaces

Added to portage

2025-10-01

apprise - 1.9.5
Ebuild name:

dev-python/apprise-1.9.5

Description

Push Notifications that work with just about every platform

Added to portage

2025-10-01

awscli - 1.42.42
Ebuild name:

app-admin/awscli-1.42.42

Description

Universal Command Line Environment for AWS

Added to portage

2025-10-01

bash - 5.2_p37-r5
Ebuild name:

app-shells/bash-5.2_p37-r5

Description

The standard GNU Bourne again shell

Added to portage

2025-10-01

bash - 5.3_p3-r3
Ebuild name:

app-shells/bash-5.3_p3-r3

Description

The standard GNU Bourne again shell

Added to portage

2025-10-01

bash - 5.4_alpha_pre20250918-r2
Ebuild name:

app-shells/bash-5.4_alpha_pre20250918-r2

Description

The standard GNU Bourne again shell

Added to portage

2025-10-01

bash-completion - 2.16.0-r3
Ebuild name:

app-shells/bash-completion-2.16.0-r3

Description

Programmable Completion for bash

Added to portage

2025-10-01

boto3 - 1.40.42
Ebuild name:

dev-python/boto3-1.40.42

Description

The AWS SDK for Python

Added to portage

2025-10-01

botocore - 1.40.42
Ebuild name:

dev-python/botocore-1.40.42

Description

Low-level, data-driven core of boto 3

Added to portage

2025-10-01

browserpass - 3.1.2
Ebuild name:

www-plugins/browserpass-3.1.2

Description

WebExtension host binary for app-admin/pass, a UNIX password manager

Added to portage

2025-10-01

cfitsio - 4.6.3
Ebuild name:

sci-libs/cfitsio-4.6.3

Description

C and Fortran library for manipulating FITS files

Added to portage

2025-10-01

chrome-binary-plugins - 141.0.7390.54
Ebuild name:

www-plugins/chrome-binary-plugins-141.0.7390.54

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2025-10-01

chromedriver-bin - 141.0.7390.54
Ebuild name:

www-apps/chromedriver-bin-141.0.7390.54

Description

WebDriver for Chrome

Added to portage

2025-10-01

chromium - 141.0.7390.54
Ebuild name:

www-client/chromium-141.0.7390.54

Description

Open-source version of Google Chrome web browser

Added to portage

2025-10-01

clang - 22.0.0_pre20251001
Ebuild name:

dev-python/clang-22.0.0_pre20251001

Description

Python bindings for llvm-core/clang

Added to portage

2025-10-01

clang - 22.0.0_pre20251001
Ebuild name:

llvm-core/clang-22.0.0_pre20251001

Description

C language family frontend for LLVM

Added to portage

2025-10-01

clang-common - 22.0.0_pre20251001
Ebuild name:

llvm-core/clang-common-22.0.0_pre20251001

Description

Common files shared between multiple slots of clang

Added to portage

2025-10-01

claude-code - 2.0.1
Ebuild name:

dev-util/claude-code-2.0.1

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-10-01

cmake - 3.31.9
Ebuild name:

dev-build/cmake-3.31.9

Description

Cross platform Make

Added to portage

2025-10-01

cmake - 4.1.2
Ebuild name:

dev-build/cmake-4.1.2

Description

Cross platform Make

Added to portage

2025-10-01

cmdliner - 2.0.0
Ebuild name:

dev-ml/cmdliner-2.0.0

Description

Declarative definition of command line interfaces for OCaml

Added to portage

2025-10-01

compiler-rt - 22.0.0_pre20251001
Ebuild name:

llvm-runtimes/compiler-rt-22.0.0_pre20251001

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-10-01

compiler-rt-sanitizers - 22.0.0_pre20251001
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-22.0.0_pre20251001

Description

Compiler runtime libraries for clang (sanit

Added to portage

2025-10-01

cryptography - 46.0.2
Ebuild name:

dev-python/cryptography-46.0.2

Description

Library providing cryptographic recipes and primitives

Added to portage

2025-10-01

dbeaver-bin - 25.1.4-r1
Ebuild name:

dev-db/dbeaver-bin-25.1.4-r1

Description

Free universal database tool (community edition)

Added to portage

2025-10-01

dbeaver-bin - 25.2.0-r1
Ebuild name:

dev-db/dbeaver-bin-25.2.0-r1

Description

Free universal database tool (community edition)

Added to portage

2025-10-01

eisl - 5.55
Ebuild name:

dev-lang/eisl-5.55

Description

Interpreter and compiler compatible with the ISLisp standard

Added to portage

2025-10-01

fastimport - 0.9.16
Ebuild name:

dev-python/fastimport-0.9.16

Description

Library for parsing the fastimport VCS serialization format

Added to portage

2025-10-01

firefox - 143.0.3
Ebuild name:

www-client/firefox-143.0.3

Description

Firefox Web Browser

Added to portage

2025-10-01

firefox-bin - 143.0.3
Ebuild name:

www-client/firefox-bin-143.0.3

Description

Firefox Web Browser

Added to portage

2025-10-01

flang - 22.0.0_pre20251001
Ebuild name:

llvm-core/flang-22.0.0_pre20251001

Description

LLVM's Fortran frontend

Added to portage

2025-10-01

flang-rt - 22.0.0_pre20251001
Ebuild name:

llvm-runtimes/flang-rt-22.0.0_pre20251001

Description

LLVM's Fortran runtime

Added to portage

2025-10-01

freesolid - 2.1.2-r1
Ebuild name:

dev-games/freesolid-2.1.2-r1

Description

Library for collision detection of three-dimensional objects

Added to portage

2025-10-01

fwbuilder - 6.0.0_rc1_p20230723
Ebuild name:

net-firewall/fwbuilder-6.0.0_rc1_p20230723

Description

Firewall management GUI for iptables, PF, Cisco routers

Added to portage

2025-10-01

google-auth - 2.41.1
Ebuild name:

dev-python/google-auth-2.41.1

Description

Google Authentication Library

Added to portage

2025-10-01

google-chrome - 141.0.7390.54
Ebuild name:

www-client/google-chrome-141.0.7390.54

Description

The web browser from Google

Added to portage

2025-10-01

gsd - 4.1.0
Ebuild name:

dev-python/gsd-4.1.0

Description

GSD - file format specification and a library to read and write it

Added to portage

2025-10-01

imagemagick - 6.9.13.29
Ebuild name:

media-gfx/imagemagick-6.9.13.29

Description

A collection of tools and libraries for many image formats

Added to portage

2025-10-01

imagemagick - 7.1.2.3
Ebuild name:

media-gfx/imagemagick-7.1.2.3

Description

A collection of tools and libraries for many image formats

Added to portage

2025-10-01

jack-keyboard - 2.7.2-r2
Ebuild name:

media-sound/jack-keyboard-2.7.2-r2

Description

Virtual MIDI keyboard for JACK MIDI

Added to portage

2025-10-01

kitty - 0.43.1
Ebuild name:

x11-terms/kitty-0.43.1

Description

Fast, feature-rich, GPU-based terminal

Added to portage

2025-10-01

kitty-shell-integration - 0.43.1
Ebuild name:

x11-terms/kitty-shell-integration-0.43.1

Description

Shell integration scripts for kitty, a GPU-based terminal

Added to portage

2025-10-01

kitty-terminfo - 0.43.1
Ebuild name:

x11-terms/kitty-terminfo-0.43.1

Description

Terminfo for kitty, a GPU-based terminal emulator

Added to portage

2025-10-01

kube-apiserver - 1.34.1
Ebuild name:

sys-cluster/kube-apiserver-1.34.1

Description

Kubernetes API server

Added to portage

2025-10-01

kube-controller-manager - 1.34.1
Ebuild name:

sys-cluster/kube-controller-manager-1.34.1

Description

Kubernetes Controller Manager

Added to portage

2025-10-01

kube-proxy - 1.34.1
Ebuild name:

sys-cluster/kube-proxy-1.34.1

Description

Kubernetes Proxy service

Added to portage

2025-10-01

kube-scheduler - 1.34.1
Ebuild name:

sys-cluster/kube-scheduler-1.34.1

Description

Kubernetes Scheduler

Added to portage

2025-10-01

kubeadm - 1.34.1
Ebuild name:

sys-cluster/kubeadm-1.34.1

Description

CLI to Easily bootstrap a secure Kubernetes cluster

Added to portage

2025-10-01

kubectl - 1.34.1
Ebuild name:

sys-cluster/kubectl-1.34.1

Description

CLI to run commands against Kubernetes clusters

Added to portage

2025-10-01

kubelet - 1.34.1
Ebuild name:

sys-cluster/kubelet-1.34.1

Description

Kubernetes Node Agent

Added to portage

2025-10-01

libclc - 22.0.0_pre20251001
Ebuild name:

llvm-core/libclc-22.0.0_pre20251001

Description

OpenCL C library

Added to portage

2025-10-01

libcxx - 22.0.0_pre20251001
Ebuild name:

llvm-runtimes/libcxx-22.0.0_pre20251001

Description

New implementation of the C++ standard library, targeting C

Added to portage

2025-10-01

libcxxabi - 22.0.0_pre20251001
Ebuild name:

llvm-runtimes/libcxxabi-22.0.0_pre20251001

Description

Low level support for a standard C++ library

Added to portage

2025-10-01

libgcc - 22.0.0_pre20251001
Ebuild name:

llvm-runtimes/libgcc-22.0.0_pre20251001

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2025-10-01

libunwind - 22.0.0_pre20251001
Ebuild name:

llvm-runtimes/libunwind-22.0.0_pre20251001

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-10-01

lit - 22.0.0_pre20251001
Ebuild name:

dev-python/lit-22.0.0_pre20251001

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-10-01

lld - 22.0.0_pre20251001
Ebuild name:

llvm-core/lld-22.0.0_pre20251001

Description

The LLVM linker (link editor)

Added to portage

2025-10-01

lldb - 22.0.0_pre20251001
Ebuild name:

llvm-core/lldb-22.0.0_pre20251001

Description

The LLVM debugger

Added to portage

2025-10-01

llvm - 22.0.0_pre20251001
Ebuild name:

dev-ml/llvm-22.0.0_pre20251001

Description

OCaml bindings for LLVM

Added to portage

2025-10-01

llvm - 22.0.0_pre20251001
Ebuild name:

llvm-core/llvm-22.0.0_pre20251001

Description

Low Level Virtual Machine

Added to portage

2025-10-01

llvm-common - 22.0.0_pre20251001
Ebuild name:

llvm-core/llvm-common-22.0.0_pre20251001

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-10-01

lockfile-progs - 0.2.0
Ebuild name:

app-misc/lockfile-progs-0.2.0

Description

Programs to safely lock/unlock files and mailboxes

Added to portage

2025-10-01

microsoft-edge-beta - 141.0.3537.44
Ebuild name:

www-client/microsoft-edge-beta-141.0.3537.44

Description

The web browser from Microsoft

Added to portage

2025-10-01

microsoft-edge-dev - 142.0.3581.0
Ebuild name:

www-client/microsoft-edge-dev-142.0.3581.0

Description

The web browser from Microsoft

Added to portage

2025-10-01

mime-types-data - 3.2025.0924
Ebuild name:

dev-ruby/mime-types-data-3.2025.0924

Description

Registry for information about MIME media type definitions

Added to portage

2025-10-01

mkdocs-material - 9.6.21
Ebuild name:

dev-python/mkdocs-material-9.6.21

Description

A Material Design theme for MkDocs

Added to portage

2025-10-01

mlir - 22.0.0_pre20251001
Ebuild name:

llvm-core/mlir-22.0.0_pre20251001

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-10-01

moor - 2.4.0
Ebuild name:

sys-apps/moor-2.4.0

Description

Pager designed to do the right thing without any configuration

Added to portage

2025-10-01

mydumper - 0.20.1.2
Ebuild name:

dev-db/mydumper-0.20.1.2

Description

A high-performance multi-threaded backup (and restore) toolset for MySQL

Added to portage

2025-10-01

mypaint - 2.0.1-r6
Ebuild name:

media-gfx/mypaint-2.0.1-r6

Description

Fast and easy graphics application for digital painters

Added to portage

2025-10-01

nbxmpp - 6.3.1
Ebuild name:

dev-python/nbxmpp-6.3.1

Description

Python library to use Jabber/XMPP networks in a non-blocking way

Added to portage

2025-10-01

ndppd - 0.2.6
Ebuild name:

net-misc/ndppd-0.2.6

Description

Proxies NDP messages between interfaces

Added to portage

2025-10-01

nextcloud - 30.0.16
Ebuild name:

www-apps/nextcloud-30.0.16

Description

Personal cloud that runs on your own server

Added to portage

2025-10-01

nextcloud - 32.0.0
Ebuild name:

www-apps/nextcloud-32.0.0

Description

Personal cloud that runs on your own server

Added to portage

2025-10-01

numexpr - 2.13.1
Ebuild name:

dev-python/numexpr-2.13.1

Description

Fast numerical array expression evaluator for Python and NumPy

Added to portage

2025-10-01

offload - 22.0.0_pre20251001
Ebuild name:

llvm-runtimes/offload-22.0.0_pre20251001

Description

OpenMP offloading support

Added to portage

2025-10-01

openmp - 22.0.0_pre20251001
Ebuild name:

llvm-runtimes/openmp-22.0.0_pre20251001

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-10-01

opera - 122.0.5643.92
Ebuild name:

www-client/opera-122.0.5643.92

Description

A fast and secure web browser

Added to portage

2025-10-01

opera-developer - 124.0.5670.0
Ebuild name:

www-client/opera-developer-124.0.5670.0

Description

A fast and secure web browser

Added to portage

2025-10-01

pandoc-bin - 3.8.1
Ebuild name:

app-text/pandoc-bin-3.8.1

Description

Conversion between markup formats (binary package)

Added to portage

2025-10-01

passlib - 1.7.4-r4
Ebuild name:

dev-python/passlib-1.7.4-r4

Description

Password hashing framework supporting over 20 schemes

Added to portage

2025-10-01

patchutils - 0.4.4
Ebuild name:

dev-util/patchutils-0.4.4

Description

Collection of tools that operate on patch files

Added to portage

2025-10-01

pipx - 1.8.0
Ebuild name:

dev-python/pipx-1.8.0

Description

Install and Run Python Applications in Isolated Environments

Added to portage

2025-10-01

polly - 22.0.0_pre20251001
Ebuild name:

llvm-core/polly-22.0.0_pre20251001

Description

Polyhedral optimizations for LLVM

Added to portage

2025-10-01

popwin - 1.0.2
Ebuild name:

app-emacs/popwin-1.0.2

Description

Popup window manager for Emacs

Added to portage

2025-10-01

pos-tip - 0.4.7
Ebuild name:

app-emacs/pos-tip-0.4.7

Description

Show tooltip at point

Added to portage

2025-10-01

posframe - 1.4.4
Ebuild name:

app-emacs/posframe-1.4.4

Description

Pop up a frame at point

Added to portage

2025-10-01

pov-mode - 3.3-r1
Ebuild name:

app-emacs/pov-mode-3.3-r1

Description

Major mode for Povray scene files

Added to portage

2025-10-01

powerline - 2.5_p20221110
Ebuild name:

app-emacs/powerline-2.5_p20221110

Description

GNU Emacs version of the Vim powerline

Added to portage

2025-10-01

powershell - 0.3_pre20220402
Ebuild name:

app-emacs/powershell-0.3_pre20220402

Description

GNU Emacs mode for editing and running PowerShell code

Added to portage

2025-10-01

powershell - 0.3_pre20220805
Ebuild name:

app-emacs/powershell-0.3_pre20220805

Description

GNU Emacs mode for editing and running PowerShell code

Added to portage

2025-10-01

public-inbox - 1.9.0_p20250930
Ebuild name:

net-mail/public-inbox-1.9.0_p20250930

Description

An archives-first approach to mailing lists

Added to portage

2025-10-01

qhull - 2020.2.8.1_alpha6
Ebuild name:

media-libs/qhull-2020.2.8.1_alpha6

Description

Geometry library

Added to portage

2025-10-01

qt-creator - 17.0.2
Ebuild name:

dev-qt/qt-creator-17.0.2

Description

Lightweight IDE for C++/QML development centering around Qt

Added to portage

2025-10-01

reaper-bin - 7.47
Ebuild name:

media-sound/reaper-bin-7.47

Description

Digital audio workstation

Added to portage

2025-10-01

roccat-tools - 5.9.0-r102
Ebuild name:

sys-apps/roccat-tools-5.9.0-r102

Description

Utility for advanced configuration of Roccat devices

Added to portage

2025-10-01

sane-airscan - 0.99.36
Ebuild name:

media-gfx/sane-airscan-0.99.36

Description

SANE backend for AirScan (eSCL) and WSD document scanners

Added to portage

2025-10-01

scipy - 1.16.2-r1
Ebuild name:

dev-python/scipy-1.16.2-r1

Description

Scientific algorithms library for Python

Added to portage

2025-10-01

simdjson - 4.0.7
Ebuild name:

dev-libs/simdjson-4.0.7

Description

SIMD accelerated C++ JSON library

Added to portage

2025-10-01

sqlglot - 27.20.0
Ebuild name:

dev-python/sqlglot-27.20.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-10-01

sqlite3 - 2.7.4
Ebuild name:

dev-ruby/sqlite3-2.7.4

Description

An extension library to access a SQLite database from Ruby

Added to portage

2025-10-01

stripe - 13.0.0
Ebuild name:

dev-python/stripe-13.0.0

Description

Stripe Python bindings

Added to portage

2025-10-01

synapse - 1.139.0
Ebuild name:

net-im/synapse-1.139.0

Description

Reference implementation of Matrix homeserver

Added to portage

2025-10-01

task - 2.6.2-r1
Ebuild name:

app-misc/task-2.6.2-r1

Description

Taskwarrior is a command-line todo list manager

Added to portage

2025-10-01

tins - 1.44.1
Ebuild name:

dev-ruby/tins-1.44.1

Description

All the stuff that isn't good enough for a real library

Added to portage

2025-10-01

typescript - 5.9.3
Ebuild name:

dev-lang/typescript-5.9.3

Description

Superset of JavaScript with optional static typing, classes and interface

Added to portage

2025-10-01

winbox - 4.0_beta33
Ebuild name:

app-admin/winbox-4.0_beta33

Description

Management Software for MikroTik RouterOS

Added to portage

2025-10-01

wordpress - 6.8.3
Ebuild name:

www-apps/wordpress-6.8.3

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2025-10-01

xarray - 2025.9.1
Ebuild name:

dev-python/xarray-2025.9.1

Description

N-D labeled arrays and datasets in Python

Added to portage

2025-10-01

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