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 | |
function help { | |
echo "$0 [start|stop|reload|restart]" | |
exit | |
} | |
path="/linux/Linux/nginx-rtmp/binary" | |
bin="sbin/nginx" |
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 | |
tools=( "/usr/bin/build-simple-cdd" "/usr/bin/xorriso" ) | |
count="${#tools[@]}" | |
for i in `seq 1 $(($count-1))` | |
do | |
if [ ! -f "${tools[$i]}" ] | |
then | |
echo "${tools[$i]} is not found" |
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
http://tegos.ru/ | |
https://seclub.org/ | |
http://m.mobtop.ru/catalogue/25 | |
--- | |
https://visavi.net/load/down?act=view&id=799 - вот эта сама старая похрду из доступных | |
https://visavi.net/load/down?act=view&id=1695 - и еще движок | |
https://visavi.net/load/down?act=view&id=1424 - а вот это новый самый на кохане | |
http://soft-2008.my1.ru/load/35-1-0-356 - 14 версия |
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 | |
grep -vE '^#|^$' ".env" | awk -F \= '{print $1"=\""$2"\""}' | \ | |
while read env; | |
do | |
echo "$env"; | |
export "$env"; | |
done |
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
... | |
... | |
... | |
'arch/x86/boot/bzImage' -> '/boot/vmlinuz-4.12.7-lfs-8.1' | |
'System.map' -> '/boot/System.map-4.12.7' | |
'.config' -> '/boot/config-4.12.7' | |
install: creating directory '/etc/modprobe.d' | |
/ | |
Using GRUB to setup the boot process.. | |
NOTE: skipped. Check 8.4 chapter of LFS book for details |
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
### Content of /etc/modprobe.d/nvidia-blacklists-nouveau.conf | |
# You need to run "update-initramfs -u" after editing this file. | |
# see #580894 | |
blacklist nouveau |
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
Array | |
( | |
[0] => Array | |
( | |
[Id] => 825eae0c448a8677f6ca7e91350754d125b1a42c2a0adcf502722c6384d32ab6 | |
[Names] => Array | |
( | |
[0] => /dockercirie_php_1 | |
) |
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
[pasha-pc] ~/Documents/Cosmoteer/app $ mono Cosmoteer.exe | |
Unhandled Exception: | |
System.Security.SecurityException: No access to the given key ---> System.UnauthorizedAccessException: Access to the path "/etc/mono/registry" is denied. | |
at System.IO.Directory.CreateDirectoriesInternal (System.String path) [0x00070] in <8f2c484307284b51944a1a13a14c0266>:0 | |
at System.IO.Directory.CreateDirectory (System.String path) [0x000a4] in <8f2c484307284b51944a1a13a14c0266>:0 | |
at System.IO.DirectoryInfo.Create () [0x00000] in <8f2c484307284b51944a1a13a14c0266>:0 | |
at (wrapper remoting-invoke-with-check) System.IO.DirectoryInfo:Create () | |
at System.IO.Directory.CreateDirectoriesInternal (System.String path) [0x0003f] in <8f2c484307284b51944a1a13a14c0266>:0 | |
at System.IO.Directory.CreateDirectory (System.String path) [0x000a4] in <8f2c484307284b51944a1a13a14c0266>:0 |
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
# Generate lines for deleting, unfortinatly not possible to remove crap in loop | |
$array = @{ | |
"Calculator"="windowscalculator"; | |
"3D Builder"="3dbuilder"; | |
"Alarms and Clock"="windowsalarms"; | |
"Calendar and Mail"="windowscommunicationsapps"; | |
"Camera"="windowscamera"; | |
"Get Help"="gethelp"; | |
"Groove Music"="zunemusic"; | |
"Maps"="windowsmaps"; |
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/sh | |
source $stdenv/setup | |
PATH=$dpkg/bin:$PATH | |
dpkg -x $src unpacked | |
cp -r unpacked/* $out/ |
OlderNewer