gists | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
- Ganz klar mein Favorit (hab ich seit Oktober): Pixel 8 (Pro)
sudo dnf install \ | |
plocate \ | |
autoconf \ | |
bison \ | |
re2c \ | |
libxml2-devel \ | |
sqlite-devel \ | |
libcurl-devel \ | |
gd-devel \ | |
gcc \ |
#!/bin/sh | |
findCmd=${FIND_EXECUTABLE_PATH:-$(which find)} | |
targetGroup=${TARGET_GROUP_NAME:-$(id -ng)} | |
targetUser=${TARGET_USER_NAME:-$(id -nu)} | |
$findCmd $1 -type f -exec chmod 664 {} \; | |
$findCmd $1 -type d -exec chmod 775 {} \; | |
$findCmd $1 -exec chown $targetUser:$targetGroup {} \; |
#!/usr/bin/bash | |
# | |
# CasaOS Update Script v0.4.3# | |
# GitHub: https://github.com/IceWhaleTech/CasaOS | |
# Issues: https://github.com/IceWhaleTech/CasaOS/issues | |
# Requires: bash, mv, rm, tr, grep, sed, curl/wget, tar, smartmontools, parted, ntfs-3g, net-tools | |
# | |
# This script update your CasaOS. | |
# Usage: | |
# |
gists | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|