Related public article
Amethyst Custom Layouts (beta)
Amethyst Custom Layouts (beta)#install
Other reference layout
Related public article
Amethyst Custom Layouts (beta)
Amethyst Custom Layouts (beta)#install
Other reference layout
| [PXESERVA_MENU_ENTRY] | |
| asset = Ubuntu LTS 20.04 Desktop Live | |
| platform = amd64 | |
| kernel_bios = /NWA_PXE/$HEAD_DIR$/casper/vmlinuz | |
| append_bios = showmounts toram root=/dev/cifs initrd=/NWA_PXE/$HEAD_DIR$/casper/initrd boot=casper netboot=cifs nfsroot=//$IP_BSRV$/NWA_PXE_SHARE/$HEAD_DIR$ NFSOPTS=-ouser=serva,pass=avres,sec=ntlmv2,vers=2.0,ro ip=dhcp ro ipv6.disable=1 | |
| kernel_efi64 = /NWA_PXE/$HEAD_DIR$/casper/vmlinuz | |
| append_efi64 = showmounts toram root=/dev/cifs initrd=/NWA_PXE/$HEAD_DIR$/casper/initrd boot=casper netboot=cifs nfsroot=//$IP_BSRV$/NWA_PXE_SHARE/$HEAD_DIR$ NFSOPTS=-ouser=serva,pass=avres,sec=ntlm,vers=1.0,ro ip=dhcp ro ipv6.disable=1 |
| # SPDX-License-Identifier: GPL-2.0-only | |
| ################################################################################ | |
| # | |
| # r8125 is the Linux device driver released for Realtek 2.5Gigabit Ethernet | |
| # controllers with PCI-Express interface. | |
| # | |
| # Copyright(c) 2021 Realtek Semiconductor Corp. All rights reserved. | |
| # | |
| # This program is free software; you can redistribute it and/or modify it | |
| # under the terms of the GNU General Public License as published by the Free |
| #!/bin/sh | |
| # SPDX-License-Identifier: GPL-2.0-only | |
| # invoke insmod with all arguments we got | |
| # and use a pathname, as insmod doesn't look in . by default | |
| TARGET_PATH=$(find /lib/modules/$(uname -r)/kernel/drivers/net/ethernet -name realtek -type d) | |
| if [ "$TARGET_PATH" = "" ]; then | |
| TARGET_PATH=$(find /lib/modules/$(uname -r)/kernel/drivers/net -name realtek -type d) | |
| fi |
| #!/usr/bin/env python | |
| # encoding: utf8 | |
| # Author : laudai | |
| # codestyle : black | |
| from typing import List, Tuple | |
| import sys | |
| """ |
| bind-key -T copy-mode C-Space send-keys -X begin-selection | |
| bind-key -T copy-mode C-a send-keys -X start-of-line | |
| bind-key -T copy-mode C-b send-keys -X cursor-left | |
| bind-key -T copy-mode C-c send-keys -X cancel | |
| bind-key -T copy-mode C-e send-keys -X end-of-line | |
| bind-key -T copy-mode C-f send-keys -X cursor-right | |
| bind-key -T copy-mode C-g send-keys -X clear-selection | |
| bind-key -T copy-mode C-k send-keys -X copy-end-of-line | |
| bind-key -T copy-mode C-n send-keys -X cursor-down | |
| bind-key -T copy-mode C-p send-keys -X cursor-up |
| #!/usr/bin/env python | |
| ## Tiny Syslog Server in Python. | |
| ## | |
| ## This is a tiny syslog server that is able to receive UDP based syslog | |
| ## entries on a specified port and save them to a file. | |
| ## That's it... it does nothing else... | |
| ## There are a few configuration parameters. | |
| LOG_FILE = 'youlogfile.log' |
Windows Service with Python 3.5 and pyinstaller