Lector de Feeds

kfourinline-24.05.0-1.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 22:00
In Mageia/cauldron/x86_64: KFourInLine is a board game for two players based on the Connect-Four game. The players try to build up a row of four pieces using different strategies.
Categorías: RPMs

kfourinline-24.05.0-1.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 22:00
In Mageia/cauldron/i586: KFourInLine is a board game for two players based on the Connect-Four game. The players try to build up a row of four pieces using different strategies.
Categorías: RPMs

kubrick-24.05.0-1.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 22:00
In Mageia/cauldron/x86_64: Kubrick is a game based on the Rubik's Cube™ puzzle. The cube sizes range from 2x2x2 up to 6x6x6, or you can play with irregular "bricks" such as 5x3x2 or "mats" such as 6x4x1 or 2x2x1. The game has a selection of puzzles at several levels of difficulty, as well as demos of pretty patterns and solution moves, or you can make up your own puzzles.
Categorías: RPMs

kubrick-24.05.0-1.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 22:00
In Mageia/cauldron/i586: Kubrick is a game based on the Rubik's Cube™ puzzle. The cube sizes range from 2x2x2 up to 6x6x6, or you can play with irregular "bricks" such as 5x3x2 or "mats" such as 6x4x1 or 2x2x1. The game has a selection of puzzles at several levels of difficulty, as well as demos of pretty patterns and solution moves, or you can make up your own puzzles.
Categorías: RPMs

lskat-24.05.0-1.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 22:00
In Mageia/cauldron/i586: Lieutenant Skat (from German "Offiziersskat") is a fun and engaging card game for two players, where the second player is either live opponent, or a built in artificial intelligence.
Categorías: RPMs

lskat-24.05.0-1.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 22:00
In Mageia/cauldron/x86_64: Lieutenant Skat (from German "Offiziersskat") is a fun and engaging card game for two players, where the second player is either live opponent, or a built in artificial intelligence.
Categorías: RPMs

kitinerary-24.05.0-2.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 22:00
In Mageia/cauldron/x86_64: Library for handling Itinerary data.
Categorías: RPMs

kitinerary-24.05.0-2.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 22:00
In Mageia/cauldron/i586: Library for handling Itinerary data.
Categorías: RPMs

kdeedu-data-24.05.0-1.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 09:00
In Mageia/cauldron/x86_64: Shared icons, artwork and data files for educational applications.
Categorías: RPMs

kdeedu-data-24.05.0-1.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 09:00
In Mageia/cauldron/i586: Shared icons, artwork and data files for educational applications.
Categorías: RPMs

lokalize-24.05.0-1.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 09:00
In Mageia/cauldron/x86_64: Lokalize is a computer-aided translation system that focuses on productivity and performance. The translator does only creative work (of delivering message in his/her mother language in laconic and easy to understand form). Lokalize implies a paragraph-by-paragraph translation approach (when translating documentation) and message-by-message approach (when translating GUI strings).
Categorías: RPMs

lokalize-24.05.0-1.mga10.src.rpm

Últimos RPMS para cooker y estable - 10 Junio, 2024 - 09:00
In Mageia/cauldron/i586: Lokalize is a computer-aided translation system that focuses on productivity and performance. The translator does only creative work (of delivering message in his/her mother language in laconic and easy to understand form). Lokalize implies a paragraph-by-paragraph translation approach (when translating documentation) and message-by-message approach (when translating GUI strings).
Categorías: RPMs

Mujer y cable USB

Bilo y Nano - 19 Mayo, 2023 - 16:58

El Comité de Guionado

Bilo y Nano - 12 Mayo, 2023 - 09:02

Humor de ChatGPT

Bilo y Nano - 5 Mayo, 2023 - 09:34

Cosas de máquinas

Bilo y Nano - 26 Abril, 2023 - 02:46

Meet ChatGPT

Bilo y Nano - 19 Abril, 2023 - 02:44

Aterrizando

Bilo y Nano - 11 Abril, 2023 - 11:28

Puesta al día

Bilo y Nano - 3 Abril, 2023 - 08:58

HOWTO: NULL Modem TCP/IP network connection between Linux and Windows

Paranoias del Capitan X - 26 Julio, 2019 - 14:00
HOWTO: NULL Modem TCP/IP network connection between Linux and Windows

Linux PPP server
----------------

The first step is to install the pppd demon and optionally the mgetty to use it on dialup modem, but this howto only covers the null modem (serial) part.
Once installed you must to create the following files:

/etc/sysctl.conf

net.ipv4.ip_forward=1

/etc/ppp/options

# demon persist noauth auth # compress bsdcomp 12,15 deflate 12,15 # common options proxyarp lock passive lcp-echo-interval 8 lcp-echo-failure 6 nologfd crtscts local # Windows compat connect 'chat TIMEOUT 20000 CLIENT CLIENTSERVER' # port settings /dev/ttyS0 115200

/etc/ppp/options.ttyS0

# server ip : client ip 10.0.2.15:10.0.2.100 netmask 255.255.255.0 ms-dns 77.88.8.8

/etc/ppp/pap-secrets

# user server password ip user * userPass *

You can launch the pppd demon on init or inittab.

Linux PPP client
----------------

Now in the client you must also install the pppd demon and create the following files:

/etc/ppp/options

# common options defaultroute lock passive lcp-echo-interval 8 lcp-echo-failure 6 nologfd crtscts local # Windows compat connect 'chat -v -f /etc/ppp/win.chat' # port settings /dev/ttyS0 115200

/etc/ppp/options.ttyS0

user user

/etc/ppp/win.chat

TIMEOUT 10 '' CLIENT\c

**Windows PPP client

------------------**

If you use Windows, also can connect to the network. The first step is download a null modem driver (e.g. MDMCBXNT.INF) and install it.

Now only is necessary create a new phone connection with the "NT Direct Connection" modem on 115200 bauds.

Categorías: Planeta BlogDrake
Feed