This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Odyssey-VM ~ # emerge --info | |
Portage 3.0.16 (python 3.8.8-final-0, default/linux/amd64/17.1/desktop/plasma/systemd, gcc-10.2.0, glibc-2.32-r8, 5.10.6-gentoo-x86_64 x86_64) | |
================================================================= | |
System uname: Linux-5.10.6-gentoo-x86_64-x86_64-Intel-R-_Core-TM-_i9-9980HK_CPU_@_2.40GHz-with-glibc2.2.5 | |
KiB Mem: 16380520 total, 14040952 free | |
KiB Swap: 2097148 total, 2097148 free | |
Timestamp of repository gentoo: Sun, 07 Mar 2021 17:00:01 +0000 | |
Head commit of repository gentoo: 330346ce66cae755165a2a786527b0605d521279 | |
Timestamp of repository dotnet: Wed, 03 Mar 2021 21:22:02 +0000 | |
Head commit of repository dotnet: f5085cfbff87deb9fdf70008bb7bacadab702d8e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Odyssey-VM ~ # emerge --info | |
Portage 3.0.16 (python 3.8.8-final-0, default/linux/amd64/17.1/desktop/plasma/systemd, gcc-10.2.0, glibc-2.32-r8, 5.10.6-gentoo-x86_64 x86_64) | |
================================================================= | |
System uname: Linux-5.10.6-gentoo-x86_64-x86_64-Intel-R-_Core-TM-_i9-9980HK_CPU_@_2.40GHz-with-glibc2.2.5 | |
KiB Mem: 16380520 total, 14040952 free | |
KiB Swap: 2097148 total, 2097148 free | |
Timestamp of repository gentoo: Sun, 07 Mar 2021 17:00:01 +0000 | |
Head commit of repository gentoo: 330346ce66cae755165a2a786527b0605d521279 | |
Timestamp of repository dotnet: Wed, 03 Mar 2021 21:22:02 +0000 | |
Head commit of repository dotnet: f5085cfbff87deb9fdf70008bb7bacadab702d8e |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[32;01m * [39;49;00mPackage: dev-qt/qtwebengine-5.15.2_p20210224 | |
[32;01m * [39;49;00mRepository: gentoo | |
[32;01m * [39;49;00mMaintainer: [email protected] [email protected] | |
[32;01m * [39;49;00mUpstream: https://bugreports.qt.io/ | |
[32;01m * [39;49;00mUSE: abi_x86_64 alsa amd64 elibc_glibc jumbo-build kernel_linux pulseaudio system-ffmpeg system-icu userland_GNU widgets | |
[32;01m * [39;49;00mFEATURES: network-sandbox preserve-libs sandbox userpriv usersandbox | |
[32;01m*[0m Using python2.7 to build | |
>>> Unpacking source... | |
>>> Unpacking qtwebengine-5.15.2_p20210224.tar.xz to /var/tmp/portage/dev-qt/qtwebengine-5.15.2_p20210224/work | |
>>> Source unpacked in /var/tmp/portage/dev-qt/qtwebengine-5.15.2_p20210224/work |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*- mode: nginx; mode: flyspell-prog; mode: autopair; ispell-local-dictionary: "american" -*- | |
## Define a zone for limiting the number of simultaneous | |
## connections nginx accepts. 1m means 32000 simultaneous | |
## sessions. We need to define for each server the limit_conn | |
## value refering to this or other zones. | |
## ** This syntax requires nginx version >= | |
## ** 1.1.8. Cf. http://nginx.org/en/CHANGES. If using an older | |
## ** version then use the limit_zone directive below | |
## ** instead. Comment out this | |
## ** one if not using nginx version >= 1.1.8. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Cron script to update Mozilla Firefox build editions | |
# Targeted OS: Fedora 23 - will probably work on most | |
# Default Firefox version: Firefox Developer Edition (aurora) | |
# Leaves files in the following spots: | |
# /opt/firefox-dev | |
# /usr/share/applications/firefox-dev.desktop | |
# | |
# set -x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param($global:RestartRequired=0, | |
$global:MoreUpdates=0, | |
$global:MaxCycles=10) | |
function Check-ContinueRestartOrEnd() { | |
$RegistryKey = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" | |
$RegistryEntry = "InstallWindowsUpdates" | |
switch ($global:RestartRequired) { | |
0 { | |
$prop = (Get-ItemProperty $RegistryKey).$RegistryEntry |