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:

74288

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-04-19
b2 - 5.3.2
Ebuild name:

dev-build/b2-5.3.2

Description

A system for large project software construction, simple to use and powerful

Added to portage

2025-04-19

catch - 3.8.1
Ebuild name:

dev-cpp/catch-3.8.1

Description

Modern C++ header-only framework for unit-tests

Added to portage

2025-04-19

cryptokit - 1.20.1
Ebuild name:

dev-ml/cryptokit-1.20.1

Description

Cryptographic primitives library for Objective Caml

Added to portage

2025-04-19

egl-x11 - 1.0.1
Ebuild name:

gui-libs/egl-x11-1.0.1

Description

NVIDIA X11/XCB EGL external platform library

Added to portage

2025-04-19

framework_tool - 0.3.0
Ebuild name:

app-laptop/framework_tool-0.3.0

Description

Swiss army knife for Framework laptops

Added to portage

2025-04-19

gcc - 12.4.1_p20250417
Ebuild name:

sys-devel/gcc-12.4.1_p20250417

Description

The GNU Compiler Collection

Added to portage

2025-04-19

gcc - 15.0.1_pre20250418
Ebuild name:

sys-devel/gcc-15.0.1_pre20250418

Description

The GNU Compiler Collection

Added to portage

2025-04-19

hash-slinger - 3.3-r1
Ebuild name:

net-dns/hash-slinger-3.3-r1

Description

Various tools to generate DNS records like SSHFP, TLSA, OPENPGPKEY, IPS

Added to portage

2025-04-19

hash-slinger - 3.4
Ebuild name:

net-dns/hash-slinger-3.4

Description

Various tools to generate DNS records like SSHFP, TLSA, OPENPGPKEY, IPSECK

Added to portage

2025-04-19

igraph - 0.10.15
Ebuild name:

dev-libs/igraph-0.10.15

Description

Creating and manipulating undirected and directed graphs

Added to portage

2025-04-19

metee - 5.0.0
Ebuild name:

dev-libs/metee-5.0.0

Description

Cross-platform access library for Intel CSME HECI interface

Added to portage

2025-04-19

transformers - 4.50.3
Ebuild name:

sci-ml/transformers-4.50.3

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2025-04-19

transformers - 4.51.3
Ebuild name:

sci-ml/transformers-4.51.3

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2025-04-19

2025-04-18
accelerate - 1.6.0
Ebuild name:

sci-ml/accelerate-1.6.0

Description

Run your *raw* PyTorch training script on any kind of device

Added to portage

2025-04-18

akonadi - 25.04.0
Ebuild name:

kde-apps/akonadi-25.04.0

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2025-04-18

akonadi-calendar - 25.04.0
Ebuild name:

kde-apps/akonadi-calendar-25.04.0

Description

Library for akonadi calendar integration

Added to portage

2025-04-18

akonadi-calendar-tools-common - 25.04.0
Ebuild name:

kde-apps/akonadi-calendar-tools-common-25.04.0

Description

Added to portage

2025-04-18

akonadi-contacts - 25.04.0
Ebuild name:

kde-apps/akonadi-contacts-25.04.0

Description

Library for akonadi contact integration

Added to portage

2025-04-18

akonadi-import-wizard - 25.04.0
Ebuild name:

kde-apps/akonadi-import-wizard-25.04.0

Description

Assistant to import PIM data from other applications into Ak

Added to portage

2025-04-18

akonadi-mime - 25.04.0
Ebuild name:

kde-apps/akonadi-mime-25.04.0

Description

Library for akonadi mime types

Added to portage

2025-04-18

akonadi-search - 25.04.0
Ebuild name:

kde-apps/akonadi-search-25.04.0

Description

Libraries and daemons to implement searching in Akonadi

Added to portage

2025-04-18

akonadiconsole - 25.04.0
Ebuild name:

kde-apps/akonadiconsole-25.04.0

Description

Application for debugging Akonadi Resources

Added to portage

2025-04-18

akregator - 25.04.0
Ebuild name:

kde-apps/akregator-25.04.0

Description

News feed aggregator

Added to portage

2025-04-18

alligator - 25.04.0
Ebuild name:

net-news/alligator-25.04.0

Description

Convergent RSS/Atom feed reader for Plasma

Added to portage

2025-04-18

analitza - 25.04.0
Ebuild name:

kde-apps/analitza-25.04.0

Description

KDE library for mathematical features

Added to portage

2025-04-18

ark - 25.04.0
Ebuild name:

kde-apps/ark-25.04.0

Description

File archiver by KDE

Added to portage

2025-04-18

artikulate - 25.04.0
Ebuild name:

kde-apps/artikulate-25.04.0

Description

Language learning application that helps improving pronunciation skills

Added to portage

2025-04-18

audex - 25.04.0
Ebuild name:

media-sound/audex-25.04.0

Description

Tool for ripping compact discs

Added to portage

2025-04-18

audiocd-kio - 25.04.0
Ebuild name:

kde-apps/audiocd-kio-25.04.0

Description

KIO worker for accessing audio CDs

Added to portage

2025-04-18

awscli - 1.38.36
Ebuild name:

app-admin/awscli-1.38.36

Description

Universal Command Line Environment for AWS

Added to portage

2025-04-18

baloo-widgets - 25.04.0
Ebuild name:

kde-apps/baloo-widgets-25.04.0

Description

Widget library for baloo

Added to portage

2025-04-18

blinken - 25.04.0
Ebuild name:

kde-apps/blinken-25.04.0

Description

Memory enhancement game based on KDE Frameworks

Added to portage

2025-04-18

bomber - 25.04.0
Ebuild name:

kde-apps/bomber-25.04.0

Description

Single player arcade bombing game

Added to portage

2025-04-18

boto3 - 1.37.36
Ebuild name:

dev-python/boto3-1.37.36

Description

The AWS SDK for Python

Added to portage

2025-04-18

botocore - 1.37.36
Ebuild name:

dev-python/botocore-1.37.36

Description

Low-level, data-driven core of boto 3

Added to portage

2025-04-18

bovo - 25.04.0
Ebuild name:

kde-apps/bovo-25.04.0

Description

Five-in-a-row Board Game

Added to portage

2025-04-18

bundler - 2.6.8
Ebuild name:

dev-ruby/bundler-2.6.8

Description

An easy way to vendor gem dependencies

Added to portage

2025-04-18

calendarjanitor - 25.04.0
Ebuild name:

kde-apps/calendarjanitor-25.04.0

Description

Tool to scan calendar data for buggy instances

Added to portage

2025-04-18

calendarsupport - 25.04.0
Ebuild name:

kde-apps/calendarsupport-25.04.0

Description

Calendar support library

Added to portage

2025-04-18

calver - 2025.4.17
Ebuild name:

dev-python/calver-2025.4.17

Description

Setuptools extension for CalVer package versions

Added to portage

2025-04-18

cantor - 25.04.0
Ebuild name:

kde-apps/cantor-25.04.0

Description

Interface for doing mathematics and scientific computing

Added to portage

2025-04-18

cervisia - 25.04.0
Ebuild name:

kde-apps/cervisia-25.04.0

Description

CVS frontend by KDE

Added to portage

2025-04-18

closure-compiler-bin - 20250407
Ebuild name:

dev-lang/closure-compiler-bin-20250407

Description

JavaScript optimizing compiler

Added to portage

2025-04-18

colord-kde - 25.04.0
Ebuild name:

kde-misc/colord-kde-25.04.0

Description

Provides interfaces and session daemon to colord

Added to portage

2025-04-18

core_unix - 0.17.1
Ebuild name:

dev-ml/core_unix-0.17.1

Description

Unix-specific portions of Core

Added to portage

2025-04-18

crystal - 1.16.1
Ebuild name:

dev-lang/crystal-1.16.1

Description

The Crystal Programming Language

Added to portage

2025-04-18

cython - 3.1.0_beta1-r1
Ebuild name:

dev-python/cython-3.1.0_beta1-r1

Description

A Python to C compiler

Added to portage

2025-04-18

dolphin - 25.04.0
Ebuild name:

kde-apps/dolphin-25.04.0

Description

Plasma filemanager focusing on usability

Added to portage

2025-04-18

dolphin-plugins-common - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-common-25.04.0

Description

Added to portage

2025-04-18

dolphin-plugins-dropbox - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-dropbox-25.04.0

Description

Dolphin plugin for Dropbox service integration

Added to portage

2025-04-18

dolphin-plugins-git - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-git-25.04.0

Description

Dolphin plugin for Git integration

Added to portage

2025-04-18

dolphin-plugins-makefileactions - 25.04.0
Ebuild name:

dev-build/dolphin-plugins-makefileactions-25.04.0

Description

Dolphin plugin for Makefile targets integration

Added to portage

2025-04-18

dolphin-plugins-mercurial - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-mercurial-25.04.0

Description

Dolphin plugin for Mercurial integration

Added to portage

2025-04-18

dolphin-plugins-mountiso - 25.04.0
Ebuild name:

app-cdr/dolphin-plugins-mountiso-25.04.0

Description

Dolphin plugin for ISO loopback device mounting

Added to portage

2025-04-18

dolphin-plugins-subversion - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-subversion-25.04.0

Description

Dolphin plugin for Subversion integration

Added to portage

2025-04-18

dragon - 25.04.0
Ebuild name:

kde-apps/dragon-25.04.0

Description

Simple video player

Added to portage

2025-04-18

edid-decode - 0_pre20241119
Ebuild name:

sys-apps/edid-decode-0_pre20241119

Description

Decode EDID data in a human-readable format

Added to portage

2025-04-18

elasticsearch - 9.0.0
Ebuild name:

dev-python/elasticsearch-9.0.0

Description

Official Elasticsearch client library for Python

Added to portage

2025-04-18

elisa - 25.04.0
Ebuild name:

media-sound/elisa-25.04.0

Description

Simple music player by KDE

Added to portage

2025-04-18

elogind - 252.9-r3
Ebuild name:

sys-auth/elogind-252.9-r3

Description

The systemd project's logind, extracted to a standalone package

Added to portage

2025-04-18

eventviews - 25.04.0
Ebuild name:

kde-apps/eventviews-25.04.0

Description

Calendar viewer for KDE PIM

Added to portage

2025-04-18

falkon - 25.04.0
Ebuild name:

www-client/falkon-25.04.0

Description

Cross-platform web browser using QtWebEngine

Added to portage

2025-04-18

ffmpegthumbs - 25.04.0
Ebuild name:

kde-apps/ffmpegthumbs-25.04.0

Description

FFmpeg based thumbnail generator for video files

Added to portage

2025-04-18

filelight - 25.04.0
Ebuild name:

kde-apps/filelight-25.04.0

Description

Visualise disk usage with interactive map of concentric, segmented rings

Added to portage

2025-04-18

fixtures - 4.2.5
Ebuild name:

dev-python/fixtures-4.2.5

Description

Fixtures, reusable state for writing clean tests and more

Added to portage

2025-04-18

foot - 1.22.0
Ebuild name:

gui-apps/foot-1.22.0

Description

Fast, lightweight and minimalistic Wayland terminal emulator

Added to portage

2025-04-18

foot-terminfo - 1.22.0
Ebuild name:

gui-apps/foot-terminfo-1.22.0

Description

Terminfo for foot, a fast, lightweight and minimal Wayland terminal e

Added to portage

2025-04-18

francis - 25.04.0
Ebuild name:

app-misc/francis-25.04.0

Description

Productivity application using the well-known pomodoro technique

Added to portage

2025-04-18

frozenlist - 1.6.0
Ebuild name:

dev-python/frozenlist-1.6.0

Description

A list-like structure which implements collections.abc.MutableSequence

Added to portage

2025-04-18

gitlab-runner - 17.11.0
Ebuild name:

dev-util/gitlab-runner-17.11.0

Description

The official GitLab Runner, written in Go

Added to portage

2025-04-18

glycin-loaders - 1.2.1
Ebuild name:

media-libs/glycin-loaders-1.2.1

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2025-04-18

granatier - 25.04.0
Ebuild name:

kde-apps/granatier-25.04.0

Description

KDE Bomberman game

Added to portage

2025-04-18

grantlee-editor - 25.04.0
Ebuild name:

kde-apps/grantlee-editor-25.04.0

Description

Utilities and tools to manage themes in KDE PIM applications

Added to portage

2025-04-18

grantleetheme - 25.04.0
Ebuild name:

kde-apps/grantleetheme-25.04.0

Description

Library for Grantlee plugins

Added to portage

2025-04-18

gwenview - 25.04.0
Ebuild name:

kde-apps/gwenview-25.04.0

Description

Image viewer by KDE

Added to portage

2025-04-18

hypothesis - 6.131.2
Ebuild name:

dev-python/hypothesis-6.131.2

Description

A library for property based testing

Added to portage

2025-04-18

incidenceeditor - 25.04.0
Ebuild name:

kde-apps/incidenceeditor-25.04.0

Description

Incidence editor for KOrganizer

Added to portage

2025-04-18

installkernel - 58
Ebuild name:

sys-kernel/installkernel-58

Description

Gentoo fork of installkernel script from debianutils

Added to portage

2025-04-18

intel-compute-runtime - 25.13.33276.17
Ebuild name:

dev-libs/intel-compute-runtime-25.13.33276.17

Description

Intel Graphics Compute Runtime for oneAPI Level Zero

Added to portage

2025-04-18

intel-graphics-compiler - 2.10.9
Ebuild name:

dev-util/intel-graphics-compiler-2.10.9

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen

Added to portage

2025-04-18

ipmicfg - 1.36.0.250225
Ebuild name:

sys-apps/ipmicfg-1.36.0.250225

Description

An in-band utility for configuring Supermicro IPMI devices

Added to portage

2025-04-18

isoimagewriter - 25.04.0
Ebuild name:

app-cdr/isoimagewriter-25.04.0

Description

Write hybrid ISO files onto a USB disk

Added to portage

2025-04-18

juk - 25.04.0
Ebuild name:

kde-apps/juk-25.04.0

Description

Jukebox and music manager by KDE

Added to portage

2025-04-18

k3b - 25.04.0
Ebuild name:

kde-apps/k3b-25.04.0

Description

Full-featured burning and ripping application based on KDE Frameworks

Added to portage

2025-04-18

kaccounts-integration - 25.04.0
Ebuild name:

kde-apps/kaccounts-integration-25.04.0

Description

Administer web accounts for the sites and services across th

Added to portage

2025-04-18

kaccounts-providers - 25.04.0
Ebuild name:

kde-apps/kaccounts-providers-25.04.0

Description

KDE accounts providers

Added to portage

2025-04-18

kaddressbook - 25.04.0
Ebuild name:

kde-apps/kaddressbook-25.04.0

Description

Address book application based on KDE Frameworks

Added to portage

2025-04-18

kajongg - 25.04.0
Ebuild name:

kde-apps/kajongg-25.04.0

Description

Classical Mah Jongg for four players

Added to portage

2025-04-18

kalarm - 25.04.0
Ebuild name:

kde-apps/kalarm-25.04.0

Description

Application to manage alarms and other timer based alerts for the desktop

Added to portage

2025-04-18

kalgebra - 25.04.0
Ebuild name:

kde-apps/kalgebra-25.04.0

Description

MathML-based 2D and 3D graph calculator by KDE

Added to portage

2025-04-18

kalzium - 25.04.0
Ebuild name:

kde-apps/kalzium-25.04.0

Description

Periodic table of the elements

Added to portage

2025-04-18

kamera - 25.04.0
Ebuild name:

kde-apps/kamera-25.04.0

Description

Plasma integration for gphoto2 cameras

Added to portage

2025-04-18

kamoso - 25.04.0
Ebuild name:

kde-apps/kamoso-25.04.0

Description

Application to take pictures and videos from your webcam by KDE

Added to portage

2025-04-18

kanagram - 25.04.0
Ebuild name:

kde-apps/kanagram-25.04.0

Description

Game based on anagrams of words

Added to portage

2025-04-18

kapman - 25.04.0
Ebuild name:

kde-apps/kapman-25.04.0

Description

Pac-Man clone by KDE

Added to portage

2025-04-18

kapptemplate - 25.04.0
Ebuild name:

kde-apps/kapptemplate-25.04.0

Description

Shell script to create the necessary framework to develop KDE applica

Added to portage

2025-04-18

kasts - 25.04.0
Ebuild name:

media-sound/kasts-25.04.0

Description

Convergent podcast application for desktop and mobile

Added to portage

2025-04-18

kate - 25.04.0
Ebuild name:

kde-apps/kate-25.04.0

Description

Multi-document editor with network transparency, Plasma integration and more

Added to portage

2025-04-18

kate-addons - 25.04.0
Ebuild name:

kde-apps/kate-addons-25.04.0

Description

Addons used by Kate

Added to portage

2025-04-18

kate-common - 25.04.0
Ebuild name:

kde-apps/kate-common-25.04.0

Description

Added to portage

2025-04-18

kate-lib - 25.04.0
Ebuild name:

kde-apps/kate-lib-25.04.0

Description

Shared library used by Kate/Kwrite and Kate-Addons

Added to portage

2025-04-18

katomic - 25.04.0
Ebuild name:

kde-apps/katomic-25.04.0

Description

KDE Atomic Entertainment Game

Added to portage

2025-04-18

kbackup - 25.04.0
Ebuild name:

kde-apps/kbackup-25.04.0

Description

Program that lets you back up any directories or files

Added to portage

2025-04-18

kblackbox - 25.04.0
Ebuild name:

kde-apps/kblackbox-25.04.0

Description

Game of hide and seek played on a grid of boxes

Added to portage

2025-04-18

kblocks - 25.04.0
Ebuild name:

kde-apps/kblocks-25.04.0

Description

Single-player Tetris-like KDE game

Added to portage

2025-04-18

kbounce - 25.04.0
Ebuild name:

kde-apps/kbounce-25.04.0

Description

KDE Bounce Ball Game

Added to portage

2025-04-18

kbreakout - 25.04.0
Ebuild name:

kde-apps/kbreakout-25.04.0

Description

Breakout-like game by KDE

Added to portage

2025-04-18

kbruch - 25.04.0
Ebuild name:

kde-apps/kbruch-25.04.0

Description

Educational application to learn calculating with fractions

Added to portage

2025-04-18

kcachegrind - 25.04.0
Ebuild name:

kde-apps/kcachegrind-25.04.0

Description

Frontend for Cachegrind by KDE

Added to portage

2025-04-18

kcalc - 25.04.0
Ebuild name:

kde-apps/kcalc-25.04.0

Description

KDE calculator

Added to portage

2025-04-18

kcalutils - 25.04.0
Ebuild name:

kde-apps/kcalutils-25.04.0

Description

Library providing utility functions for the handling of calendar data

Added to portage

2025-04-18

kcharselect - 25.04.0
Ebuild name:

kde-apps/kcharselect-25.04.0

Description

KDE character selection utility

Added to portage

2025-04-18

kclock - 25.04.0
Ebuild name:

kde-misc/kclock-25.04.0

Description

Convergent clock application for Plasma

Added to portage

2025-04-18

kcolorchooser - 25.04.0
Ebuild name:

kde-apps/kcolorchooser-25.04.0

Description

KDE color selector/editor

Added to portage

2025-04-18

kcron - 25.04.0
Ebuild name:

kde-apps/kcron-25.04.0

Description

KDE Task Scheduler

Added to portage

2025-04-18

kde-apps-meta - 25.04.0
Ebuild name:

kde-apps/kde-apps-meta-25.04.0

Description

Meta package for the KDE Release Service collection

Added to portage

2025-04-18

kde-dev-scripts - 25.04.0
Ebuild name:

kde-apps/kde-dev-scripts-25.04.0

Description

KDE Development Scripts

Added to portage

2025-04-18

kde-dev-utils - 25.04.0
Ebuild name:

kde-apps/kde-dev-utils-25.04.0

Description

KDE Development Utilities

Added to portage

2025-04-18

kdeaccessibility-meta - 25.04.0
Ebuild name:

kde-apps/kdeaccessibility-meta-25.04.0

Description

kdeaccessibility - merge this to pull in all kdeaccessiblity

Added to portage

2025-04-18

kdeadmin-meta - 25.04.0
Ebuild name:

kde-apps/kdeadmin-meta-25.04.0

Description

KDE administration tools - merge this to pull in all kdeadmin-derive

Added to portage

2025-04-18

kdebugsettings - 25.04.0
Ebuild name:

kde-apps/kdebugsettings-25.04.0

Description

Application to enable/disable qCDebug

Added to portage

2025-04-18

kdeconnect - 25.04.0
Ebuild name:

kde-misc/kdeconnect-25.04.0

Description

Adds communication between KDE Plasma and your smartphone

Added to portage

2025-04-18

kdecore-meta - 25.04.0
Ebuild name:

kde-apps/kdecore-meta-25.04.0

Description

kdecore - merge this to pull in the most basic applications

Added to portage

2025-04-18

kdeedu-data - 25.04.0
Ebuild name:

kde-apps/kdeedu-data-25.04.0

Description

Shared icons, artwork and data files for educational applications

Added to portage

2025-04-18

kdeedu-meta - 25.04.0
Ebuild name:

kde-apps/kdeedu-meta-25.04.0

Description

KDE educational apps - merge this to pull in all kdeedu-derived packag

Added to portage

2025-04-18

kdegames-meta - 25.04.0
Ebuild name:

kde-apps/kdegames-meta-25.04.0

Description

kdegames - merge this to pull in all kdegames-derived packages

Added to portage

2025-04-18

kdegraphics-meta - 25.04.0
Ebuild name:

kde-apps/kdegraphics-meta-25.04.0

Description

kdegraphics - merge this to pull in all kdegraphics-derived packa

Added to portage

2025-04-18

kdegraphics-mobipocket - 25.04.0
Ebuild name:

kde-apps/kdegraphics-mobipocket-25.04.0

Description

Library to support mobipocket ebooks

Added to portage

2025-04-18

kdemultimedia-meta - 25.04.0
Ebuild name:

kde-apps/kdemultimedia-meta-25.04.0

Description

kdemultimedia - merge this to pull in all kdemultimedia-derived

Added to portage

2025-04-18

kdenetwork-filesharing - 25.04.0
Ebuild name:

kde-apps/kdenetwork-filesharing-25.04.0

Description

Samba filesharing plugin for file properties

Added to portage

2025-04-18

kdenetwork-meta - 25.04.0
Ebuild name:

kde-apps/kdenetwork-meta-25.04.0

Description

kdenetwork - merge this to pull in all kdenetwork-derived packages

Added to portage

2025-04-18

kdenlive - 25.04.0
Ebuild name:

kde-apps/kdenlive-25.04.0

Description

Non-linear video editing suite by KDE

Added to portage

2025-04-18

kdepim-addons - 25.04.0
Ebuild name:

kde-apps/kdepim-addons-25.04.0

Description

Plugins for KDE Personal Information Management Suite

Added to portage

2025-04-18

kdepim-meta - 25.04.0
Ebuild name:

kde-apps/kdepim-meta-25.04.0

Description

KDE PIM - merge this to pull in all kdepim-derived packages

Added to portage

2025-04-18

kdepim-runtime - 25.04.0
Ebuild name:

kde-apps/kdepim-runtime-25.04.0

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2025-04-18

kdesdk-meta - 25.04.0
Ebuild name:

kde-apps/kdesdk-meta-25.04.0

Description

KDE SDK - merge this to pull in all kdesdk-derived packages

Added to portage

2025-04-18

kdesdk-thumbnailers - 25.04.0
Ebuild name:

kde-apps/kdesdk-thumbnailers-25.04.0

Description

Thumbnail generator for PO files

Added to portage

2025-04-18

kdeutils-meta - 25.04.0
Ebuild name:

kde-apps/kdeutils-meta-25.04.0

Description

kdeutils - merge this to pull in all kdeutils-derived packages

Added to portage

2025-04-18

kdevelop - 25.04.0
Ebuild name:

dev-util/kdevelop-25.04.0

Description

Integrated Development Environment, supporting KF6/Qt, C/C++ and much mor

Added to portage

2025-04-18

kdevelop-php - 25.04.0
Ebuild name:

dev-util/kdevelop-php-25.04.0

Description

PHP plugin for KDevelop

Added to portage

2025-04-18

kdevelop-python - 25.04.0
Ebuild name:

dev-util/kdevelop-python-25.04.0

Description

Python plugin for KDevelop

Added to portage

2025-04-18

kdf - 25.04.0
Ebuild name:

kde-apps/kdf-25.04.0

Description

KDE free disk space utility

Added to portage

2025-04-18

kdialog - 25.04.0
Ebuild name:

kde-apps/kdialog-25.04.0

Description

Can be used to show nice dialog boxes from shell scripts

Added to portage

2025-04-18

kdiamond - 25.04.0
Ebuild name:

kde-apps/kdiamond-25.04.0

Description

Single player three-in-a-row game

Added to portage

2025-04-18

keditbookmarks - 25.04.0
Ebuild name:

kde-apps/keditbookmarks-25.04.0

Description

Bookmarks editor based on KDE Frameworks

Added to portage

2025-04-18

keysmith - 25.04.0
Ebuild name:

app-crypt/keysmith-25.04.0

Description

OTP client for Plasma Mobile and Desktop

Added to portage

2025-04-18

kfind - 25.04.0
Ebuild name:

kde-apps/kfind-25.04.0

Description

File finder utility based on KDE Frameworks

Added to portage

2025-04-18

kfourinline - 25.04.0
Ebuild name:

kde-apps/kfourinline-25.04.0

Description

KDE four-in-a-row game

Added to portage

2025-04-18

kgeography - 25.04.0
Ebuild name:

kde-apps/kgeography-25.04.0

Description

Geography learning tool

Added to portage

2025-04-18

kget - 25.04.0
Ebuild name:

kde-apps/kget-25.04.0

Description

Advanced download manager by KDE

Added to portage

2025-04-18

kgoldrunner - 25.04.0
Ebuild name:

kde-apps/kgoldrunner-25.04.0

Description

Game of action and puzzle solving by KDE

Added to portage

2025-04-18

kgpg - 25.04.0
Ebuild name:

kde-apps/kgpg-25.04.0

Description

Frontend for GnuPG, a powerful encryption utility by KDE

Added to portage

2025-04-18

kgraphviewer - 25.04.0
Ebuild name:

media-gfx/kgraphviewer-25.04.0

Description

Graphviz dot graph file viewer

Added to portage

2025-04-18

khangman - 25.04.0
Ebuild name:

kde-apps/khangman-25.04.0

Description

Classical hangman game by KDE

Added to portage

2025-04-18

khelpcenter - 25.04.0
Ebuild name:

kde-apps/khelpcenter-25.04.0

Description

Application to read documentation for KDE Plasma, Applications, Utilit

Added to portage

2025-04-18

kidentitymanagement - 25.04.0
Ebuild name:

kde-apps/kidentitymanagement-25.04.0

Description

Library for managing identitites

Added to portage

2025-04-18

kig - 25.04.0
Ebuild name:

kde-apps/kig-25.04.0

Description

KDE Interactive Geometry tool

Added to portage

2025-04-18

kigo - 25.04.0
Ebuild name:

kde-apps/kigo-25.04.0

Description

Go game by KDE

Added to portage

2025-04-18

killbots - 25.04.0
Ebuild name:

kde-apps/killbots-25.04.0

Description

Kill the bots or they kill you

Added to portage

2025-04-18

kimagemapeditor - 25.04.0
Ebuild name:

kde-apps/kimagemapeditor-25.04.0

Description

Generator of HTML image maps

Added to portage

2025-04-18

kimap - 25.04.0
Ebuild name:

kde-apps/kimap-25.04.0

Description

Library for interacting with IMAP servers

Added to portage

2025-04-18

kio-admin - 25.04.0
Ebuild name:

app-admin/kio-admin-25.04.0

Description

Manage files as administrator using the admin KIO protocol

Added to portage

2025-04-18

kio-blender-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-blender-thumbnailer-25.04.0

Description

KIO thumbnail generator for Blender files

Added to portage

2025-04-18

kio-extras - 25.04.0
Ebuild name:

kde-apps/kio-extras-25.04.0

Description

KIO plugins present a filesystem-like view of arbitrary data

Added to portage

2025-04-18

kio-gdrive - 25.04.0
Ebuild name:

kde-misc/kio-gdrive-25.04.0

Description

KIO worker for Google Drive service

Added to portage

2025-04-18

kio-gdrive-common - 25.04.0
Ebuild name:

kde-misc/kio-gdrive-common-25.04.0

Description

Added to portage

2025-04-18

kio-mobi-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-mobi-thumbnailer-25.04.0

Description

KIO thumbnail generator for Mobipocket files

Added to portage

2025-04-18

kio-perldoc - 25.04.0
Ebuild name:

dev-util/kio-perldoc-25.04.0

Description

KIO worker interface to browse Perl documentation

Added to portage

2025-04-18

kio-ps-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-ps-thumbnailer-25.04.0

Description

KIO thumbnail generator for DVI, EPS, PDF and PS files

Added to portage

2025-04-18

kio-raw-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-raw-thumbnailer-25.04.0

Description

KIO thumbnail generator for RAW files

Added to portage

2025-04-18

kio-zeroconf - 25.04.0
Ebuild name:

net-misc/kio-zeroconf-25.04.0

Description

KIO worker to discover file systems by DNS-SD (DNS Service Discovery)

Added to portage

2025-04-18

kiriki - 25.04.0
Ebuild name:

kde-apps/kiriki-25.04.0

Description

An addictive and fun dice game

Added to portage

2025-04-18

kiten - 25.04.0
Ebuild name:

kde-apps/kiten-25.04.0

Description

KDE Japanese dictionary and reference

Added to portage

2025-04-18

kitinerary - 25.04.0
Ebuild name:

kde-apps/kitinerary-25.04.0

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-04-18

kjumpingcube - 25.04.0
Ebuild name:

kde-apps/kjumpingcube-25.04.0

Description

Tactical one or two player game

Added to portage

2025-04-18

kldap - 25.04.0
Ebuild name:

kde-apps/kldap-25.04.0

Description

Library for interacting with LDAP servers

Added to portage

2025-04-18

kleopatra - 25.04.0
Ebuild name:

kde-apps/kleopatra-25.04.0

Description

Certificate manager and GUI for OpenPGP and CMS cryptography

Added to portage

2025-04-18

klettres - 25.04.0
Ebuild name:

kde-apps/klettres-25.04.0

Description

Alphabet learning application

Added to portage

2025-04-18

klickety - 25.04.0
Ebuild name:

kde-apps/klickety-25.04.0

Description

An adaptation of the Clickomania game

Added to portage

2025-04-18

klines - 25.04.0
Ebuild name:

kde-apps/klines-25.04.0

Description

A little KDE game about balls and how to get rid of them

Added to portage

2025-04-18

kmag - 25.04.0
Ebuild name:

kde-apps/kmag-25.04.0

Description

KDE screen magnifier

Added to portage

2025-04-18

kmahjongg - 25.04.0
Ebuild name:

kde-apps/kmahjongg-25.04.0

Description

A tile matching game for one or two players

Added to portage

2025-04-18

kmail - 25.04.0
Ebuild name:

kde-apps/kmail-25.04.0

Description

Email client, supporting POP3 and IMAP mailboxes

Added to portage

2025-04-18

kmail-account-wizard - 25.04.0
Ebuild name:

kde-apps/kmail-account-wizard-25.04.0

Description

Assistant for KMail accounts configuration

Added to portage

2025-04-18

kmailtransport - 25.04.0
Ebuild name:

kde-apps/kmailtransport-25.04.0

Description

Mail transport service

Added to portage

2025-04-18

kmbox - 25.04.0
Ebuild name:

kde-apps/kmbox-25.04.0

Description

Library for accessing MBox format mail storages

Added to portage

2025-04-18

kmime - 25.04.0
Ebuild name:

kde-apps/kmime-25.04.0

Description

Libary for handling mail messages and newsgroup articles

Added to portage

2025-04-18

kmines - 25.04.0
Ebuild name:

kde-apps/kmines-25.04.0

Description

Classic mine sweeper game

Added to portage

2025-04-18

kmix - 25.04.0
Ebuild name:

kde-apps/kmix-25.04.0

Description

Volume control gui based on KDE Frameworks

Added to portage

2025-04-18

kmousetool - 25.04.0
Ebuild name:

kde-apps/kmousetool-25.04.0

Description

KDE program that clicks the mouse for you

Added to portage

2025-04-18

kmouth - 25.04.0
Ebuild name:

kde-apps/kmouth-25.04.0

Description

Text-to-speech synthesizer front end

Added to portage

2025-04-18

kmplot - 25.04.0
Ebuild name:

kde-apps/kmplot-25.04.0

Description

Mathematical function plotter

Added to portage

2025-04-18

knavalbattle - 25.04.0
Ebuild name:

kde-apps/knavalbattle-25.04.0

Description

Battleship clone by KDE

Added to portage

2025-04-18

knetwalk - 25.04.0
Ebuild name:

kde-apps/knetwalk-25.04.0

Description

KDE version of the popular NetWalk game for system administrators

Added to portage

2025-04-18

knights - 25.04.0
Ebuild name:

kde-apps/knights-25.04.0

Description

Simple chess board based on KDE Frameworks

Added to portage

2025-04-18

kolf - 25.04.0
Ebuild name:

kde-apps/kolf-25.04.0

Description

Minigolf game by KDE

Added to portage

2025-04-18

kollision - 25.04.0
Ebuild name:

kde-apps/kollision-25.04.0

Description

Simple ball dodging game

Added to portage

2025-04-18

kolourpaint - 25.04.0
Ebuild name:

kde-apps/kolourpaint-25.04.0

Description

Paint Program by KDE

Added to portage

2025-04-18

kompare - 25.04.0
Ebuild name:

kde-apps/kompare-25.04.0

Description

Graphical File Differences Tool

Added to portage

2025-04-18

konqueror - 25.04.0
Ebuild name:

kde-apps/konqueror-25.04.0

Description

Web browser and file manager based on KDE Frameworks

Added to portage

2025-04-18

konquest - 25.04.0
Ebuild name:

kde-apps/konquest-25.04.0

Description

Galactic Strategy KDE Game

Added to portage

2025-04-18

konsole - 25.04.0
Ebuild name:

kde-apps/konsole-25.04.0

Description

KDE's terminal emulator

Added to portage

2025-04-18

konsolekalendar - 25.04.0
Ebuild name:

kde-apps/konsolekalendar-25.04.0

Description

Command line interface to KDE calendars

Added to portage

2025-04-18

kontact - 25.04.0
Ebuild name:

kde-apps/kontact-25.04.0

Description

Container application to unify several major PIM applications within one

Added to portage

2025-04-18

kontactinterface - 25.04.0
Ebuild name:

kde-apps/kontactinterface-25.04.0

Description

Library for embedding KParts in a Kontact component

Added to portage

2025-04-18

kontrast - 25.04.0
Ebuild name:

app-accessibility/kontrast-25.04.0

Description

Tool to check contrast for colors to verify they are correctly a

Added to portage

2025-04-18

konversation - 25.04.0
Ebuild name:

net-irc/konversation-25.04.0

Description

User friendly IRC Client

Added to portage

2025-04-18

kopeninghours - 25.04.0
Ebuild name:

dev-libs/kopeninghours-25.04.0

Description

Library for parsing and evaluating OSM opening hours expressions

Added to portage

2025-04-18

korganizer - 25.04.0
Ebuild name:

kde-apps/korganizer-25.04.0

Description

Organizational assistant, providing calendars and other similar functio

Added to portage

2025-04-18

kosmindoormap - 25.04.0
Ebuild name:

dev-libs/kosmindoormap-25.04.0

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-04-18

kpat - 25.04.0
Ebuild name:

kde-apps/kpat-25.04.0

Description

KDE patience game

Added to portage

2025-04-18

kpimtextedit - 25.04.0
Ebuild name:

kde-apps/kpimtextedit-25.04.0

Description

Extended text editor for PIM applications

Added to portage

2025-04-18

kpkpass - 25.04.0
Ebuild name:

kde-apps/kpkpass-25.04.0

Description

Library to deal with Apple Wallet pass files

Added to portage

2025-04-18

kpmcore - 25.04.0
Ebuild name:

sys-libs/kpmcore-25.04.0

Description

Library for managing partitions

Added to portage

2025-04-18

kpublictransport - 25.04.0
Ebuild name:

dev-libs/kpublictransport-25.04.0

Description

Library for accessing public transport timetables and other infor

Added to portage

2025-04-18

kqtquickcharts - 25.04.0
Ebuild name:

kde-apps/kqtquickcharts-25.04.0

Description

Qt Quick plugin for beautiful and interactive charts

Added to portage

2025-04-18

krdc - 25.04.0
Ebuild name:

kde-apps/krdc-25.04.0

Description

Remote desktop connection (RDP and VNC) client

Added to portage

2025-04-18

krecorder - 25.04.0
Ebuild name:

media-sound/krecorder-25.04.0

Description

Convergent audio recording application for Plasma

Added to portage

2025-04-18

kreversi - 25.04.0
Ebuild name:

kde-apps/kreversi-25.04.0

Description

Board game by KDE

Added to portage

2025-04-18

krfb - 25.04.0
Ebuild name:

kde-apps/krfb-25.04.0

Description

VNC-compatible server to share Plasma desktops

Added to portage

2025-04-18

kruler - 25.04.0
Ebuild name:

kde-apps/kruler-25.04.0

Description

Screen ruler for Plasma

Added to portage

2025-04-18

ksanecore - 25.04.0
Ebuild name:

media-libs/ksanecore-25.04.0

Description

Qt-based interface for SANE library to control scanner hardware

Added to portage

2025-04-18

kshisen - 25.04.0
Ebuild name:

kde-apps/kshisen-25.04.0

Description

Solitaire-like game played using the standard set of Mahjong tiles

Added to portage

2025-04-18

ksirk - 25.04.0
Ebuild name:

kde-apps/ksirk-25.04.0

Description

Port of the board game Risk

Added to portage

2025-04-18

ksmtp - 25.04.0
Ebuild name:

kde-apps/ksmtp-25.04.0

Description

Job-based library to send email through an SMTP server

Added to portage

2025-04-18

ksnakeduel - 25.04.0
Ebuild name:

kde-apps/ksnakeduel-25.04.0

Description

KDE Tron game

Added to portage

2025-04-18

kspaceduel - 25.04.0
Ebuild name:

kde-apps/kspaceduel-25.04.0

Description

Space Game by KDE

Added to portage

2025-04-18

ksquares - 25.04.0
Ebuild name:

kde-apps/ksquares-25.04.0

Description

KDE clone of the game squares

Added to portage

2025-04-18

ksudoku - 25.04.0
Ebuild name:

kde-apps/ksudoku-25.04.0

Description

Logic-based symbol placement puzzle by KDE

Added to portage

2025-04-18

ksystemlog - 25.04.0
Ebuild name:

kde-apps/ksystemlog-25.04.0

Description

System log viewer by KDE

Added to portage

2025-04-18

kteatime - 25.04.0
Ebuild name:

kde-apps/kteatime-25.04.0

Description

KDE timer for making a fine cup of tea

Added to portage

2025-04-18

ktimer - 25.04.0
Ebuild name:

kde-apps/ktimer-25.04.0

Description

Little tool to execute programs after some time

Added to portage

2025-04-18

ktorrent - 25.04.0
Ebuild name:

net-p2p/ktorrent-25.04.0

Description

Powerful BitTorrent client based on KDE Frameworks

Added to portage

2025-04-18

ktouch - 25.04.0
Ebuild name:

kde-apps/ktouch-25.04.0

Description

Program that helps to learn and practice touch typing

Added to portage

2025-04-18

ktuberling - 25.04.0
Ebuild name:

kde-apps/ktuberling-25.04.0

Description

Potato game for kids by KDE

Added to portage

2025-04-18

kturtle - 25.04.0
Ebuild name:

kde-apps/kturtle-25.04.0

Description

Educational programming environment using the Logo programming language

Added to portage

2025-04-18

kubrick - 25.04.0
Ebuild name:

kde-apps/kubrick-25.04.0

Description

Game based on the

Added to portage

2025-04-18

kwalletmanager - 25.04.0
Ebuild name:

kde-apps/kwalletmanager-25.04.0

Description

Tool to manage the passwords on your system using KDE Wallet

Added to portage

2025-04-18

kwave - 25.04.0
Ebuild name:

kde-apps/kwave-25.04.0

Description

Sound editor built on KDE Frameworks that can edit many types of audio files

Added to portage

2025-04-18

kweather - 25.04.0
Ebuild name:

kde-misc/kweather-25.04.0

Description

Weather forecast application for Plasma with flat and dynamic/animated vi

Added to portage

2025-04-18

kweathercore - 25.04.0
Ebuild name:

dev-libs/kweathercore-25.04.0

Description

Library for retrieval of weather information including forecasts and

Added to portage

2025-04-18

kwordquiz - 25.04.0
Ebuild name:

kde-apps/kwordquiz-25.04.0

Description

Powerful flashcard and vocabulary learning program

Added to portage

2025-04-18

kwrite - 25.04.0
Ebuild name:

kde-apps/kwrite-25.04.0

Description

Simple text editor based on KDE Frameworks

Added to portage

2025-04-18

lcalc - 2.1.0-r1
Ebuild name:

sci-mathematics/lcalc-2.1.0-r1

Description

Command-line utility and library for L-function computations

Added to portage

2025-04-18

level-zero - 1.21.9
Ebuild name:

dev-libs/level-zero-1.21.9

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2025-04-18

libgravatar - 25.04.0
Ebuild name:

kde-apps/libgravatar-25.04.0

Description

Library for gravatar integration

Added to portage

2025-04-18

libkcddb - 25.04.0
Ebuild name:

kde-apps/libkcddb-25.04.0

Description

KDE library for CDDB

Added to portage

2025-04-18

libkcddb-common - 25.04.0
Ebuild name:

kde-apps/libkcddb-common-25.04.0

Description

Added to portage

2025-04-18

libkcompactdisc - 25.04.0
Ebuild name:

kde-apps/libkcompactdisc-25.04.0

Description

Library for playing & ripping CDs

Added to portage

2025-04-18

libkdcraw - 25.04.0
Ebuild name:

kde-apps/libkdcraw-25.04.0

Description

Digital camera raw image library wrapper

Added to portage

2025-04-18

libkdegames - 25.04.0
Ebuild name:

kde-apps/libkdegames-25.04.0

Description

Base library common to many KDE games

Added to portage

2025-04-18

libkdepim - 25.04.0
Ebuild name:

kde-apps/libkdepim-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

libkeduvocdocument - 25.04.0
Ebuild name:

kde-apps/libkeduvocdocument-25.04.0

Description

Library for reading/writing KVTML

Added to portage

2025-04-18

libkexiv2 - 25.04.0
Ebuild name:

kde-apps/libkexiv2-25.04.0

Description

Wrapper around exiv2 library

Added to portage

2025-04-18

libkgapi - 25.04.0
Ebuild name:

kde-apps/libkgapi-25.04.0

Description

Library for accessing Google calendar and contact resources

Added to portage

2025-04-18

libkleo - 25.04.0
Ebuild name:

kde-apps/libkleo-25.04.0

Description

Library for encryption handling

Added to portage

2025-04-18

libkmahjongg - 25.04.0
Ebuild name:

kde-apps/libkmahjongg-25.04.0

Description

Mahjongg library based on Qt/KDE Frameworks

Added to portage

2025-04-18

libkomparediff2 - 25.04.0
Ebuild name:

kde-apps/libkomparediff2-25.04.0

Description

Library to compare files and strings

Added to portage

2025-04-18

libksane - 25.04.0
Ebuild name:

kde-apps/libksane-25.04.0

Description

SANE Library interface based on KDE Frameworks

Added to portage

2025-04-18

libksane-common - 25.04.0
Ebuild name:

kde-apps/libksane-common-25.04.0

Description

Added to portage

2025-04-18

libksieve - 25.04.0
Ebuild name:

kde-apps/libksieve-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

libktnef - 25.04.0
Ebuild name:

kde-apps/libktnef-25.04.0

Description

Library for handling TNEF data

Added to portage

2025-04-18

libktorrent - 25.04.0
Ebuild name:

net-libs/libktorrent-25.04.0

Description

BitTorrent library based on KDE Frameworks

Added to portage

2025-04-18

logswan - 2.1.15
Ebuild name:

www-misc/logswan-2.1.15

Description

Fast Web log analyzer using probabilistic data structures

Added to portage

2025-04-18

lokalize - 25.04.0
Ebuild name:

kde-apps/lokalize-25.04.0

Description

Localization tool for KDE software and other free and open source softwar

Added to portage

2025-04-18

lskat - 25.04.0
Ebuild name:

kde-apps/lskat-25.04.0

Description

Skat game by KDE

Added to portage

2025-04-18

luau - 0.669
Ebuild name:

dev-lang/luau-0.669

Description

Gradually typed embeddable scripting language derived from Lua

Added to portage

2025-04-18

mailcommon - 25.04.0
Ebuild name:

kde-apps/mailcommon-25.04.0

Description

Common mail library

Added to portage

2025-04-18

mailimporter - 25.04.0
Ebuild name:

kde-apps/mailimporter-25.04.0

Description

Library to import mail from various sources

Added to portage

2025-04-18

marble - 25.04.0
Ebuild name:

kde-apps/marble-25.04.0

Description

Virtual Globe and World Atlas to learn more about Earth

Added to portage

2025-04-18

markdownpart - 25.04.0
Ebuild name:

kde-misc/markdownpart-25.04.0

Description

Markdown viewer KParts plugin based on QTextDocument

Added to portage

2025-04-18

marksman - 2024.12.18
Ebuild name:

dev-util/marksman-2024.12.18

Description

LSP language server for editing Markdown files

Added to portage

2025-04-18

massif-visualizer - 25.04.0
Ebuild name:

dev-util/massif-visualizer-25.04.0

Description

Tool visualising massif data

Added to portage

2025-04-18

mbox-importer - 25.04.0
Ebuild name:

kde-apps/mbox-importer-25.04.0

Description

Import mbox email archives from various sources into Akonadi

Added to portage

2025-04-18

merkuro - 25.04.0
Ebuild name:

app-office/merkuro-25.04.0

Description

Calendar application using Akonadi

Added to portage

2025-04-18

meson - 1.8.0_rc1
Ebuild name:

dev-build/meson-1.8.0_rc1

Description

Open source build system

Added to portage

2025-04-18

messagelib - 25.04.0
Ebuild name:

kde-apps/messagelib-25.04.0

Description

Libraries for messaging functions

Added to portage

2025-04-18

mimetreeparser - 25.04.0
Ebuild name:

kde-apps/mimetreeparser-25.04.0

Description

Libraries for messaging functions

Added to portage

2025-04-18

minuet - 25.04.0
Ebuild name:

kde-apps/minuet-25.04.0

Description

Music Education software by KDE

Added to portage

2025-04-18

mkdocs-material - 9.6.12
Ebuild name:

dev-python/mkdocs-material-9.6.12

Description

A Material Design theme for MkDocs

Added to portage

2025-04-18

nagios-plugins - 2.4.12-r2
Ebuild name:

net-analyzer/nagios-plugins-2.4.12-r2

Description

Official plugins for Nagios

Added to portage

2025-04-18

nanobind - 2.7.0
Ebuild name:

dev-python/nanobind-2.7.0

Description

Tiny and efficient C++/Python bindings

Added to portage

2025-04-18

neochat - 25.04.0
Ebuild name:

net-im/neochat-25.04.0

Description

Client for Matrix, the decentralized communication protocol

Added to portage

2025-04-18

nvidia-drivers - 570.144
Ebuild name:

x11-drivers/nvidia-drivers-570.144

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2025-04-18

okular - 25.04.0
Ebuild name:

kde-apps/okular-25.04.0

Description

Universal document viewer based on KDE Frameworks

Added to portage

2025-04-18

palapeli - 25.04.0
Ebuild name:

kde-apps/palapeli-25.04.0

Description

Jigsaw puzzle game by KDE

Added to portage

2025-04-18

parley - 25.04.0
Ebuild name:

kde-apps/parley-25.04.0

Description

Vocabulary trainer to help you memorize things

Added to portage

2025-04-18

partitionmanager - 25.04.0
Ebuild name:

sys-block/partitionmanager-25.04.0

Description

Utility for management of disks, partitions and file systems

Added to portage

2025-04-18

picmi - 25.04.0
Ebuild name:

kde-apps/picmi-25.04.0

Description

Nonogram logic game by KDE

Added to portage

2025-04-18

pim-data-exporter - 25.04.0
Ebuild name:

kde-apps/pim-data-exporter-25.04.0

Description

Assistant to backup and archive PIM data and configuration

Added to portage

2025-04-18

pim-sieve-editor - 25.04.0
Ebuild name:

kde-apps/pim-sieve-editor-25.04.0

Description

Assistant for editing IMAP Sieve filters

Added to portage

2025-04-18

pimcommon - 25.04.0
Ebuild name:

kde-apps/pimcommon-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

poxml - 25.04.0
Ebuild name:

kde-apps/poxml-25.04.0

Description

KDE utility to translate DocBook XML files using gettext po files

Added to portage

2025-04-18

prismlauncher - 9.4
Ebuild name:

games-action/prismlauncher-9.4

Description

Custom, open source Minecraft launcher

Added to portage

2025-04-18

pydantic-core - 2.34.1
Ebuild name:

dev-python/pydantic-core-2.34.1

Description

Core validation logic for pydantic written in Rust

Added to portage

2025-04-18

qrca - 25.04.0
Ebuild name:

media-gfx/qrca-25.04.0

Description

Simple barcode scanner and QR code generator

Added to portage

2025-04-18

repology - 1.2.4
Ebuild name:

app-emacs/repology-1.2.4

Description

Repology API access via Emacs Lisp

Added to portage

2025-04-18

request - 0.3.3_p20220318
Ebuild name:

app-emacs/request-0.3.3_p20220318

Description

Compatible layer for URL request

Added to portage

2025-04-18

rescript-mode - 0.1.0_p20220613
Ebuild name:

app-emacs/rescript-mode-0.1.0_p20220613

Description

Emacs major mode for ReScript

Added to portage

2025-04-18

restclient - 0_p20220426
Ebuild name:

app-emacs/restclient-0_p20220426

Description

HTTP REST client tool for GNU Emacs

Added to portage

2025-04-18

revive - 2.25
Ebuild name:

app-emacs/revive-2.25

Description

Resume Emacs

Added to portage

2025-04-18

rfcview - 0.13
Ebuild name:

app-emacs/rfcview-0.13

Description

An Emacs mode that reformats IETF RFCs for display

Added to portage

2025-04-18

rg - 2.3.0
Ebuild name:

app-emacs/rg-2.3.0

Description

GNU Emacs search tool based on ripgrep

Added to portage

2025-04-18

rocs - 25.04.0
Ebuild name:

kde-apps/rocs-25.04.0

Description

Interface to work with Graph Theory

Added to portage

2025-04-18

rubygems - 3.6.8
Ebuild name:

dev-ruby/rubygems-3.6.8

Description

Centralized Ruby extension management system

Added to portage

2025-04-18

ruff - 0.11.6
Ebuild name:

dev-util/ruff-0.11.6

Description

An extremely fast Python linter, written in Rust

Added to portage

2025-04-18

s3transfer - 0.11.5
Ebuild name:

dev-python/s3transfer-0.11.5

Description

An Amazon S3 Transfer Manager

Added to portage

2025-04-18

signon-kwallet-extension - 25.04.0
Ebuild name:

kde-apps/signon-kwallet-extension-25.04.0

Description

KWallet extension for signond

Added to portage

2025-04-18

skanlite - 25.04.0
Ebuild name:

kde-misc/skanlite-25.04.0

Description

Simple image scanning application based on libksane and KDE Frameworks

Added to portage

2025-04-18

skanpage - 25.04.0
Ebuild name:

media-gfx/skanpage-25.04.0

Description

Multi-page scanning application supporting image and pdf files

Added to portage

2025-04-18

skladnik - 25.04.0
Ebuild name:

games-puzzle/skladnik-25.04.0

Description

The Japanese warehouse keeper sokoban game

Added to portage

2025-04-18

smcipmitool - 2.29.0.250214
Ebuild name:

sys-apps/smcipmitool-2.29.0.250214

Description

An out-of-band utility for interfacing with SuperBlade and IPMI

Added to portage

2025-04-18

sourcegit - 2025.13
Ebuild name:

dev-vcs/sourcegit-2025.13

Description

Open Source Git GUI client using .NET AvaloniaUI

Added to portage

2025-04-18

spirv-llvm-translator - 15.0.11
Ebuild name:

dev-util/spirv-llvm-translator-15.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 16.0.11
Ebuild name:

dev-util/spirv-llvm-translator-16.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 17.0.11
Ebuild name:

dev-util/spirv-llvm-translator-17.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 18.1.11
Ebuild name:

dev-util/spirv-llvm-translator-18.1.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 19.1.6
Ebuild name:

dev-util/spirv-llvm-translator-19.1.6

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 20.1.1
Ebuild name:

dev-util/spirv-llvm-translator-20.1.1

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

sqlglot - 26.15.0
Ebuild name:

dev-python/sqlglot-26.15.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-04-18

step - 25.04.0
Ebuild name:

kde-apps/step-25.04.0

Description

Interactive physics simulator

Added to portage

2025-04-18

svgpart - 25.04.0
Ebuild name:

kde-apps/svgpart-25.04.0

Description

Kpart for viewing SVGs

Added to portage

2025-04-18

sweeper - 25.04.0
Ebuild name:

kde-apps/sweeper-25.04.0

Description

Privacy settings widget to clean unwanted traces on the system

Added to portage

2025-04-18

thumbnailers - 25.04.0
Ebuild name:

kde-apps/thumbnailers-25.04.0

Description

Metapackage for KIO thumbnail generators

Added to portage

2025-04-18

tokodon - 25.04.0
Ebuild name:

net-im/tokodon-25.04.0

Description

Mastodon client for Plasma and Plasma Mobile

Added to portage

2025-04-18

tpm2-pytss - 2.3.0-r1
Ebuild name:

dev-python/tpm2-pytss-2.3.0-r1

Description

Python bindings for TSS

Added to portage

2025-04-18

umbrello - 25.04.0
Ebuild name:

kde-apps/umbrello-25.04.0

Description

KDE UML Modeller

Added to portage

2025-04-18

vivaldi - 7.3.3635.11
Ebuild name:

www-client/vivaldi-7.3.3635.11

Description

A browser for our friends

Added to portage

2025-04-18

vivaldi-snapshot - 7.4.3664.3
Ebuild name:

www-client/vivaldi-snapshot-7.4.3664.3

Description

A browser for our friends

Added to portage

2025-04-18

wireshark - 4.4.6-r1
Ebuild name:

net-analyzer/wireshark-4.4.6-r1

Description

Network protocol analyzer (sniffer)

Added to portage

2025-04-18

xlsxwriter - 3.2.3
Ebuild name:

dev-python/xlsxwriter-3.2.3

Description

Python module for creating Excel XLSX files

Added to portage

2025-04-18

yakuake - 25.04.0
Ebuild name:

kde-apps/yakuake-25.04.0

Description

Quake-style terminal emulator based on konsole

Added to portage

2025-04-18

zanshin - 25.04.0
Ebuild name:

kde-misc/zanshin-25.04.0

Description

Getting things done application by KDE

Added to portage

2025-04-18

zellij - 0.42.2
Ebuild name:

app-misc/zellij-0.42.2

Description

A terminal workspace with batteries included

Added to portage

2025-04-18

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