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:

71694

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-01-20
aioresponses - 0.7.8
Ebuild name:

dev-python/aioresponses-0.7.8

Description

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

Added to portage

2025-01-20

airdcpp-webclient - 2.13.3
Ebuild name:

net-p2p/airdcpp-webclient-2.13.3

Description

Cross-platform Direct Connect client

Added to portage

2025-01-20

airdcpp-webui - 2.13.1
Ebuild name:

www-apps/airdcpp-webui-2.13.1

Description

Web interface for airdcpp-webclient

Added to portage

2025-01-20

alembic - 1.14.1
Ebuild name:

dev-python/alembic-1.14.1

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2025-01-20

asteval - 1.0.6
Ebuild name:

dev-python/asteval-1.0.6

Description

Evaluator of Python expression using ast module

Added to portage

2025-01-20

baikal - 0.10.1
Ebuild name:

www-apps/baikal-0.10.1

Description

Lightweight CalDAV+CardDAV server

Added to portage

2025-01-20

bees - 0.11_rc3
Ebuild name:

sys-fs/bees-0.11_rc3

Description

Best-Effort Extent-Same, a btrfs dedup agent

Added to portage

2025-01-20

borgmatic - 1.9.6
Ebuild name:

app-backup/borgmatic-1.9.6

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2025-01-20

diffoscope - 285
Ebuild name:

dev-util/diffoscope-285

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2025-01-20

dist-kernel - 6.1.126
Ebuild name:

virtual/dist-kernel-6.1.126

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-01-20

dolphin - 2412-r1
Ebuild name:

games-emulation/dolphin-2412-r1

Description

Gamecube and Wii game emulator

Added to portage

2025-01-20

flatpak-builder - 1.4.4
Ebuild name:

dev-util/flatpak-builder-1.4.4

Description

Tool to build flatpaks from source

Added to portage

2025-01-20

fpylll - 0.6.3
Ebuild name:

dev-python/fpylll-0.6.3

Description

Python bindings for sci-libs/fplll

Added to portage

2025-01-20

freeipmi - 1.6.15
Ebuild name:

sys-libs/freeipmi-1.6.15

Description

Provides Remote-Console and System Management Software as per IPMI v1.5/2.

Added to portage

2025-01-20

gcc - 15.0.1_pre20250119
Ebuild name:

sys-devel/gcc-15.0.1_pre20250119

Description

The GNU Compiler Collection

Added to portage

2025-01-20

gentoo-kernel - 6.1.126
Ebuild name:

sys-kernel/gentoo-kernel-6.1.126

Description

Linux kernel built with Gentoo patches

Added to portage

2025-01-20

gentoo-kernel-bin - 6.1.126
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.126

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-01-20

gtksourceview - 2.10.5-r4
Ebuild name:

x11-libs/gtksourceview-2.10.5-r4

Description

Text widget implementing syntax highlighting and other features

Added to portage

2025-01-20

gtksourceview - 3.24.11-r3
Ebuild name:

x11-libs/gtksourceview-3.24.11-r3

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-01-20

gtksourceview - 4.8.4-r1
Ebuild name:

x11-libs/gtksourceview-4.8.4-r1

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-01-20

gtksourceview - 5.12.1-r1
Ebuild name:

gui-libs/gtksourceview-5.12.1-r1

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-01-20

i18n - 1.14.7
Ebuild name:

dev-ruby/i18n-1.14.7

Description

Add Internationalization support to your Ruby application

Added to portage

2025-01-20

imageio - 2.37.0
Ebuild name:

dev-python/imageio-2.37.0

Description

Python library for reading and writing image data

Added to portage

2025-01-20

koleo-cli - 0.2.137.16
Ebuild name:

app-misc/koleo-cli-0.2.137.16

Description

A simple CLI for koleo.pl railway planner

Added to portage

2025-01-20

libbraiding - 1.3.1
Ebuild name:

sci-libs/libbraiding-1.3.1

Description

Expose the functionality of cbraid as a shared library

Added to portage

2025-01-20

mimalloc - 2.1.9
Ebuild name:

dev-libs/mimalloc-2.1.9

Description

A compact general purpose allocator with excellent performance

Added to portage

2025-01-20

moto - 5.0.27
Ebuild name:

dev-python/moto-5.0.27

Description

Mock library for boto

Added to portage

2025-01-20

mtools - 4.0.47
Ebuild name:

sys-fs/mtools-4.0.47

Description

Utilities to access MS-DOS disks from Unix without mounting them

Added to portage

2025-01-20

mxml - 4.0.4
Ebuild name:

dev-libs/mxml-4.0.4

Description

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

Added to portage

2025-01-20

pam_u2f - 1.3.2
Ebuild name:

sys-auth/pam_u2f-1.3.2

Description

PAM module for FIDO2 and U2F keys

Added to portage

2025-01-20

postfix - 3.10_pre20250117
Ebuild name:

mail-mta/postfix-3.10_pre20250117

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-01-20

pyopengl - 3.1.9
Ebuild name:

dev-python/pyopengl-3.1.9

Description

Python OpenGL bindings

Added to portage

2025-01-20

pyopengl-accelerate - 3.1.9
Ebuild name:

dev-python/pyopengl-accelerate-3.1.9

Description

Accelerate module for PyOpenGL

Added to portage

2025-01-20

railway - 2.7.2
Ebuild name:

gui-apps/railway-2.7.2

Description

Travel with all your train information in one place

Added to portage

2025-01-20

rofi - 1.7.8
Ebuild name:

x11-misc/rofi-1.7.8

Description

A window switcher, run dialog and dmenu replacement

Added to portage

2025-01-20

thunar-shares-plugin - 0.4.0
Ebuild name:

xfce-extra/thunar-shares-plugin-0.4.0

Description

Thunar plugin to share files using Samba

Added to portage

2025-01-20

trurl - 0.16-r1
Ebuild name:

net-misc/trurl-0.16-r1

Description

Command line tool for URL parsing and manipulation

Added to portage

2025-01-20

vanilla-kernel - 6.1.126
Ebuild name:

sys-kernel/vanilla-kernel-6.1.126

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-01-20

websockets - 14.2
Ebuild name:

dev-python/websockets-14.2

Description

Library for building WebSocket servers and clients in Python

Added to portage

2025-01-20

zulucrypt - 7.0.0
Ebuild name:

app-crypt/zulucrypt-7.0.0

Description

Front end to cryptsetup

Added to portage

2025-01-20

2025-01-19
FP16 - 2024.05.27
Ebuild name:

dev-libs/FP16-2024.05.27

Description

conversion to/from half-precision floating point formats

Added to portage

2025-01-19

NNPACK - 2020.12.22-r3
Ebuild name:

sci-libs/NNPACK-2020.12.22-r3

Description

acceleration package for neural network computations

Added to portage

2025-01-19

amazon-ecr-credential-helper - 0.9.0
Ebuild name:

app-containers/amazon-ecr-credential-helper-0.9.0

Description

Automatically gets credentials for Amazon ECR on

Added to portage

2025-01-19

arel-helpers - 2.16.0
Ebuild name:

dev-ruby/arel-helpers-2.16.0

Description

Tools to help construct database queries

Added to portage

2025-01-19

bfs - 4.0.5
Ebuild name:

sys-apps/bfs-4.0.5

Description

Breadth-first version of the UNIX find command

Added to portage

2025-01-19

broot - 1.44.6
Ebuild name:

app-misc/broot-1.44.6

Description

A new way to see and navigate directory trees

Added to portage

2025-01-19

cdk - 5.0.20250116
Ebuild name:

dev-libs/cdk-5.0.20250116

Description

A library of curses widgets

Added to portage

2025-01-19

chrome-binary-plugins - 133.0.6943.16_beta
Ebuild name:

www-plugins/chrome-binary-plugins-133.0.6943.16_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-01-19

chrome-binary-plugins - 134.0.6958.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-134.0.6958.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-01-19

chromium - 133.0.6943.16
Ebuild name:

www-client/chromium-133.0.6943.16

Description

Open-source version of Google Chrome web browser

Added to portage

2025-01-19

chromium - 134.0.6958.2
Ebuild name:

www-client/chromium-134.0.6958.2

Description

Open-source version of Google Chrome web browser

Added to portage

2025-01-19

config-site - 99999999
Ebuild name:

sys-apps/config-site-99999999

Description

config.site to load dropins from config.site.d

Added to portage

2025-01-19

coreutils - 9.6
Ebuild name:

sys-apps/coreutils-9.6

Description

Standard GNU utilities (chmod, cp, dd, ls, sort, tr, head, wc, who,...)

Added to portage

2025-01-19

delve - 1.24.0
Ebuild name:

dev-go/delve-1.24.0

Description

A source-level debugger for the Go programming language

Added to portage

2025-01-19

dino - 0.4.4-r3
Ebuild name:

net-im/dino-0.4.4-r3

Description

Modern Jabber/XMPP Client using GTK+/Vala

Added to portage

2025-01-19

dpkg - 1.22.14
Ebuild name:

app-arch/dpkg-1.22.14

Description

Package maintenance system for Debian

Added to portage

2025-01-19

ed - 1.21
Ebuild name:

sys-apps/ed-1.21

Description

Your basic line editor

Added to portage

2025-01-19

eid-mw - 5.1.21
Ebuild name:

app-crypt/eid-mw-5.1.21

Description

Electronic Identity Card middleware supplied by the Belgian Federal Governm

Added to portage

2025-01-19

ffmpeg-chromium - 134
Ebuild name:

media-video/ffmpeg-chromium-134

Description

FFmpeg built specifically for codec support in Chromium-based brows

Added to portage

2025-01-19

gcc - 14.2.1_p20250118
Ebuild name:

sys-devel/gcc-14.2.1_p20250118

Description

The GNU Compiler Collection

Added to portage

2025-01-19

gentoo-sources - 6.1.126
Ebuild name:

sys-kernel/gentoo-sources-6.1.126

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-01-19

gfxreconstruct - 1.4.304.0
Ebuild name:

dev-debug/gfxreconstruct-1.4.304.0

Description

Graphics API Capture and Replay Tools

Added to portage

2025-01-19

git - 2.45.3
Ebuild name:

dev-vcs/git-2.45.3

Description

Stupid content tracker distributed VCS designed for speed and efficiency

Added to portage

2025-01-19

git - 2.48.1
Ebuild name:

dev-vcs/git-2.48.1

Description

Stupid content tracker distributed VCS designed for speed and efficiency

Added to portage

2025-01-19

glslang - 1.4.304.0
Ebuild name:

dev-util/glslang-1.4.304.0

Description

Khronos reference front-end for GLSL and ESSL, and sample SPIR-V generat

Added to portage

2025-01-19

gn - 0.2207
Ebuild name:

dev-build/gn-0.2207

Description

GN is a meta-build system that generates build files for Ninja

Added to portage

2025-01-19

google-chrome-beta - 133.0.6943.16
Ebuild name:

www-client/google-chrome-beta-133.0.6943.16

Description

The web browser from Google

Added to portage

2025-01-19

google-chrome-unstable - 134.0.6958.2
Ebuild name:

www-client/google-chrome-unstable-134.0.6958.2

Description

The web browser from Google

Added to portage

2025-01-19

gpr - 25.0.0
Ebuild name:

dev-ada/gpr-25.0.0

Description

LibGPR2 - Parser for GPR Project files

Added to portage

2025-01-19

icalendar - 6.1.1
Ebuild name:

dev-python/icalendar-6.1.1

Description

Package used for parsing and generating iCalendar files (RFC 2445)

Added to portage

2025-01-19

kryoflux-dtc - 3.50_p2-r2
Ebuild name:

app-misc/kryoflux-dtc-3.50_p2-r2

Description

KryoFlux Host Software

Added to portage

2025-01-19

level-zero - 1.20.1
Ebuild name:

dev-libs/level-zero-1.20.1

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2025-01-19

lumina - 1.6.2_p1
Ebuild name:

x11-wm/lumina-1.6.2_p1

Description

Lumina desktop environment

Added to portage

2025-01-19

metasm - 1.0.5-r2
Ebuild name:

dev-ruby/metasm-1.0.5-r2

Description

Cross-architecture assembler, disassembler, linker, and debugger

Added to portage

2025-01-19

microsoft-edge - 132.0.2957.115
Ebuild name:

www-client/microsoft-edge-132.0.2957.115

Description

The web browser from Microsoft

Added to portage

2025-01-19

microsoft-edge-beta - 132.0.2957.111
Ebuild name:

www-client/microsoft-edge-beta-132.0.2957.111

Description

The web browser from Microsoft

Added to portage

2025-01-19

microsoft-edge-beta - 133.0.3065.10
Ebuild name:

www-client/microsoft-edge-beta-133.0.3065.10

Description

The web browser from Microsoft

Added to portage

2025-01-19

microsoft-edge-dev - 133.0.3065.7
Ebuild name:

www-client/microsoft-edge-dev-133.0.3065.7

Description

The web browser from Microsoft

Added to portage

2025-01-19

mongodb-compass-bin - 1.45.1
Ebuild name:

dev-db/mongodb-compass-bin-1.45.1

Description

GUI for MongoDB

Added to portage

2025-01-19

mrustc - 0.11.2
Ebuild name:

dev-lang/mrustc-0.11.2

Description

Mutabah's Rust Compiler

Added to portage

2025-01-19

mrustc - 9999
Ebuild name:

dev-lang/mrustc-9999

Description

Mutabah's Rust Compiler

Added to portage

2025-01-19

numpy - 2.2.2
Ebuild name:

dev-python/numpy-2.2.2

Description

Fast array and numerical python library

Added to portage

2025-01-19

openssl - 3.4.9999
Ebuild name:

dev-libs/openssl-3.4.9999

Description

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

Added to portage

2025-01-19

opera-beta - 117.0.5408.4
Ebuild name:

www-client/opera-beta-117.0.5408.4

Description

A fast and secure web browser

Added to portage

2025-01-19

opera-developer - 118.0.5411.0-r1
Ebuild name:

www-client/opera-developer-118.0.5411.0-r1

Description

A fast and secure web browser

Added to portage

2025-01-19

opera-developer - 118.0.5415.0
Ebuild name:

www-client/opera-developer-118.0.5415.0

Description

A fast and secure web browser

Added to portage

2025-01-19

orjson - 3.10.15
Ebuild name:

dev-python/orjson-3.10.15

Description

Fast, correct Python JSON library supporting dataclasses, datetimes, and

Added to portage

2025-01-19

postgis - 3.5.2
Ebuild name:

dev-db/postgis-3.5.2

Description

Geographic Objects for PostgreSQL

Added to portage

2025-01-19

rapidfuzz-cpp - 3.3.0
Ebuild name:

dev-cpp/rapidfuzz-cpp-3.3.0

Description

Rapid fuzzy string matching in C++

Added to portage

2025-01-19

recurring-ical-events - 3.4.1
Ebuild name:

dev-python/recurring-ical-events-3.4.1

Description

Repeat ICalendar events by RRULE, RDATE and EXDATE

Added to portage

2025-01-19

restart-services - 1.5
Ebuild name:

app-admin/restart-services-1.5

Description

Tool to manage OpenRC and systemd services that need to be restarted

Added to portage

2025-01-19

revive - 2.25
Ebuild name:

app-emacs/revive-2.25

Description

Resume Emacs

Added to portage

2025-01-19

revive - 2.25
Ebuild name:

app-emacs/revive-2.25

Description

Resume Emacs

Added to portage

2025-01-19

rfcview - 0.13
Ebuild name:

app-emacs/rfcview-0.13

Description

An Emacs mode that reformats IETF RFCs for display

Added to portage

2025-01-19

rg - 2.3.0
Ebuild name:

app-emacs/rg-2.3.0

Description

GNU Emacs search tool based on ripgrep

Added to portage

2025-01-19

riece - 9.0.0-r1
Ebuild name:

app-emacs/riece-9.0.0-r1

Description

A redesign of Liece IRC client

Added to portage

2025-01-19

shaderc - 2024.4
Ebuild name:

media-libs/shaderc-2024.4

Description

Collection of tools, libraries and tests for shader compilation

Added to portage

2025-01-19

signal-desktop-bin - 7.38.0
Ebuild name:

net-im/signal-desktop-bin-7.38.0

Description

Allows you to send and receive messages of Signal Messenger on you

Added to portage

2025-01-19

sphinxygen - 1.0.10
Ebuild name:

dev-python/sphinxygen-1.0.10

Description

Python module/script that generates Sphinx markup to describe a C API

Added to portage

2025-01-19

spirv-headers - 1.4.304.0
Ebuild name:

dev-util/spirv-headers-1.4.304.0

Description

Machine-readable files for the SPIR-V Registry

Added to portage

2025-01-19

spirv-tools - 1.4.304.0
Ebuild name:

dev-util/spirv-tools-1.4.304.0

Description

Provides an API and commands for processing SPIR-V modules

Added to portage

2025-01-19

strawberry - 1.2.6
Ebuild name:

media-sound/strawberry-1.2.6

Description

Modern music player and library organizer based on Clementine and Qt

Added to portage

2025-01-19

tas - 1.9.0.240925
Ebuild name:

sys-apps/tas-1.9.0.240925

Description

Supermicro Thin-Agent Service for monitoring through the BMC/IPMI

Added to portage

2025-01-19

tortoisehg - 6.9
Ebuild name:

dev-vcs/tortoisehg-6.9

Description

Set of graphical tools for Mercurial

Added to portage

2025-01-19

umoci - 0.4.7
Ebuild name:

app-containers/umoci-0.4.7

Description

Manipulation tool for OCI images

Added to portage

2025-01-19

unrar - 7.1.3
Ebuild name:

app-arch/unrar-7.1.3

Description

Uncompress rar files

Added to portage

2025-01-19

uptimed - 0.4.7
Ebuild name:

app-misc/uptimed-0.4.7

Description

System uptime record daemon that keeps track of your highest uptimes

Added to portage

2025-01-19

uutils-coreutils - 0.0.29
Ebuild name:

sys-apps/uutils-coreutils-0.0.29

Description

GNU coreutils rewritten in Rust

Added to portage

2025-01-19

vanilla-sources - 6.1.126
Ebuild name:

sys-kernel/vanilla-sources-6.1.126

Description

Full sources for the Linux kernel

Added to portage

2025-01-19

volk - 1.4.304.0
Ebuild name:

dev-util/volk-1.4.304.0

Description

Meta loader for Vulkan API

Added to portage

2025-01-19

vulkan-headers - 1.4.304.0
Ebuild name:

dev-util/vulkan-headers-1.4.304.0

Description

Vulkan Header files and API registry

Added to portage

2025-01-19

vulkan-layers - 1.4.304.0
Ebuild name:

media-libs/vulkan-layers-1.4.304.0

Description

Vulkan Validation Layers

Added to portage

2025-01-19

vulkan-loader - 1.4.304.0
Ebuild name:

media-libs/vulkan-loader-1.4.304.0

Description

Vulkan Installable Client Driver (ICD) Loader

Added to portage

2025-01-19

vulkan-tools - 1.4.304.0
Ebuild name:

dev-util/vulkan-tools-1.4.304.0

Description

Official Vulkan Tools and Utilities for Windows, Linux, Android, an

Added to portage

2025-01-19

vulkan-utility-libraries - 1.4.304.0
Ebuild name:

dev-util/vulkan-utility-libraries-1.4.304.0

Description

Share code across various Vulkan repositories

Added to portage

2025-01-19

zen-sources - 6.12.10
Ebuild name:

sys-kernel/zen-sources-6.12.10

Description

The Zen Kernel Live Sources

Added to portage

2025-01-19

zix - 0.6.2
Ebuild name:

dev-libs/zix-0.6.2

Description

Lightweight C library of portability wrappers and data structures

Added to portage

2025-01-19

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