Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
| $ # Use Live CD to boot | |
| $ sudo su # Switch to root | |
| $ fdisk -l # Get names of root, boot & EFI partition names. you can also use blkid | |
| $ mount /dev/mapper/fedora_localhost--live-root /mnt # mount root partition | |
| $ cat /mnt/etc/fedora-release | |
| Fedora release 31 (Thirty One) | |
| $ mount /dev/nvme0n1p2 /mnt/boot # mount boot partition | |
| $ mount /dev/nvme0n1p1 /mnt/boot/efi # mount EFI partition | |
| # Note: If you are not able to mount EFI partition ('Input/Output error'), | |
| # You may have to repair ESP file system or format ESP. |
Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
| #!/bin/bash | |
| # Simple script to delete files older than specific number of days from FTP. Provided AS IS without any warranty. | |
| # This script use 'lftp'. And 'date' with '-d' option which is not POSIX compatible. | |
| # FTP credentials and path | |
| FTP_HOST="ftp.host.tld" | |
| FTP_USER="usename" | |
| FTP_PASS="password" | |
| FTP_PATH="/ftp/path" | |
| # Full path to lftp executable |
| # Maintainer: Stefano Capitani <stefanoatmanjarodotorg> | |
| # Maintainer: Filipe Laíns (FFY00) <lains@archlinux.org> | |
| pkgname=budgie-extras | |
| pkgver=0.7.0 | |
| pkgrel=1.1 | |
| pkgdesc='Additional Budgie Desktop enhancements for the user experience' | |
| arch=('x86_64') | |
| license=('GPL3') | |
| url='https://github.com/UbuntuBudgie/budgie-extras' |
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |