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:

67206

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
2024-04-19
awscli - 1.32.87
Ebuild name:

app-admin/awscli-1.32.87

Description

Universal Command Line Environment for AWS

Added to portage

2024-04-19

beartype - 0.18.3
Ebuild name:

dev-python/beartype-0.18.3

Description

Unbearably fast runtime type checking in pure Python

Added to portage

2024-04-19

bluez - 5.75
Ebuild name:

net-wireless/bluez-5.75

Description

Bluetooth Tools and System Daemons for Linux

Added to portage

2024-04-19

borgmatic - 1.8.10
Ebuild name:

app-backup/borgmatic-1.8.10

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2024-04-19

boto3 - 1.34.87
Ebuild name:

dev-python/boto3-1.34.87

Description

The AWS SDK for Python

Added to portage

2024-04-19

botocore - 1.34.87
Ebuild name:

dev-python/botocore-1.34.87

Description

Low-level, data-driven core of boto 3

Added to portage

2024-04-19

cargo-tarpaulin - 0.28.0
Ebuild name:

dev-util/cargo-tarpaulin-0.28.0

Description

Cargo-Tarpaulin is a tool to determine code coverage achieved via t

Added to portage

2024-04-19

cartopy - 0.23.0
Ebuild name:

sci-libs/cartopy-0.23.0

Description

Python package for geospatial data processing and analysis

Added to portage

2024-04-19

clang - 18.1.4
Ebuild name:

sys-devel/clang-18.1.4

Description

C language family frontend for LLVM

Added to portage

2024-04-19

clang-common - 18.1.4-r3
Ebuild name:

sys-devel/clang-common-18.1.4-r3

Description

Common files shared between multiple slots of clang

Added to portage

2024-04-19

clang-python - 18.1.4
Ebuild name:

dev-python/clang-python-18.1.4

Description

Python bindings for sys-devel/clang

Added to portage

2024-04-19

clang-runtime - 18.1.4
Ebuild name:

sys-devel/clang-runtime-18.1.4

Description

Meta-ebuild for clang runtime libraries

Added to portage

2024-04-19

compiler-rt - 18.1.4
Ebuild name:

sys-libs/compiler-rt-18.1.4

Description

Compiler runtime library for clang (built-in part)

Added to portage

2024-04-19

compiler-rt-sanitizers - 18.1.4
Ebuild name:

sys-libs/compiler-rt-sanitizers-18.1.4

Description

Compiler runtime libraries for clang (sanitizers & xray)

Added to portage

2024-04-19

exceptiongroup - 1.2.1
Ebuild name:

dev-python/exceptiongroup-1.2.1

Description

Backport of PEP 654 (exception groups)

Added to portage

2024-04-19

fedora-backgrounds - 40.1.1
Ebuild name:

x11-themes/fedora-backgrounds-40.1.1

Description

A set of default and supplemental wallpapers for Fedora

Added to portage

2024-04-19

findpython - 0.6.1
Ebuild name:

dev-python/findpython-0.6.1

Description

A utility to find python versions on your system

Added to portage

2024-04-19

geoipyupdate - 0.0.1
Ebuild name:

net-misc/geoipyupdate-0.0.1

Description

Simple python replacement for the MaxMind geoipupdate program

Added to portage

2024-04-19

griffe - 0.43.0
Ebuild name:

dev-python/griffe-0.43.0

Description

Signature generator for Python programs

Added to portage

2024-04-19

jaraco-functools - 4.0.1
Ebuild name:

dev-python/jaraco-functools-4.0.1

Description

Additional functions used by other projects by developer jaraco

Added to portage

2024-04-19

libclc - 18.1.4
Ebuild name:

dev-libs/libclc-18.1.4

Description

OpenCL C library

Added to portage

2024-04-19

libcxx - 18.1.4
Ebuild name:

sys-libs/libcxx-18.1.4

Description

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

Added to portage

2024-04-19

libcxxabi - 18.1.4
Ebuild name:

sys-libs/libcxxabi-18.1.4

Description

Low level support for a standard C++ library

Added to portage

2024-04-19

libdecor - 0.2.2-r1
Ebuild name:

gui-libs/libdecor-0.2.2-r1

Description

A client-side decorations library for Wayland clients

Added to portage

2024-04-19

libomemo - 0.8.1-r1
Ebuild name:

net-libs/libomemo-0.8.1-r1

Description

Implementation of OMEMO (XEP-0384) in C

Added to portage

2024-04-19

libomp - 18.1.4
Ebuild name:

sys-libs/libomp-18.1.4

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2024-04-19

lit - 18.1.4
Ebuild name:

dev-python/lit-18.1.4

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2024-04-19

lld - 18.1.4
Ebuild name:

sys-devel/lld-18.1.4

Description

The LLVM linker (link editor)

Added to portage

2024-04-19

lldb - 18.1.4
Ebuild name:

dev-debug/lldb-18.1.4

Description

The LLVM debugger

Added to portage

2024-04-19

llvm - 18.1.4
Ebuild name:

sys-devel/llvm-18.1.4

Description

Low Level Virtual Machine

Added to portage

2024-04-19

llvm-common - 18.1.4
Ebuild name:

sys-devel/llvm-common-18.1.4

Description

Common files shared between multiple slots of LLVM

Added to portage

2024-04-19

llvm-libunwind - 18.1.4
Ebuild name:

sys-libs/llvm-libunwind-18.1.4

Description

C++ runtime stack unwinder from LLVM

Added to portage

2024-04-19

llvm-ocaml - 18.1.4
Ebuild name:

dev-ml/llvm-ocaml-18.1.4

Description

OCaml bindings for LLVM

Added to portage

2024-04-19

lurch - 0.6.8-r3
Ebuild name:

x11-plugins/lurch-0.6.8-r3

Description

OMEMO encryption for libpurple (XEP-0384)

Added to portage

2024-04-19

lurch - 0.7.0-r1
Ebuild name:

x11-plugins/lurch-0.7.0-r1

Description

OMEMO encryption for libpurple (XEP-0384)

Added to portage

2024-04-19

mesa-progs - 9.0.0
Ebuild name:

x11-apps/mesa-progs-9.0.0

Description

Mesa's OpenGL utility and demo programs (glxgears and glxinfo)

Added to portage

2024-04-19

mxml - 4.0.2
Ebuild name:

dev-libs/mxml-4.0.2

Description

A small XML parsing library that you can use to read XML data files or strings

Added to portage

2024-04-19

proton-mail-bridge - 3.10.0-r1
Ebuild name:

mail-mta/proton-mail-bridge-3.10.0-r1

Description

Serves Proton Mail to IMAP/SMTP clients

Added to portage

2024-04-19

pymdown-extensions - 10.8
Ebuild name:

dev-python/pymdown-extensions-10.8

Description

Extensions for Python Markdown

Added to portage

2024-04-19

reportlab - 4.2.0
Ebuild name:

dev-python/reportlab-4.2.0

Description

Tools for generating printable PDF documents from any data source

Added to portage

2024-04-19

riseup-vpn - 0.24.3
Ebuild name:

net-vpn/riseup-vpn-0.24.3

Description

Anonymous encrypted VPN client powered by Bitmask

Added to portage

2024-04-19

ruff - 0.4.0
Ebuild name:

dev-util/ruff-0.4.0

Description

An extremely fast Python linter, written in Rust

Added to portage

2024-04-19

stripe - 9.3.0
Ebuild name:

dev-python/stripe-9.3.0

Description

Stripe python bindings

Added to portage

2024-04-19

tmuxp - 1.46.0
Ebuild name:

app-misc/tmuxp-1.46.0

Description

tmux session manager. built on libtmux

Added to portage

2024-04-19

ufoai - 2.5.0_p20180603-r2
Ebuild name:

games-strategy/ufoai-2.5.0_p20180603-r2

Description

UFO Alien Invasion - X-COM inspired strategy game

Added to portage

2024-04-19

unearth - 0.15.2
Ebuild name:

dev-python/unearth-0.15.2

Description

A utility to fetch and download python packages

Added to portage

2024-04-19

yoshimi - 2.3.2-r1
Ebuild name:

media-sound/yoshimi-2.3.2-r1

Description

Software synthesizer based on ZynAddSubFX

Added to portage

2024-04-19

yq - 3.4.1
Ebuild name:

app-misc/yq-3.4.1

Description

Command-line YAML processor - jq wrapper for YAML documents

Added to portage

2024-04-19

zynaddsubfx - 3.0.6-r3
Ebuild name:

media-sound/zynaddsubfx-3.0.6-r3

Description

Software synthesizer capable of making a countless number of instr

Added to portage

2024-04-19

zynaddsubfx - 3.0.6-r4
Ebuild name:

media-sound/zynaddsubfx-3.0.6-r4

Description

Software synthesizer capable of making a countless number of instr

Added to portage

2024-04-19

2024-04-18
Faker - 24.11.0
Ebuild name:

dev-python/Faker-24.11.0

Description

A Python package that generates fake data for you

Added to portage

2024-04-18

apsw - 3.45.3.0
Ebuild name:

dev-python/apsw-3.45.3.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2024-04-18

asahi-sources - 6.8.6_p1
Ebuild name:

sys-kernel/asahi-sources-6.8.6_p1

Description

Asahi Linux kernel sources

Added to portage

2024-04-18

audacity - 3.3.3
Ebuild name:

media-sound/audacity-3.3.3

Description

Free crossplatform audio editor

Added to portage

2024-04-18

awscli - 1.32.86
Ebuild name:

app-admin/awscli-1.32.86

Description

Universal Command Line Environment for AWS

Added to portage

2024-04-18

boto3 - 1.34.86
Ebuild name:

dev-python/boto3-1.34.86

Description

The AWS SDK for Python

Added to portage

2024-04-18

botocore - 1.34.86
Ebuild name:

dev-python/botocore-1.34.86

Description

Low-level, data-driven core of boto 3

Added to portage

2024-04-18

cadabra - 2.4.5.5
Ebuild name:

sci-mathematics/cadabra-2.4.5.5

Description

Field-theory motivated approach to computer algebra

Added to portage

2024-04-18

cartopy - 0.22.0
Ebuild name:

sci-libs/cartopy-0.22.0

Description

Python package for geospatial data processing and analysis

Added to portage

2024-04-18

chrome-binary-plugins - 125.0.6422.4_beta
Ebuild name:

www-plugins/chrome-binary-plugins-125.0.6422.4_beta

Description

Binary plugins from Google Chrome for use in Ch

Added to portage

2024-04-18

chromium - 125.0.6422.4
Ebuild name:

www-client/chromium-125.0.6422.4

Description

Open-source version of Google Chrome web browser

Added to portage

2024-04-18

commons-logging - 1.3.1
Ebuild name:

dev-java/commons-logging-1.3.1

Description

Thin adapter allowing configurable bridging to other well known logg

Added to portage

2024-04-18

curtail - 1.9.1
Ebuild name:

media-gfx/curtail-1.9.1

Description

Image compressor, supporting PNG, JPEG and WebP

Added to portage

2024-04-18

cxprolog - 0.98.2-r1
Ebuild name:

dev-lang/cxprolog-0.98.2-r1

Description

A WAM based Prolog system

Added to portage

2024-04-18

disc-cover - 1.5.6-r3
Ebuild name:

app-cdr/disc-cover-1.5.6-r3

Description

Creates CD-Covers via LaTeX by fetching cd-info from freedb.org or loca

Added to portage

2024-04-18

dist-kernel - 5.15.156
Ebuild name:

virtual/dist-kernel-5.15.156

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-04-18

dist-kernel - 6.1.87
Ebuild name:

virtual/dist-kernel-6.1.87

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-04-18

dist-kernel - 6.6.28
Ebuild name:

virtual/dist-kernel-6.6.28

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-04-18

dist-kernel - 6.8.7
Ebuild name:

virtual/dist-kernel-6.8.7

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-04-18

dotnet-outdated - 4.6.1
Ebuild name:

dev-dotnet/dotnet-outdated-4.6.1

Description

Display and update outdated NuGet packages in a project

Added to portage

2024-04-18

dropbox - 197.4.7571
Ebuild name:

net-misc/dropbox-197.4.7571

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2024-04-18

earthly - 0.8.8
Ebuild name:

app-containers/earthly-0.8.8

Description

Build automation tool that executes in containers

Added to portage

2024-04-18

ffmpeg-chromium - 125
Ebuild name:

media-video/ffmpeg-chromium-125

Description

FFmpeg built specifically for codec support in Chromium-based brows

Added to portage

2024-04-18

gdl - 1.0.4-r1
Ebuild name:

dev-lang/gdl-1.0.4-r1

Description

GNU Data Language

Added to portage

2024-04-18

gentoo-kernel - 5.15.156
Ebuild name:

sys-kernel/gentoo-kernel-5.15.156

Description

Linux kernel built with Gentoo patches

Added to portage

2024-04-18

gentoo-kernel - 6.1.87
Ebuild name:

sys-kernel/gentoo-kernel-6.1.87

Description

Linux kernel built with Gentoo patches

Added to portage

2024-04-18

gentoo-kernel - 6.6.28
Ebuild name:

sys-kernel/gentoo-kernel-6.6.28

Description

Linux kernel built with Gentoo patches

Added to portage

2024-04-18

gentoo-kernel - 6.8.7
Ebuild name:

sys-kernel/gentoo-kernel-6.8.7

Description

Linux kernel built with Gentoo patches

Added to portage

2024-04-18

gentoo-kernel-bin - 5.15.156
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.156

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-04-18

gentoo-kernel-bin - 6.1.87
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.87

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-04-18

gentoo-kernel-bin - 6.6.28
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.28

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-04-18

gentoo-kernel-bin - 6.8.7
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.8.7

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-04-18

gentoo-sources - 5.15.156
Ebuild name:

sys-kernel/gentoo-sources-5.15.156

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-04-18

gentoo-sources - 6.1.87
Ebuild name:

sys-kernel/gentoo-sources-6.1.87

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-04-18

gentoo-sources - 6.6.28
Ebuild name:

sys-kernel/gentoo-sources-6.6.28

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-04-18

gentoo-sources - 6.8.7
Ebuild name:

sys-kernel/gentoo-sources-6.8.7

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-04-18

ghdl - 4.1.0
Ebuild name:

sci-electronics/ghdl-4.1.0

Description

Open-source analyzer, compiler, and simulator for VHDL 2008/93/87

Added to portage

2024-04-18

ginac - 1.8.7-r2
Ebuild name:

sci-mathematics/ginac-1.8.7-r2

Description

C++ library and tools for symbolic calculations

Added to portage

2024-04-18

gleam - 1.1.0
Ebuild name:

dev-lang/gleam-1.1.0

Description

A friendly language for building type-safe, scalable systems

Added to portage

2024-04-18

glibc - 2.38-r12
Ebuild name:

sys-libs/glibc-2.38-r12

Description

GNU libc C library

Added to portage

2024-04-18

glibc - 2.39-r3
Ebuild name:

sys-libs/glibc-2.39-r3

Description

GNU libc C library

Added to portage

2024-04-18

godot - 4.2.2
Ebuild name:

dev-games/godot-4.2.2

Description

Multi-platform 2D and 3D game engine with a feature-rich editor

Added to portage

2024-04-18

google-chrome-beta - 125.0.6422.4
Ebuild name:

www-client/google-chrome-beta-125.0.6422.4

Description

The web browser from Google

Added to portage

2024-04-18

gtick - 0.5.5-r1
Ebuild name:

media-sound/gtick-0.5.5-r1

Description

Metronome application supporting different meters and speeds ranging

Added to portage

2024-04-18

guitarix - 0.46.0
Ebuild name:

media-sound/guitarix-0.46.0

Description

Virtual guitar amplifier for Linux

Added to portage

2024-04-18

hatchling - 1.24.1
Ebuild name:

dev-python/hatchling-1.24.1

Description

Modern, extensible Python build backend

Added to portage

2024-04-18

intel-sa-00075-tools - 1.0-r1
Ebuild name:

sys-apps/intel-sa-00075-tools-1.0-r1

Description

Tools from Intel to detect and mitigate the AMT/MEI vulnerabil

Added to portage

2024-04-18

jenkins-bin - 2.440.3
Ebuild name:

dev-util/jenkins-bin-2.440.3

Description

The leading open source automation server

Added to portage

2024-04-18

jenkins-bin - 2.454
Ebuild name:

dev-util/jenkins-bin-2.454

Description

The leading open source automation server

Added to portage

2024-04-18

libdbusmenu-lxqt - 0.1.0
Ebuild name:

dev-libs/libdbusmenu-lxqt-0.1.0

Description

LXQt DBusMenu Implementation

Added to portage

2024-04-18

linode-cli - 5.48.4
Ebuild name:

app-admin/linode-cli-5.48.4

Description

Linode Command Line Interface

Added to portage

2024-04-18

lollypop - 1.4.39
Ebuild name:

media-sound/lollypop-1.4.39

Description

Modern music player for GNOME

Added to portage

2024-04-18

megaglest - 3.13.0-r2
Ebuild name:

games-strategy/megaglest-3.13.0-r2

Description

Added to portage

2024-04-18

microsoft-edge-beta - 124.0.2478.49
Ebuild name:

www-client/microsoft-edge-beta-124.0.2478.49

Description

The web browser from Microsoft

Added to portage

2024-04-18

mpv - 0.38.0
Ebuild name:

media-video/mpv-0.38.0

Description

Media player for the command line

Added to portage

2024-04-18

nim - 2.0.4
Ebuild name:

dev-lang/nim-2.0.4

Description

Compiled, garbage-collected systems programming language

Added to portage

2024-04-18

notebook - 7.1.3
Ebuild name:

dev-python/notebook-7.1.3

Description

Jupyter Interactive Notebook

Added to portage

2024-04-18

nvidia-drivers - 550.76
Ebuild name:

x11-drivers/nvidia-drivers-550.76

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2024-04-18

opera-beta - 110.0.5130.8
Ebuild name:

www-client/opera-beta-110.0.5130.8

Description

A fast and secure web browser

Added to portage

2024-04-18

passt - 2024.04.05
Ebuild name:

net-misc/passt-2024.04.05

Description

User-mode networking daemons for VMs and namespaces, replacement for Slir

Added to portage

2024-04-18

pavucontrol - 5.0-r3
Ebuild name:

media-sound/pavucontrol-5.0-r3

Description

Pulseaudio Volume Control, GTK based mixer for Pulseaudio

Added to portage

2024-04-18

pdm-backend - 2.2.1
Ebuild name:

dev-python/pdm-backend-2.2.1

Description

A PEP 517 backend for PDM that supports PEP 621 metadata

Added to portage

2024-04-18

peewee - 3.17.3
Ebuild name:

dev-python/peewee-3.17.3

Description

Small Python ORM

Added to portage

2024-04-18

pikepdf - 8.11.2-r1
Ebuild name:

dev-python/pikepdf-8.11.2-r1

Description

Python library to work with pdf files based on qpdf

Added to portage

2024-04-18

pikepdf - 8.14.0-r1
Ebuild name:

dev-python/pikepdf-8.14.0-r1

Description

Python library to work with pdf files based on qpdf

Added to portage

2024-04-18

pikepdf - 8.15.1-r1
Ebuild name:

dev-python/pikepdf-8.15.1-r1

Description

Python library to work with pdf files based on qpdf

Added to portage

2024-04-18

pikepdf - 8.4.1-r1
Ebuild name:

dev-python/pikepdf-8.4.1-r1

Description

Python library to work with pdf files based on qpdf

Added to portage

2024-04-18

piwigo - 14.4.0
Ebuild name:

www-apps/piwigo-14.4.0

Description

a photo gallery software for the web

Added to portage

2024-04-18

plotly - 5.21.0
Ebuild name:

dev-python/plotly-5.21.0

Description

Browser-based graphing library for Python

Added to portage

2024-04-18

podman - 5.0.2
Ebuild name:

app-containers/podman-5.0.2

Description

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

Added to portage

2024-04-18

poolmon - 0.6-r1
Ebuild name:

sys-cluster/poolmon-0.6-r1

Description

Director mailserver pool monitoring script for Dovecot

Added to portage

2024-04-18

putty - 0.81
Ebuild name:

net-misc/putty-0.81

Description

A Free Telnet/SSH Client

Added to portage

2024-04-18

pyaml - 24.4.0
Ebuild name:

dev-python/pyaml-24.4.0

Description

PyYAML-based module to produce pretty and readable YAML-serialized data

Added to portage

2024-04-18

pyproject-fmt - 1.8.0
Ebuild name:

dev-python/pyproject-fmt-1.8.0

Description

Format your pyproject.toml file

Added to portage

2024-04-18

pyproject-metadata - 0.8.0
Ebuild name:

dev-python/pyproject-metadata-0.8.0

Description

PEP 621 metadata parsing

Added to portage

2024-04-18

qstylizer - 0.2.3
Ebuild name:

dev-python/qstylizer-0.2.3

Description

Stylesheet Generator for PyQt5/PySide2

Added to portage

2024-04-18

r8125 - 9.013.02
Ebuild name:

net-misc/r8125-9.013.02

Description

r8125 vendor driver for Realtek RTL8125 PCI-E NICs

Added to portage

2024-04-18

rnc-mode - 1.0.6
Ebuild name:

app-emacs/rnc-mode-1.0.6

Description

An Emacs mode for editing Relax NG compact schema files

Added to portage

2024-04-18

routino - 3.4.1-r1
Ebuild name:

sci-geosciences/routino-3.4.1-r1

Description

Routing application based on openstreetmap data

Added to portage

2024-04-18

rpm-spec-mode - 0.15
Ebuild name:

app-emacs/rpm-spec-mode-0.15

Description

Emacs mode to ease editing of RPM spec files

Added to portage

2024-04-18

rpm-spec-mode - 0.16
Ebuild name:

app-emacs/rpm-spec-mode-0.16

Description

Emacs mode to ease editing of RPM spec files

Added to portage

2024-04-18

rtirq - 20240220
Ebuild name:

sys-process/rtirq-20240220

Description

Modify realtime scheduling policy and priority of IRQ handlers

Added to portage

2024-04-18

sphinx-autodoc-typehints - 2.1.0
Ebuild name:

dev-python/sphinx-autodoc-typehints-2.1.0

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2024-04-18

sqlite - 3.45.3
Ebuild name:

dev-db/sqlite-3.45.3

Description

SQL database engine

Added to portage

2024-04-18

thunar-vcs-plugin - 0.2.0-r1
Ebuild name:

xfce-extra/thunar-vcs-plugin-0.2.0-r1

Description

Adds Subversion and GIT actions to the context menu of thunar

Added to portage

2024-04-18

tifffile - 2024.4.18
Ebuild name:

dev-python/tifffile-2024.4.18

Description

Read and write TIFF files

Added to portage

2024-04-18

tomcat - 9.0.88-r1
Ebuild name:

www-servers/tomcat-9.0.88-r1

Description

Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container

Added to portage

2024-04-18

uv - 0.1.33
Ebuild name:

dev-python/uv-0.1.33

Description

A Python package installer and resolver, written in Rust

Added to portage

2024-04-18

vanilla-kernel - 5.15.156
Ebuild name:

sys-kernel/vanilla-kernel-5.15.156

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-04-18

vanilla-kernel - 6.1.87
Ebuild name:

sys-kernel/vanilla-kernel-6.1.87

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-04-18

vanilla-kernel - 6.6.28
Ebuild name:

sys-kernel/vanilla-kernel-6.6.28

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-04-18

vanilla-kernel - 6.8.7
Ebuild name:

sys-kernel/vanilla-kernel-6.8.7

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-04-18

vanilla-sources - 5.15.156
Ebuild name:

sys-kernel/vanilla-sources-5.15.156

Description

Full sources for the Linux kernel

Added to portage

2024-04-18

vanilla-sources - 6.1.87
Ebuild name:

sys-kernel/vanilla-sources-6.1.87

Description

Full sources for the Linux kernel

Added to portage

2024-04-18

vanilla-sources - 6.6.28
Ebuild name:

sys-kernel/vanilla-sources-6.6.28

Description

Full sources for the Linux kernel

Added to portage

2024-04-18

vanilla-sources - 6.8.7
Ebuild name:

sys-kernel/vanilla-sources-6.8.7

Description

Full sources for the Linux kernel

Added to portage

2024-04-18

veusz - 3.6.2-r1
Ebuild name:

sci-visualization/veusz-3.6.2-r1

Description

Qt scientific plotting package with good Postscript output

Added to portage

2024-04-18

virtualbox - 7.0.16
Ebuild name:

app-emulation/virtualbox-7.0.16

Description

Family of powerful x86 virtualization products for enterprise and h

Added to portage

2024-04-18

virtualbox-additions - 7.0.16
Ebuild name:

app-emulation/virtualbox-additions-7.0.16

Description

CD image containing guest additions for VirtualBox

Added to portage

2024-04-18

virtualbox-extpack-oracle - 7.0.16
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.0.16

Description

PUEL extensions for VirtualBox

Added to portage

2024-04-18

virtualbox-guest-additions - 7.0.16
Ebuild name:

app-emulation/virtualbox-guest-additions-7.0.16

Description

VirtualBox kernel modules and user-space tools for

Added to portage

2024-04-18

virtualbox-kvm - 7.0.16_pre20240325
Ebuild name:

app-emulation/virtualbox-kvm-7.0.16_pre20240325

Description

Family of powerful x86 virtualization products for

Added to portage

2024-04-18

virtualbox-modules - 7.0.16
Ebuild name:

app-emulation/virtualbox-modules-7.0.16

Description

Kernel Modules for Virtualbox

Added to portage

2024-04-18

virtualenv - 20.25.3
Ebuild name:

dev-python/virtualenv-20.25.3

Description

Virtual Python Environment builder

Added to portage

2024-04-18

xfsprogs - 6.7.0
Ebuild name:

sys-fs/xfsprogs-6.7.0

Description

XFS filesystem utilities

Added to portage

2024-04-18

xmlschema - 3.3.0
Ebuild name:

dev-python/xmlschema-3.3.0

Description

An XML Schema validator and decoder

Added to portage

2024-04-18

xmlsec - 1.3.14
Ebuild name:

dev-python/xmlsec-1.3.14

Description

Python bindings for the XML Security Library

Added to portage

2024-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: 48.4 ms