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:

85893

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-14
ansilove - 4.2.2
Ebuild name:

media-gfx/ansilove-4.2.2

Description

ANSI and ASCII art to PNG converter (using libansilove)

Added to portage

2026-06-14

easycrypt - 2026.06
Ebuild name:

sci-mathematics/easycrypt-2026.06

Description

Computer-Aided Cryptographic Proofs

Added to portage

2026-06-14

gallery-dl - 1.32.3
Ebuild name:

net-misc/gallery-dl-1.32.3

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-06-14

kismet - 2025.09.1-r1
Ebuild name:

net-wireless/kismet-2025.09.1-r1

Description

IEEE 802.11 wireless LAN sniffer

Added to portage

2026-06-14

terminus-font - 4.49.1-r3
Ebuild name:

media-fonts/terminus-font-4.49.1-r3

Description

A clean fixed font for the console and X11

Added to portage

2026-06-14

2026-06-13
aioresponses - 0.7.8-r1
Ebuild name:

dev-python/aioresponses-0.7.8-r1

Description

Helper to mock/fake web requests in Python's aiohttp package

Added to portage

2026-06-13

aioresponses - 0.7.8-r2
Ebuild name:

dev-python/aioresponses-0.7.8-r2

Description

Helper to mock/fake web requests in Python's aiohttp package

Added to portage

2026-06-13

asm - 9.10.1
Ebuild name:

dev-java/asm-9.10.1

Description

Bytecode manipulation framework for Java

Added to portage

2026-06-13

attica - 6.27.0
Ebuild name:

kde-frameworks/attica-6.27.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2026-06-13

awscli - 1.45.29
Ebuild name:

app-admin/awscli-1.45.29

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-13

baloo - 6.27.0
Ebuild name:

kde-frameworks/baloo-6.27.0

Description

Framework for searching and managing metadata

Added to portage

2026-06-13

bluez-qt - 6.27.0
Ebuild name:

kde-frameworks/bluez-qt-6.27.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2026-06-13

boto3 - 1.43.29
Ebuild name:

dev-python/boto3-1.43.29

Description

The AWS SDK for Python

Added to portage

2026-06-13

botocore - 1.43.29
Ebuild name:

dev-python/botocore-1.43.29

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-13

breeze-icons - 6.27.0
Ebuild name:

kde-frameworks/breeze-icons-6.27.0

Description

Breeze SVG icon theme

Added to portage

2026-06-13

byte-buddy - 1.18.10
Ebuild name:

dev-java/byte-buddy-1.18.10

Description

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

Added to portage

2026-06-13

cryptography - 49.0.0
Ebuild name:

dev-python/cryptography-49.0.0

Description

Library providing cryptographic recipes and primitives

Added to portage

2026-06-13

eid-mw - 5.1.31
Ebuild name:

app-crypt/eid-mw-5.1.31

Description

Electronic Identity Card middleware supplied by the Belgian Federal Governm

Added to portage

2026-06-13

extra-cmake-modules - 6.27.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.27.0

Description

Extra modules and scripts for CMake

Added to portage

2026-06-13

frameworkintegration - 6.27.0
Ebuild name:

kde-frameworks/frameworkintegration-6.27.0

Description

Framework for integrating Qt applications with KDE Plasm

Added to portage

2026-06-13

gcc - 13.4.1_p20260610
Ebuild name:

sys-devel/gcc-13.4.1_p20260610

Description

The GNU Compiler Collection

Added to portage

2026-06-13

gcc - 14.3.1_p20260611
Ebuild name:

sys-devel/gcc-14.3.1_p20260611

Description

The GNU Compiler Collection

Added to portage

2026-06-13

gcc - 15.3.1_p20260612
Ebuild name:

sys-devel/gcc-15.3.1_p20260612

Description

The GNU Compiler Collection

Added to portage

2026-06-13

gdm - 49.2-r1
Ebuild name:

gnome-base/gdm-49.2-r1

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-06-13

gentoo-kernel-modprep - 7.0.12
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.0.12

Description

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

Added to portage

2026-06-13

gentoo-kernel-modprep - 7.0.12-r1
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.0.12-r1

Description

Minimal subset of gentoo-kernel-bin for building modules

Added to portage

2026-06-13

gnome-session-openrc - 49.2
Ebuild name:

gnome-base/gnome-session-openrc-49.2

Description

Gnome session leader for OpenRC

Added to portage

2026-06-13

google-auth - 2.54.0
Ebuild name:

dev-python/google-auth-2.54.0

Description

Google Authentication Library

Added to portage

2026-06-13

gpxsee - 16.8
Ebuild name:

sci-geosciences/gpxsee-16.8

Description

Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea file

Added to portage

2026-06-13

grace - 5.1.25_p18-r1
Ebuild name:

sci-visualization/grace-5.1.25_p18-r1

Description

Motif based XY-plotting tool

Added to portage

2026-06-13

gtkmm - 3.24.11
Ebuild name:

dev-cpp/gtkmm-3.24.11

Description

C++ interface for GTK+

Added to portage

2026-06-13

ibus-skk - 1.4.4
Ebuild name:

app-i18n/ibus-skk-1.4.4

Description

Japanese SKK engine for IBus

Added to portage

2026-06-13

janino - 3.1.12
Ebuild name:

dev-java/janino-3.1.12

Description

An embedded compiler for run-time compilation purposes

Added to portage

2026-06-13

k9scli - 0.51.0
Ebuild name:

sys-cluster/k9scli-0.51.0

Description

terminal based UI to manage kubernetes clusters

Added to portage

2026-06-13

kapidox - 6.27.0
Ebuild name:

kde-frameworks/kapidox-6.27.0

Description

Framework for building KDE API documentation in a standard format and

Added to portage

2026-06-13

karchive - 6.27.0
Ebuild name:

kde-frameworks/karchive-6.27.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2026-06-13

kauth - 6.27.0
Ebuild name:

kde-frameworks/kauth-6.27.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2026-06-13

kbookmarks - 6.27.0
Ebuild name:

kde-frameworks/kbookmarks-6.27.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2026-06-13

kcalendarcore - 6.27.0
Ebuild name:

kde-frameworks/kcalendarcore-6.27.0

Description

Library for interfacing with calendars

Added to portage

2026-06-13

kcmutils - 6.27.0
Ebuild name:

kde-frameworks/kcmutils-6.27.0

Description

Framework to work with KDE System Settings modules

Added to portage

2026-06-13

kcodecs - 6.27.0
Ebuild name:

kde-frameworks/kcodecs-6.27.0

Description

Framework for manipulating strings using various encodings

Added to portage

2026-06-13

kcolorscheme - 6.27.0
Ebuild name:

kde-frameworks/kcolorscheme-6.27.0

Description

Framework for downloading and sharing additional application dat

Added to portage

2026-06-13

kcompletion - 6.27.0
Ebuild name:

kde-frameworks/kcompletion-6.27.0

Description

Framework for common completion tasks such as filename or URL com

Added to portage

2026-06-13

kconfig - 6.27.0
Ebuild name:

kde-frameworks/kconfig-6.27.0

Description

Framework for reading and writing configuration

Added to portage

2026-06-13

kconfigwidgets - 6.27.0
Ebuild name:

kde-frameworks/kconfigwidgets-6.27.0

Description

Framework providing an assortment of configuration-related wid

Added to portage

2026-06-13

kcontacts - 6.27.0
Ebuild name:

kde-frameworks/kcontacts-6.27.0

Description

Address book API based on KDE Frameworks

Added to portage

2026-06-13

kcoreaddons - 6.27.0
Ebuild name:

kde-frameworks/kcoreaddons-6.27.0

Description

Framework for solving common problems such as caching, randomisat

Added to portage

2026-06-13

kcrash - 6.27.0
Ebuild name:

kde-frameworks/kcrash-6.27.0

Description

Framework for intercepting and handling application crashes

Added to portage

2026-06-13

kdav - 6.27.0
Ebuild name:

kde-frameworks/kdav-6.27.0

Description

DAV protocol implemention with KJobs

Added to portage

2026-06-13

kdbusaddons - 6.27.0
Ebuild name:

kde-frameworks/kdbusaddons-6.27.0

Description

Framework for registering services and applications per freedeskt

Added to portage

2026-06-13

kdeclarative - 6.27.0
Ebuild name:

kde-frameworks/kdeclarative-6.27.0

Description

Framework providing integration of QML and KDE work spaces

Added to portage

2026-06-13

kded - 6.27.0
Ebuild name:

kde-frameworks/kded-6.27.0

Description

Central daemon of KDE workspaces

Added to portage

2026-06-13

kdepim-runtime - 26.04.2-r1
Ebuild name:

kde-apps/kdepim-runtime-26.04.2-r1

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2026-06-13

kdesu - 6.27.0
Ebuild name:

kde-frameworks/kdesu-6.27.0

Description

Framework to handle super user actions

Added to portage

2026-06-13

kdnssd - 6.27.0
Ebuild name:

kde-frameworks/kdnssd-6.27.0

Description

Framework for network service discovery using Zeroconf

Added to portage

2026-06-13

kdoctools - 6.27.0
Ebuild name:

kde-frameworks/kdoctools-6.27.0

Description

Tools to generate documentation in various formats from DocBook fil

Added to portage

2026-06-13

kfilemetadata - 6.27.0
Ebuild name:

kde-frameworks/kfilemetadata-6.27.0

Description

Library for extracting file metadata

Added to portage

2026-06-13

kglobalaccel - 6.27.0
Ebuild name:

kde-frameworks/kglobalaccel-6.27.0

Description

Framework to handle global shortcuts

Added to portage

2026-06-13

kguiaddons - 6.27.0
Ebuild name:

kde-frameworks/kguiaddons-6.27.0

Description

Framework providing assorted high-level user interface components

Added to portage

2026-06-13

kholidays - 6.27.0
Ebuild name:

kde-frameworks/kholidays-6.27.0

Description

Library to determine holidays and other special events for a geogra

Added to portage

2026-06-13

ki18n - 6.27.0
Ebuild name:

kde-frameworks/ki18n-6.27.0

Description

Framework based on Gettext for internationalizing user interface text

Added to portage

2026-06-13

kiconthemes - 6.27.0
Ebuild name:

kde-frameworks/kiconthemes-6.27.0

Description

Framework for icon theming and configuration

Added to portage

2026-06-13

kidletime - 6.27.0
Ebuild name:

kde-frameworks/kidletime-6.27.0

Description

Framework for detection and notification of device idle time

Added to portage

2026-06-13

kimageformats - 6.27.0
Ebuild name:

kde-frameworks/kimageformats-6.27.0

Description

Framework providing additional format plugins for Qt's image I/

Added to portage

2026-06-13

kio - 6.27.0
Ebuild name:

kde-frameworks/kio-6.27.0

Description

Framework providing transparent file and data management

Added to portage

2026-06-13

kirigami - 6.27.0
Ebuild name:

kde-frameworks/kirigami-6.27.0

Description

Lightweight user interface framework for mobile and convergent appli

Added to portage

2026-06-13

kitemmodels - 6.27.0
Ebuild name:

kde-frameworks/kitemmodels-6.27.0

Description

Framework providing data models to help with tasks such as sortin

Added to portage

2026-06-13

kitemviews - 6.27.0
Ebuild name:

kde-frameworks/kitemviews-6.27.0

Description

Framework providing additional widgets for item models

Added to portage

2026-06-13

kjobwidgets - 6.27.0
Ebuild name:

kde-frameworks/kjobwidgets-6.27.0

Description

Framework providing assorted widgets for showing the progress of

Added to portage

2026-06-13

kmime - 26.04.2-r1
Ebuild name:

kde-apps/kmime-26.04.2-r1

Description

Library for handling mail messages and newsgroup articles

Added to portage

2026-06-13

kmime - 6.27.0
Ebuild name:

kde-frameworks/kmime-6.27.0

Description

Library for handling mail messages and newsgroup articles

Added to portage

2026-06-13

kmime-common - 26.04.2-r1
Ebuild name:

kde-apps/kmime-common-26.04.2-r1

Description

Common files for

Added to portage

2026-06-13

knewstuff - 6.27.0
Ebuild name:

kde-frameworks/knewstuff-6.27.0

Description

Framework for downloading and sharing additional application data

Added to portage

2026-06-13

knotifications - 6.27.0
Ebuild name:

kde-frameworks/knotifications-6.27.0

Description

Framework for notifying the user of an event

Added to portage

2026-06-13

knotifyconfig - 6.27.0
Ebuild name:

kde-frameworks/knotifyconfig-6.27.0

Description

Framework for configuring desktop notifications

Added to portage

2026-06-13

kpackage - 6.27.0
Ebuild name:

kde-frameworks/kpackage-6.27.0

Description

Framework to install and load packages of non binary content

Added to portage

2026-06-13

kparts - 6.27.0
Ebuild name:

kde-frameworks/kparts-6.27.0

Description

Framework providing elaborate user-interface components

Added to portage

2026-06-13

kpeople - 6.27.0
Ebuild name:

kde-frameworks/kpeople-6.27.0

Description

KDE contact person abstraction library

Added to portage

2026-06-13

kplotting - 6.27.0
Ebuild name:

kde-frameworks/kplotting-6.27.0

Description

Framework providing easy data-plotting functions

Added to portage

2026-06-13

kpty - 6.27.0
Ebuild name:

kde-frameworks/kpty-6.27.0

Description

Framework for pseudo terminal devices and running child processes

Added to portage

2026-06-13

kquickcharts - 6.27.0
Ebuild name:

kde-frameworks/kquickcharts-6.27.0

Description

QtQuick plugin providing high-performance charts

Added to portage

2026-06-13

krunner - 6.27.0
Ebuild name:

kde-frameworks/krunner-6.27.0

Description

Framework for providing different actions given a string query

Added to portage

2026-06-13

ksecretd-services - 6.27.0
Ebuild name:

kde-frameworks/ksecretd-services-6.27.0

Description

D-Bus service files for ksecretd kwallet runtime component

Added to portage

2026-06-13

kservice - 6.27.0
Ebuild name:

kde-frameworks/kservice-6.27.0

Description

Advanced plugin and service introspection

Added to portage

2026-06-13

kstatusnotifieritem - 6.27.0
Ebuild name:

kde-frameworks/kstatusnotifieritem-6.27.0

Description

Implementation of Status Notifier Items

Added to portage

2026-06-13

ksvg - 6.27.0
Ebuild name:

kde-frameworks/ksvg-6.27.0

Description

Components for handling SVGs

Added to portage

2026-06-13

ktexteditor - 6.27.0
Ebuild name:

kde-frameworks/ktexteditor-6.27.0

Description

Framework providing a full text editor component

Added to portage

2026-06-13

ktexttemplate - 6.27.0
Ebuild name:

kde-frameworks/ktexttemplate-6.27.0

Description

Library to allow separating the structure of documents from dat

Added to portage

2026-06-13

ktextwidgets - 6.27.0
Ebuild name:

kde-frameworks/ktextwidgets-6.27.0

Description

Framework providing an assortment of widgets for displaying and

Added to portage

2026-06-13

kunitconversion - 6.27.0
Ebuild name:

kde-frameworks/kunitconversion-6.27.0

Description

Framework for converting units

Added to portage

2026-06-13

kuserfeedback - 6.27.0
Ebuild name:

kde-frameworks/kuserfeedback-6.27.0

Description

Framework to collect user feedback for applications via telemet

Added to portage

2026-06-13

kwallet - 6.27.0
Ebuild name:

kde-frameworks/kwallet-6.27.0

Description

Interface to KWallet Framework providing desktop-wide storage for pas

Added to portage

2026-06-13

kwallet-runtime - 6.27.0
Ebuild name:

kde-frameworks/kwallet-runtime-6.27.0

Description

Framework providing desktop-wide storage for passwords

Added to portage

2026-06-13

kwidgetsaddons - 6.27.0
Ebuild name:

kde-frameworks/kwidgetsaddons-6.27.0

Description

An assortment of high-level widgets for common tasks

Added to portage

2026-06-13

kwindowsystem - 6.27.0
Ebuild name:

kde-frameworks/kwindowsystem-6.27.0

Description

Framework providing access to properties and features of the wi

Added to portage

2026-06-13

kxmlgui - 6.27.0
Ebuild name:

kde-frameworks/kxmlgui-6.27.0

Description

Framework for managing menu and toolbar actions in an abstract way

Added to portage

2026-06-13

libgphoto2 - 2.5.34-r1
Ebuild name:

media-libs/libgphoto2-2.5.34-r1

Description

Library that implements support for numerous digital cameras

Added to portage

2026-06-13

libnss-nis - 3.4
Ebuild name:

sys-auth/libnss-nis-3.4

Description

NSS module to provide NIS support

Added to portage

2026-06-13

libu2f-host - 1.1.10-r1
Ebuild name:

app-crypt/libu2f-host-1.1.10-r1

Description

Yubico Universal 2nd Factor (U2F) Host C Library

Added to portage

2026-06-13

libu2f-server - 1.1.0-r2
Ebuild name:

app-crypt/libu2f-server-1.1.0-r2

Description

Yubico Universal 2nd Factor (U2F) server C Library

Added to portage

2026-06-13

loop-aes-losetup - 2.40.2
Ebuild name:

app-crypt/loop-aes-losetup-2.40.2

Description

Loop-AES losetup utility

Added to portage

2026-06-13

loop-aes-losetup - 2.41.1
Ebuild name:

app-crypt/loop-aes-losetup-2.41.1

Description

Loop-AES losetup utility

Added to portage

2026-06-13

m17n-db - 1.8.12
Ebuild name:

dev-db/m17n-db-1.8.12

Description

Database for the m17n library

Added to portage

2026-06-13

man-pages-ja - 20260515
Ebuild name:

app-i18n/man-pages-ja-20260515

Description

Collection of manual pages translated into Japanese

Added to portage

2026-06-13

mcrypt - 2.6.8-r3
Ebuild name:

app-crypt/mcrypt-2.6.8-r3

Description

Replacement of the old unix crypt(1)

Added to portage

2026-06-13

modemmanager-qt - 6.27.0
Ebuild name:

kde-frameworks/modemmanager-qt-6.27.0

Description

ModemManager bindings for Qt

Added to portage

2026-06-13

molmol - 2k_p2-r11
Ebuild name:

sci-chemistry/molmol-2k_p2-r11

Description

Publication-quality molecular visualization package

Added to portage

2026-06-13

msgraph - 0.3.4
Ebuild name:

net-libs/msgraph-0.3.4

Description

GLib-based library for accessing online serive APIs using MS Graph protocol

Added to portage

2026-06-13

mutt - 2.3.3
Ebuild name:

mail-client/mutt-2.3.3

Description

A small but very powerful text-based mail client

Added to portage

2026-06-13

networkmanager-qt - 6.27.0
Ebuild name:

kde-frameworks/networkmanager-qt-6.27.0

Description

NetworkManager bindings for Qt

Added to portage

2026-06-13

nodejs - 24.16.0-r1
Ebuild name:

net-libs/nodejs-24.16.0-r1

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2026-06-13

nodejs - 26.3.0
Ebuild name:

net-libs/nodejs-26.3.0

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2026-06-13

oxygen-icons - 6.27.0
Ebuild name:

kde-frameworks/oxygen-icons-6.27.0

Description

Oxygen SVG icon theme

Added to portage

2026-06-13

platyps - 1.0.1
Ebuild name:

app-shells/platyps-1.0.1

Description

Generate PowerShell external help files from Markdown

Added to portage

2026-06-13

prison - 6.27.0
Ebuild name:

kde-frameworks/prison-6.27.0

Description

QRCode and data matrix barcode library

Added to portage

2026-06-13

purpose - 6.27.0
Ebuild name:

kde-frameworks/purpose-6.27.0

Description

Library for providing abstractions to get the developer's purposes fu

Added to portage

2026-06-13

pyopenssl - 26.3.0
Ebuild name:

dev-python/pyopenssl-26.3.0

Description

Python interface to the OpenSSL library

Added to portage

2026-06-13

pytest-describe - 3.2.0
Ebuild name:

dev-python/pytest-describe-3.2.0

Description

Describe-style plugin for pytest

Added to portage

2026-06-13

python - 0.3.13.14
Ebuild name:

dev-lang/python-0.3.13.14

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2026-06-13

qqc2-desktop-style - 6.27.0
Ebuild name:

kde-frameworks/qqc2-desktop-style-6.27.0

Description

Style for QtQuickControls 2 that uses QWidget's QStyle for

Added to portage

2026-06-13

rocksndiamonds - 4.4.2.1
Ebuild name:

games-arcade/rocksndiamonds-4.4.2.1

Description

A Boulderdash clone

Added to portage

2026-06-13

s6-linux-utils - 2.6.4.1
Ebuild name:

sys-apps/s6-linux-utils-2.6.4.1

Description

Set of tiny linux utilities

Added to portage

2026-06-13

savagewheels - 1.6.1-r3
Ebuild name:

games-arcade/savagewheels-1.6.1-r3

Description

2D car crashing game similar to the old classic Destruction Derb

Added to portage

2026-06-13

sdl-mixer - 1.2.12_p20260511
Ebuild name:

media-libs/sdl-mixer-1.2.12_p20260511

Description

Simple Direct Media Layer Mixer Library

Added to portage

2026-06-13

sdl2-mixer - 2.8.2
Ebuild name:

media-libs/sdl2-mixer-2.8.2

Description

Simple Direct Media Layer Mixer Library

Added to portage

2026-06-13

sdl3-mixer - 3.2.4
Ebuild name:

media-libs/sdl3-mixer-3.2.4

Description

Simple Direct Media Layer Mixer Library

Added to portage

2026-06-13

shell-maker - 0.93.1
Ebuild name:

app-emacs/shell-maker-0.93.1

Description

Interaction mode for making comint shells for GNU Emacs

Added to portage

2026-06-13

shotwell - 0.32.17
Ebuild name:

media-gfx/shotwell-0.32.17

Description

Open source photo manager for GNOME

Added to portage

2026-06-13

solid - 6.27.0
Ebuild name:

kde-frameworks/solid-6.27.0

Description

Provider for platform independent hardware discovery, abstraction and m

Added to portage

2026-06-13

sonnet - 6.27.0
Ebuild name:

kde-frameworks/sonnet-6.27.0

Description

Framework for providing spell-checking through abstraction of popular

Added to portage

2026-06-13

stripe - 15.2.1
Ebuild name:

dev-python/stripe-15.2.1

Description

Stripe Python bindings

Added to portage

2026-06-13

syndication - 6.27.0
Ebuild name:

kde-frameworks/syndication-6.27.0

Description

Library for parsing RSS and Atom feeds

Added to portage

2026-06-13

syntax-highlighting - 6.27.0
Ebuild name:

kde-frameworks/syntax-highlighting-6.27.0

Description

Framework for syntax highlighting

Added to portage

2026-06-13

threadweaver - 6.27.0
Ebuild name:

kde-frameworks/threadweaver-6.27.0

Description

Framework for managing threads using job and queue-based interfa

Added to portage

2026-06-13

untrunc - 0_pre20260605
Ebuild name:

media-video/untrunc-0_pre20260605

Description

Restore truncated mp4/mov files

Added to portage

2026-06-13

urh - 2.10.0-r2
Ebuild name:

net-wireless/urh-2.10.0-r2

Description

Universal Radio Hacker investigate wireless protocols like a boss

Added to portage

2026-06-13

warzone2100 - 4.7.0
Ebuild name:

games-strategy/warzone2100-4.7.0

Description

3D real-time strategy game

Added to portage

2026-06-13

wine-vanilla - 11.11
Ebuild name:

app-emulation/wine-vanilla-11.11

Description

Free implementation of Windows(tm) on Unix, without external patch

Added to portage

2026-06-13

xbae - 4.60.4-r3
Ebuild name:

x11-libs/xbae-4.60.4-r3

Description

Motif-based widget to display a grid of cells as a spreadsheet

Added to portage

2026-06-13

yaml - 1.2.4
Ebuild name:

app-emacs/yaml-1.2.4

Description

YAML parser in Emacs Lisp

Added to portage

2026-06-13

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