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:

73040

userrating:

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


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: 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: no votes yet
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-03-12
aurorae - 6.3.3
Ebuild name:

kde-plasma/aurorae-6.3.3

Description

Themeable window decoration for KWin

Added to portage

2025-03-12

batteries - 3.5.1-r1
Ebuild name:

dev-ml/batteries-3.5.1-r1

Description

A community-maintained standard library extension

Added to portage

2025-03-12

batteries - 3.6.0-r2
Ebuild name:

dev-ml/batteries-3.6.0-r2

Description

A community-maintained standard library extension

Added to portage

2025-03-12

batteries - 3.6.1-r1
Ebuild name:

dev-ml/batteries-3.6.1-r1

Description

A community-maintained standard library extension

Added to portage

2025-03-12

batteries - 3.8.0-r1
Ebuild name:

dev-ml/batteries-3.8.0-r1

Description

A community-maintained standard library extension

Added to portage

2025-03-12

bluedevil - 6.3.3
Ebuild name:

kde-plasma/bluedevil-6.3.3

Description

Bluetooth stack for KDE Plasma

Added to portage

2025-03-12

breeze - 6.3.3
Ebuild name:

kde-plasma/breeze-6.3.3

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-03-12

breeze-grub - 6.3.3
Ebuild name:

kde-plasma/breeze-grub-6.3.3

Description

Breeze theme for GRUB

Added to portage

2025-03-12

breeze-gtk - 6.3.3
Ebuild name:

kde-plasma/breeze-gtk-6.3.3

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2025-03-12

breeze-plymouth - 6.3.3
Ebuild name:

kde-plasma/breeze-plymouth-6.3.3

Description

Breeze theme for Plymouth

Added to portage

2025-03-12

camldbm - 1.2-r1
Ebuild name:

dev-ml/camldbm-1.2-r1

Description

OCaml binding to the NDBM/GDBM Unix databases

Added to portage

2025-03-12

discover - 6.3.3
Ebuild name:

kde-plasma/discover-6.3.3

Description

KDE Plasma resources management GUI

Added to portage

2025-03-12

drkonqi - 6.3.3
Ebuild name:

kde-plasma/drkonqi-6.3.3

Description

Plasma crash handler, gives the user feedback if a program crashed

Added to portage

2025-03-12

flatpak-kcm - 6.3.3
Ebuild name:

kde-plasma/flatpak-kcm-6.3.3

Description

Flatpak Permissions Management KCM

Added to portage

2025-03-12

gsl-ocaml - 1.24.3-r2
Ebuild name:

dev-ml/gsl-ocaml-1.24.3-r2

Description

OCaml bindings for the GSL library (successor of dev-ml/ocamlgsl)

Added to portage

2025-03-12

kactivitymanagerd - 6.3.3
Ebuild name:

kde-plasma/kactivitymanagerd-6.3.3

Description

System service to manage user's activities, track the usage patt

Added to portage

2025-03-12

kde-cli-tools - 6.3.3
Ebuild name:

kde-plasma/kde-cli-tools-6.3.3

Description

Tools based on KDE Frameworks 6 to better interact with the system

Added to portage

2025-03-12

kde-cli-tools-common - 6.3.3
Ebuild name:

kde-plasma/kde-cli-tools-common-6.3.3

Description

Added to portage

2025-03-12

kde-gtk-config - 6.3.3
Ebuild name:

kde-plasma/kde-gtk-config-6.3.3

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2025-03-12

kdecoration - 6.3.3
Ebuild name:

kde-plasma/kdecoration-6.3.3

Description

Plugin based library to create window decorations

Added to portage

2025-03-12

kdeplasma-addons - 6.3.3
Ebuild name:

kde-plasma/kdeplasma-addons-6.3.3

Description

Extra Plasma applets and engines

Added to portage

2025-03-12

kdesu-gui - 6.3.3
Ebuild name:

kde-plasma/kdesu-gui-6.3.3

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2025-03-12

keditfiletype - 6.3.3
Ebuild name:

kde-plasma/keditfiletype-6.3.3

Description

File Type Editor

Added to portage

2025-03-12

kgamma - 6.3.3
Ebuild name:

kde-plasma/kgamma-6.3.3

Description

Screen gamma values kcontrol module

Added to portage

2025-03-12

kglobalacceld - 6.3.3
Ebuild name:

kde-plasma/kglobalacceld-6.3.3

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2025-03-12

kinfocenter - 6.3.3
Ebuild name:

kde-plasma/kinfocenter-6.3.3

Description

Utility providing information about the computer hardware

Added to portage

2025-03-12

kmenuedit - 6.3.3
Ebuild name:

kde-plasma/kmenuedit-6.3.3

Description

KDE Plasma menu editor

Added to portage

2025-03-12

kpipewire - 6.3.3
Ebuild name:

kde-plasma/kpipewire-6.3.3

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2025-03-12

krdp - 6.3.3
Ebuild name:

kde-plasma/krdp-6.3.3

Description

Library and examples for creating an RDP server

Added to portage

2025-03-12

kscreen - 6.3.3
Ebuild name:

kde-plasma/kscreen-6.3.3

Description

KDE Plasma screen management

Added to portage

2025-03-12

kscreenlocker - 6.3.3
Ebuild name:

kde-plasma/kscreenlocker-6.3.3

Description

Library and components for secure lock screen architecture

Added to portage

2025-03-12

ksshaskpass - 6.3.3
Ebuild name:

kde-plasma/ksshaskpass-6.3.3

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2025-03-12

ksystemstats - 6.3.3
Ebuild name:

kde-plasma/ksystemstats-6.3.3

Description

Plugin-based system monitoring daemon

Added to portage

2025-03-12

kwallet-pam - 6.3.3
Ebuild name:

kde-plasma/kwallet-pam-6.3.3

Description

PAM module to not enter KWallet password again after login

Added to portage

2025-03-12

kwayland - 6.3.3
Ebuild name:

kde-plasma/kwayland-6.3.3

Description

Qt-style API to interact with the wayland-client API

Added to portage

2025-03-12

kwayland-integration - 6.3.3
Ebuild name:

kde-plasma/kwayland-integration-6.3.3

Description

Provides KWindowSystem integration plugin for Wayland

Added to portage

2025-03-12

kwin - 6.3.3
Ebuild name:

kde-plasma/kwin-6.3.3

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-03-12

lablgl - 1.06-r2
Ebuild name:

dev-ml/lablgl-1.06-r2

Description

Objective CAML interface for OpenGL

Added to portage

2025-03-12

mongodb-compass-bin - 1.45.4
Ebuild name:

dev-db/mongodb-compass-bin-1.45.4

Description

GUI for MongoDB

Added to portage

2025-03-12

ocamlnet - 4.1.8-r2
Ebuild name:

dev-ml/ocamlnet-4.1.8-r2

Description

Modules for OCaml application-level Internet protocols

Added to portage

2025-03-12

ocamlnet - 4.1.9-r2
Ebuild name:

dev-ml/ocamlnet-4.1.9-r2

Description

Modules for OCaml application-level Internet protocols

Added to portage

2025-03-12

ocamlsdl - 0.9.1-r1
Ebuild name:

dev-ml/ocamlsdl-0.9.1-r1

Description

OCaml SDL Bindings

Added to portage

2025-03-12

ocamlweb - 1.41-r2
Ebuild name:

dev-ml/ocamlweb-1.41-r2

Description

O'Caml literate programming tool

Added to portage

2025-03-12

openjdk - 25_p13
Ebuild name:

dev-java/openjdk-25_p13

Description

Open source implementation of the Java programming language

Added to portage

2025-03-12

openjdk-bin - 25_p13_beta
Ebuild name:

dev-java/openjdk-bin-25_p13_beta

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2025-03-12

stdcompat - 19-r2
Ebuild name:

dev-ml/stdcompat-19-r2

Description

Compatibility module for OCaml standard library

Added to portage

2025-03-12

typerep - 0.14.0-r1
Ebuild name:

dev-ml/typerep-0.14.0-r1

Description

Library for creating runtime representation of OCaml types

Added to portage

2025-03-12

typerep - 0.15.0-r1
Ebuild name:

dev-ml/typerep-0.15.0-r1

Description

Library for creating runtime representation of OCaml types

Added to portage

2025-03-12

typerep - 0.16.0-r1
Ebuild name:

dev-ml/typerep-0.16.0-r1

Description

Library for creating runtime representation of OCaml types

Added to portage

2025-03-12

winbox - 4.0_beta18
Ebuild name:

app-admin/winbox-4.0_beta18

Description

Management Software for MikroTik RouterOS

Added to portage

2025-03-12

2025-03-11
acme - 2.11.1
Ebuild name:

app-crypt/acme-2.11.1

Description

An implementation of the ACME protocol

Added to portage

2025-03-11

alephone - 20240822-r1
Ebuild name:

games-fps/alephone-20240822-r1

Description

An enhanced version of the game engine from the classic Mac game, Ma

Added to portage

2025-03-11

alephone - 20250302-r1
Ebuild name:

games-fps/alephone-20250302-r1

Description

An enhanced version of the game engine from the classic Mac game, Ma

Added to portage

2025-03-11

awscli - 1.38.10
Ebuild name:

app-admin/awscli-1.38.10

Description

Universal Command Line Environment for AWS

Added to portage

2025-03-11

beets - 1.7.0_pre20240501-r1
Ebuild name:

media-sound/beets-1.7.0_pre20240501-r1

Description

Media library management system for obsessive music geeks

Added to portage

2025-03-11

beets - 2.2.0-r1
Ebuild name:

media-sound/beets-2.2.0-r1

Description

Media library management system for obsessive music geeks

Added to portage

2025-03-11

blender - 3.6.15-r1
Ebuild name:

media-gfx/blender-3.6.15-r1

Description

3D Creation/Animation/Publishing System

Added to portage

2025-03-11

blender - 3.6.18-r1
Ebuild name:

media-gfx/blender-3.6.18-r1

Description

3D Creation/Animation/Publishing System

Added to portage

2025-03-11

blender - 3.6.8-r1
Ebuild name:

media-gfx/blender-3.6.8-r1

Description

3D Creation/Animation/Publishing System

Added to portage

2025-03-11

blender - 4.1.1-r3
Ebuild name:

media-gfx/blender-4.1.1-r3

Description

3D Creation/Animation/Publishing System

Added to portage

2025-03-11

blender - 4.1.1-r4
Ebuild name:

media-gfx/blender-4.1.1-r4

Description

3D Creation/Animation/Publishing System

Added to portage

2025-03-11

blender - 4.2.1-r1
Ebuild name:

media-gfx/blender-4.2.1-r1

Description

3D Creation/Animation/Publishing System

Added to portage

2025-03-11

blender - 4.2.4-r1
Ebuild name:

media-gfx/blender-4.2.4-r1

Description

3D Creation/Animation/Publishing System

Added to portage

2025-03-11

blender - 4.3.2-r1
Ebuild name:

media-gfx/blender-4.3.2-r1

Description

3D Creation/Animation/Publishing System

Added to portage

2025-03-11

borgmatic - 1.9.14
Ebuild name:

app-backup/borgmatic-1.9.14

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2025-03-11

boto3 - 1.37.10
Ebuild name:

dev-python/boto3-1.37.10

Description

The AWS SDK for Python

Added to portage

2025-03-11

botocore - 1.37.10
Ebuild name:

dev-python/botocore-1.37.10

Description

Low-level, data-driven core of boto 3

Added to portage

2025-03-11

cadaver - 0.26
Ebuild name:

net-misc/cadaver-0.26

Description

Command-line WebDAV client

Added to portage

2025-03-11

calendar - 2.04-r1
Ebuild name:

dev-ml/calendar-2.04-r1

Description

Ocaml library to handle dates and time

Added to portage

2025-03-11

certbot - 2.11.1
Ebuild name:

app-crypt/certbot-2.11.1

Description

Let’s Encrypt client to automate deployment of X.509 certificates

Added to portage

2025-03-11

certbot-apache - 2.11.1
Ebuild name:

app-crypt/certbot-apache-2.11.1

Description

Apache plugin for Certbot (Let’s Encrypt client)

Added to portage

2025-03-11

certbot-dns-dnsimple - 2.11.1
Ebuild name:

app-crypt/certbot-dns-dnsimple-2.11.1

Description

DNSimple Authenticator plugin for Certbot (Let’s Encrypt Clie

Added to portage

2025-03-11

certbot-dns-nsone - 2.11.1
Ebuild name:

app-crypt/certbot-dns-nsone-2.11.1

Description

NS1 DNS Authenticator plugin for Certbot (Let’s Encrypt Client)

Added to portage

2025-03-11

certbot-nginx - 2.11.1
Ebuild name:

app-crypt/certbot-nginx-2.11.1

Description

Nginx plugin for Certbot (Let’s Encrypt client)

Added to portage

2025-03-11

cfn-lint - 1.29.1
Ebuild name:

dev-python/cfn-lint-1.29.1

Description

CloudFormation Linter

Added to portage

2025-03-11

chrome-binary-plugins - 134.0.6998.88
Ebuild name:

www-plugins/chrome-binary-plugins-134.0.6998.88

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2025-03-11

chrome-binary-plugins - 136.0.7052.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-136.0.7052.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-03-11

chromedriver-bin - 134.0.6998.88
Ebuild name:

www-apps/chromedriver-bin-134.0.6998.88

Description

WebDriver for Chrome

Added to portage

2025-03-11

chromium - 134.0.6998.88
Ebuild name:

www-client/chromium-134.0.6998.88

Description

Open-source version of Google Chrome web browser

Added to portage

2025-03-11

clang - 21.0.0_pre20250311
Ebuild name:

dev-python/clang-21.0.0_pre20250311

Description

Python bindings for llvm-core/clang

Added to portage

2025-03-11

clang - 21.0.0_pre20250311
Ebuild name:

llvm-core/clang-21.0.0_pre20250311

Description

C language family frontend for LLVM

Added to portage

2025-03-11

clang-common - 21.0.0_pre20250311
Ebuild name:

llvm-core/clang-common-21.0.0_pre20250311

Description

Common files shared between multiple slots of clang

Added to portage

2025-03-11

clang-runtime - 21.0.0_pre20250311
Ebuild name:

llvm-core/clang-runtime-21.0.0_pre20250311

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-03-11

cli-helpers - 2.4.0
Ebuild name:

dev-python/cli-helpers-2.4.0

Description

Python helpers for common CLI tasks

Added to portage

2025-03-11

compiler-rt - 21.0.0_pre20250311
Ebuild name:

llvm-runtimes/compiler-rt-21.0.0_pre20250311

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-03-11

compiler-rt-sanitizers - 21.0.0_pre20250311
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.0.0_pre20250311

Description

Compiler runtime libraries for clang (sanit

Added to portage

2025-03-11

cssselect - 1.3.0
Ebuild name:

dev-python/cssselect-1.3.0

Description

Parse CSS3 Selectors and translate them to XPath 1.0

Added to portage

2025-03-11

discord - 0.0.88
Ebuild name:

net-im/discord-0.0.88

Description

All-in-one voice and text chat for gamers

Added to portage

2025-03-11

dvdstyler - 3.2.1-r2
Ebuild name:

media-video/dvdstyler-3.2.1-r2

Description

A cross-platform free DVD authoring application

Added to portage

2025-03-11

faraday-multipart - 1.1.0
Ebuild name:

dev-ruby/faraday-multipart-1.1.0

Description

Perform multipart-post requests using Faraday

Added to portage

2025-03-11

ffdiaporama - 2.2_pre20240203-r1
Ebuild name:

media-video/ffdiaporama-2.2_pre20240203-r1

Description

Movie creator from photos and video clips

Added to portage

2025-03-11

ffmpeg - 4.4.5-r2
Ebuild name:

media-video/ffmpeg-4.4.5-r2

Description

Complete solution to record/convert/stream audio and video

Added to portage

2025-03-11

ffmpeg - 6.1.2-r1
Ebuild name:

media-video/ffmpeg-6.1.2-r1

Description

Complete solution to record/convert/stream audio and video

Added to portage

2025-03-11

ffmpeg - 7.1.1
Ebuild name:

media-video/ffmpeg-7.1.1

Description

Complete solution to record/convert/stream audio and video

Added to portage

2025-03-11

ffmpeg-compat - 4.4.5
Ebuild name:

media-video/ffmpeg-compat-4.4.5

Description

Complete solution to record/convert/stream audio and video

Added to portage

2025-03-11

ffmpeg-compat - 6.1.2
Ebuild name:

media-video/ffmpeg-compat-6.1.2

Description

Complete solution to record/convert/stream audio and video

Added to portage

2025-03-11

fish - 4.0.0-r1
Ebuild name:

app-shells/fish-4.0.0-r1

Description

Friendly Interactive SHell

Added to portage

2025-03-11

flang - 21.0.0_pre20250311
Ebuild name:

llvm-core/flang-21.0.0_pre20250311

Description

LLVM's Fortran frontend

Added to portage

2025-03-11

flang-rt - 21.0.0_pre20250311
Ebuild name:

llvm-runtimes/flang-rt-21.0.0_pre20250311

Description

LLVM's Fortran runtime

Added to portage

2025-03-11

gmsh - 4.13.1-r2
Ebuild name:

sci-libs/gmsh-4.13.1-r2

Description

Three-dimensional finite element mesh generator

Added to portage

2025-03-11

google-api-core - 2.24.2
Ebuild name:

dev-python/google-api-core-2.24.2

Description

Core Library for Google Client Libraries

Added to portage

2025-03-11

google-chrome - 134.0.6998.88
Ebuild name:

www-client/google-chrome-134.0.6998.88

Description

The web browser from Google

Added to portage

2025-03-11

google-chrome-unstable - 136.0.7052.2
Ebuild name:

www-client/google-chrome-unstable-136.0.7052.2

Description

The web browser from Google

Added to portage

2025-03-11

grpcio - 1.71.0
Ebuild name:

dev-python/grpcio-1.71.0

Description

HTTP/2-based RPC framework

Added to portage

2025-03-11

grpcio-status - 1.71.0
Ebuild name:

dev-python/grpcio-status-1.71.0

Description

Reference package for GRPC Python status proto mapping

Added to portage

2025-03-11

i2p - 2.8.0
Ebuild name:

net-vpn/i2p-2.8.0

Description

A privacy-centric, anonymous network

Added to portage

2025-03-11

kdenlive - 24.12.2-r1
Ebuild name:

kde-apps/kdenlive-24.12.2-r1

Description

Non-linear video editing suite by KDE

Added to portage

2025-03-11

kdenlive - 24.12.3-r1
Ebuild name:

kde-apps/kdenlive-24.12.3-r1

Description

Non-linear video editing suite by KDE

Added to portage

2025-03-11

kodi - 21.1-r2
Ebuild name:

media-tv/kodi-21.1-r2

Description

A free and open source media-player and entertainment hub

Added to portage

2025-03-11

kodi - 21.2-r1
Ebuild name:

media-tv/kodi-21.2-r1

Description

A free and open source media-player and entertainment hub

Added to portage

2025-03-11

libclc - 21.0.0_pre20250311
Ebuild name:

llvm-core/libclc-21.0.0_pre20250311

Description

OpenCL C library

Added to portage

2025-03-11

libcxx - 21.0.0_pre20250311
Ebuild name:

llvm-runtimes/libcxx-21.0.0_pre20250311

Description

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

Added to portage

2025-03-11

libcxxabi - 21.0.0_pre20250311
Ebuild name:

llvm-runtimes/libcxxabi-21.0.0_pre20250311

Description

Low level support for a standard C++ library

Added to portage

2025-03-11

libgcc - 21.0.0_pre20250311
Ebuild name:

llvm-runtimes/libgcc-21.0.0_pre20250311

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2025-03-11

libunwind - 21.0.0_pre20250311
Ebuild name:

llvm-runtimes/libunwind-21.0.0_pre20250311

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-03-11

lit - 21.0.0_pre20250311
Ebuild name:

dev-python/lit-21.0.0_pre20250311

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-03-11

lld - 21.0.0_pre20250311
Ebuild name:

llvm-core/lld-21.0.0_pre20250311

Description

The LLVM linker (link editor)

Added to portage

2025-03-11

lldb - 21.0.0_pre20250311
Ebuild name:

llvm-core/lldb-21.0.0_pre20250311

Description

The LLVM debugger

Added to portage

2025-03-11

llvm - 21.0.0_pre20250311
Ebuild name:

dev-ml/llvm-21.0.0_pre20250311

Description

OCaml bindings for LLVM

Added to portage

2025-03-11

llvm - 21.0.0_pre20250311
Ebuild name:

llvm-core/llvm-21.0.0_pre20250311

Description

Low Level Virtual Machine

Added to portage

2025-03-11

llvm-common - 21.0.0_pre20250311
Ebuild name:

llvm-core/llvm-common-21.0.0_pre20250311

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-03-11

magic-wormhole - 0.18.0
Ebuild name:

dev-python/magic-wormhole-0.18.0

Description

Get Things From One Computer To Another, Safely

Added to portage

2025-03-11

memtester - 4.7.1
Ebuild name:

sys-apps/memtester-4.7.1

Description

Userspace utility for testing the memory subsystem for faults

Added to portage

2025-03-11

microsoft-edge - 134.0.3124.51
Ebuild name:

www-client/microsoft-edge-134.0.3124.51

Description

The web browser from Microsoft

Added to portage

2025-03-11

microsoft-edge-beta - 134.0.3124.51
Ebuild name:

www-client/microsoft-edge-beta-134.0.3124.51

Description

The web browser from Microsoft

Added to portage

2025-03-11

mkdocs-git-revision-date-localized-plugin - 1.4.4
Ebuild name:

dev-python/mkdocs-git-revision-date-localized-plugin-1.4.4

Description

Display the localized date of the last g

Added to portage

2025-03-11

mkdocstrings - 0.29.0
Ebuild name:

dev-python/mkdocstrings-0.29.0

Description

Automatic documentation from sources, for MkDocs

Added to portage

2025-03-11

mkdocstrings-python - 1.16.5
Ebuild name:

dev-python/mkdocstrings-python-1.16.5

Description

Python handler for dev-python/mkdocstrings

Added to portage

2025-03-11

mlir - 21.0.0_pre20250311
Ebuild name:

llvm-core/mlir-21.0.0_pre20250311

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-03-11

moc - 2.6_alpha3-r8
Ebuild name:

media-sound/moc-2.6_alpha3-r8

Description

Music On Console - ncurses interface for playing audio files

Added to portage

2025-03-11

moonlight - 6.1.0-r2
Ebuild name:

net-misc/moonlight-6.1.0-r2

Description

NVIDIA GameStream (and Sunshine) client

Added to portage

2025-03-11

mpv - 0.39.0-r1
Ebuild name:

media-video/mpv-0.39.0-r1

Description

Media player for the command line

Added to portage

2025-03-11

multitail - 7.1.5-r1
Ebuild name:

app-text/multitail-7.1.5-r1

Description

Tail with multiple windows

Added to portage

2025-03-11

noad - 0.8.8-r1
Ebuild name:

media-video/noad-0.8.8-r1

Description

Mark commercial breaks in VDR recordings

Added to portage

2025-03-11

nuitka - 2.6.8
Ebuild name:

dev-python/nuitka-2.6.8

Description

Python to native compiler

Added to portage

2025-03-11

nv-codec-headers - 12.2.72.0
Ebuild name:

media-libs/nv-codec-headers-12.2.72.0

Description

FFmpeg version of headers required to interface with Nvidias

Added to portage

2025-03-11

nv-codec-headers - 13.0.19.0
Ebuild name:

media-libs/nv-codec-headers-13.0.19.0

Description

FFmpeg version of headers required to interface with Nvidias

Added to portage

2025-03-11

ocaml - 5.3.0
Ebuild name:

dev-lang/ocaml-5.3.0

Description

Programming language supporting functional, imperative & object-oriented style

Added to portage

2025-03-11

ocaml-compiler-libs - 0.12.3-r2
Ebuild name:

dev-ml/ocaml-compiler-libs-0.12.3-r2

Description

Repackage the OCaml compiler libs so they do not expose everyt

Added to portage

2025-03-11

ocaml-compiler-libs - 0.12.4-r2
Ebuild name:

dev-ml/ocaml-compiler-libs-0.12.4-r2

Description

Repackage the OCaml compiler libs so they do not expose everyt

Added to portage

2025-03-11

ocaml-gettext - 0.4.2-r2
Ebuild name:

dev-ml/ocaml-gettext-0.4.2-r2

Description

Provides support for internationalization of OCaml program

Added to portage

2025-03-11

offload - 21.0.0_pre20250311
Ebuild name:

llvm-runtimes/offload-21.0.0_pre20250311

Description

OpenMP offloading support

Added to portage

2025-03-11

opencolorio - 2.3.2-r1
Ebuild name:

media-libs/opencolorio-2.3.2-r1

Description

Color management framework for visual effects and animation

Added to portage

2025-03-11

opencolorio - 2.4.1-r1
Ebuild name:

media-libs/opencolorio-2.4.1-r1

Description

Color management framework for visual effects and animation

Added to portage

2025-03-11

openmp - 21.0.0_pre20250311
Ebuild name:

llvm-runtimes/openmp-21.0.0_pre20250311

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-03-11

opera - 117.0.5408.93
Ebuild name:

www-client/opera-117.0.5408.93

Description

A fast and secure web browser

Added to portage

2025-03-11

opera-beta - 118.0.5461.4
Ebuild name:

www-client/opera-beta-118.0.5461.4

Description

A fast and secure web browser

Added to portage

2025-03-11

opera-developer - 119.0.5467.0
Ebuild name:

www-client/opera-developer-119.0.5467.0

Description

A fast and secure web browser

Added to portage

2025-03-11

peek - 1.5.1-r2
Ebuild name:

media-video/peek-1.5.1-r2

Description

Simple animated Gif screen recorder

Added to portage

2025-03-11

polly - 21.0.0_pre20250311
Ebuild name:

llvm-core/polly-21.0.0_pre20250311

Description

Polyhedral optimizations for LLVM

Added to portage

2025-03-11

ppx_tools - 6.5-r1
Ebuild name:

dev-ml/ppx_tools-6.5-r1

Description

Tools for authors of ppx rewriters

Added to portage

2025-03-11

ppx_tools - 6.6-r1
Ebuild name:

dev-ml/ppx_tools-6.6-r1

Description

Tools for authors of ppx rewriters

Added to portage

2025-03-11

proto-plus - 1.26.1
Ebuild name:

dev-python/proto-plus-1.26.1

Description

Beautiful, Pythonic protocol buffers

Added to portage

2025-03-11

pulseaudio-dlna - 0.6.5_p1-r2
Ebuild name:

net-misc/pulseaudio-dlna-0.6.5_p1-r2

Description

A lightweight DLNA/UPNP/Chromecast streaming server for PulseA

Added to portage

2025-03-11

pyproject-metadata - 0.9.1
Ebuild name:

dev-python/pyproject-metadata-0.9.1

Description

PEP 621 metadata parsing

Added to portage

2025-03-11

pystring - 1.1.4-r1
Ebuild name:

dev-cpp/pystring-1.1.4-r1

Description

C++ functions matching the interface and behavior of python string method

Added to portage

2025-03-11

qiskit - 2.0.0_rc1
Ebuild name:

dev-python/qiskit-2.0.0_rc1

Description

An open-source SDK for working with quantum computers

Added to portage

2025-03-11

qt6ct - 0.10
Ebuild name:

gui-apps/qt6ct-0.10

Description

Qt6 Configuration Tool (for DE/WM without Qt integration)

Added to portage

2025-03-11

rack - 2.2.13
Ebuild name:

dev-ruby/rack-2.2.13

Description

A modular Ruby webserver interface

Added to portage

2025-03-11

rack - 3.0.14
Ebuild name:

dev-ruby/rack-3.0.14

Description

A modular Ruby webserver interface

Added to portage

2025-03-11

rack - 3.1.12
Ebuild name:

dev-ruby/rack-3.1.12

Description

A modular Ruby webserver interface

Added to portage

2025-03-11

redo+ - 1.19
Ebuild name:

app-emacs/redo+-1.19

Description

Redo/undo system for Emacs

Added to portage

2025-03-11

reformatter - 0.6
Ebuild name:

app-emacs/reformatter-0.6

Description

Define commands which run reformatters on the Emacs buffers

Added to portage

2025-03-11

reformatter - 0.7
Ebuild name:

app-emacs/reformatter-0.7

Description

Define commands which run reformatters on the Emacs buffers

Added to portage

2025-03-11

regress - 1.5.1
Ebuild name:

app-emacs/regress-1.5.1

Description

Regression test harness for Emacs Lisp code

Added to portage

2025-03-11

remember - 2.0-r1
Ebuild name:

app-emacs/remember-2.0-r1

Description

Simplify writing short notes in emacs

Added to portage

2025-03-11

repology - 1.2.3
Ebuild name:

app-emacs/repology-1.2.3

Description

Repology API access via Emacs Lisp

Added to portage

2025-03-11

repology - 1.2.4
Ebuild name:

app-emacs/repology-1.2.4

Description

Repology API access via Emacs Lisp

Added to portage

2025-03-11

request - 0.3.3_p20220318
Ebuild name:

app-emacs/request-0.3.3_p20220318

Description

Compatible layer for URL request

Added to portage

2025-03-11

retroshare - 0.6.7-r4
Ebuild name:

net-p2p/retroshare-0.6.7-r4

Description

Friend to Friend secure communication and sharing application

Added to portage

2025-03-11

sc-controller - 0.5.0
Ebuild name:

games-util/sc-controller-0.5.0

Description

User-mode driver and GTK-based GUI for Steam Controllers and others

Added to portage

2025-03-11

sdl2-mixer - 2.8.1-r3
Ebuild name:

media-libs/sdl2-mixer-2.8.1-r3

Description

Simple Direct Media Layer Mixer Library

Added to portage

2025-03-11

simplescreenrecorder - 0.4.4-r4
Ebuild name:

media-video/simplescreenrecorder-0.4.4-r4

Description

A Simple Screen Recorder

Added to portage

2025-03-11

spirv-headers - 1.4.304.0
Ebuild name:

dev-util/spirv-headers-1.4.304.0

Description

Machine-readable files for the SPIR-V Registry

Added to portage

2025-03-11

spirv-llvm-translator - 21.0.0_pre20250311
Ebuild name:

dev-util/spirv-llvm-translator-21.0.0_pre20250311

Description

Bi-directional translator between SPIR-V and LLVM

Added to portage

2025-03-11

synapse - 1.126.0
Ebuild name:

net-im/synapse-1.126.0

Description

Reference implementation of Matrix homeserver

Added to portage

2025-03-11

ttcut - 0.19.6_p2-r1
Ebuild name:

media-video/ttcut-0.19.6_p2-r1

Description

Tool for cutting MPEG files especially for removing commercials

Added to portage

2025-03-11

unpaper - 7.0.0-r1
Ebuild name:

app-text/unpaper-7.0.0-r1

Description

Post-processor for scanned and photocopied book pages

Added to portage

2025-03-11

vidcutter - 6.0.5.1_p20230201-r1
Ebuild name:

media-video/vidcutter-6.0.5.1_p20230201-r1

Description

FFmpeg-based simple video cutter & joiner with a modern

Added to portage

2025-03-11

w3m - 0.5.3_p20240916
Ebuild name:

www-client/w3m-0.5.3_p20240916

Description

Text based WWW browser, supports tables and frames

Added to portage

2025-03-11

xdm - 1.1.17
Ebuild name:

x11-apps/xdm-1.1.17

Description

X.Org xdm application

Added to portage

2025-03-11

z3 - 4.14.1
Ebuild name:

sci-mathematics/z3-4.14.1

Description

An efficient theorem prover

Added to portage

2025-03-11

zfs - 2.3.1
Ebuild name:

sys-fs/zfs-2.3.1

Description

Userland utilities for ZFS Linux kernel module

Added to portage

2025-03-11

zfs-kmod - 2.3.1
Ebuild name:

sys-fs/zfs-kmod-2.3.1

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2025-03-11

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