https://www.ehow.com/how_6907811_add-lun-vmware-esx.html
For Synology:
https://www.synology.com/en-us/knowledgebase/tutorials/551
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Beep
https://www.datasheet-pdf.com/
https://www.hardmaster.info/articles/
https://habr.com/ru/users/hddmasters/posts/
https://hddmasters.by/articles/articles.html
https://fccid.io/PD5-WAP150/Internal-Photos/Internal-Photos-2760550
https://nascompares.com/answer/list-of-wd-cmr-and-smr-hard-drives-hdd/
https://3dnews.ru/938764/resursnie-ispitaniya-ssd-obnovlyaemiy-material
https://www.manualslib.com
https://manuall.co.uk/
https://manualmachine.com/
https://en.wikichip.org/wiki/WikiChip
https://www.techpowerup.com/ssd-specs/
https://blog.elcomsoft.com/2019/01/why-ssds-die-a-sudden-death-and-how-to-deal-with-it/
https://www.192-168-1-1-ip.co/
https://www.micron.com/sales-support/design-tools/fbga-parts-decoder
If only half of the digits is seen:
https://forum.ru-board.com/topic.cgi?forum=62&topic=19323#12
Just rename word Ms to Microsoft here [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]:
“MS Shell Dlg,204″=”Ms Sans Serif,204” -> “MS Shell Dlg,204″=”Microsoft Sans Serif,204”
net stop wuauserv
DISM /Online /Cleanup-Image /RestoreHealth
If there is an error ” The source files could not be downloaded”:
gpedit.msc
Computer Configuration > Administrative Templates > System
Specify settings for optional component installation and component repair setting
Contact Windows Update directly to download repair content instead of Windows Server Update Service (WSUS).
or
DISM /Online /Cleanup-Image /RestoreHealth /source:WIM:X:\Sources\Install.wim:1 /LimitAccess Where “X” is the drive letter where the ISO is located. Simply change the “X” to the correct drive letter
sfc /scannow
shutdown /r /f
https://www.thewindowsclub.com/dism-fails-source-files-could-not-be-found
https://everymac.com/systems/apple/mac_pro/specs/mac-pro-quad-2.66-specs.html
OS X compatibility:
https://the-x.ru/j/?p=247
https://macsuper.ru/remont/iphone/
If you’ve just replaced broken power source with used from Aliexpress and now display flashes its LED 3 times and won’t show any picture, you should isolate middle contacts inside display’s power plug.
https://www.ifixit.com/Answers/View/128535/Flashing+LED+Fault+Indicator
https://www.macobserver.com/tips/how-to/time-zone-cannot-be-set-manually/
Turn Off Screen Time Passcode
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
sysctl net.inet.tcp.mssdflt=1400
sysctl net.inet.tcp.blackhole=2
sysctl net.inet.tcp.slowstart_flightsize=60
sysctl net.inet.tcp.sendspace=3125000
sysctl net.inet.tcp.recvspace=3125000
sysctl net.inet.tcp.win_scale_factor=6
sysctl net.inet.tcp.autorcvbufmax=3125000
sysctl net.inet.tcp.autosndbufmax=3125000
sudo su
rm /private/etc/nsmb.conf
echo “[default]” >> /etc/nsmb.conf
echo “signing_required=no” >> /etc/nsmb.conf
echo “streams=yes” >> /etc/nsmb.conf
echo “notify_off=yes” >> /etc/nsmb.conf
echo “port445=no_netbios” >> /etc/nsmb.conf
echo “unix extensions = no” >> /etc/nsmb.conf
echo “veto files=/._*/.DS_Store/” >> /etc/nsmb.conf
echo “protocol_vers_map=6” >> /etc/nsmb.conf
echo “mc_prefer_wired=yes” >> /etc/nsmb.conf
echo “dir_cache_max_cnt=0” >> /etc/nsmb.conf
echo “strict sync = no” >> /etc/nsmb.conf
cat /private/etc/nsmb.conf
How to redirect HTTP requests to HTTPS:
Example 2 – specific url:
$HTTP[“scheme”] == “httpss” {
$HTTP[“host”] =~ “.*” {
url.redirect = (“^/phpmyadmin/.*” => “https://%0$0”)
}
}
If you need it only for a specific directory or directories, use conditionals:
$HTTP[“url”] =~ “^/download($|/)” {
dir-listing.activate = “enable”
}
URL Rewrites with regular expressions:
Regular Expressions
Patterns (“wildcards”) are matched against a string
Special characters (see [https://www.regular-expressions.info/reference.html] for reference):
. (full stop) – match any character
\* (asterisk) – match zero or more of the previous symbol
\+ (plus) – match one or more of the previous symbol
? (question) – match zero or one of the previous symbol
\\? (backslash-something) – match special characters
^ (caret) – match the start of a string
$ (dollar) – match the end of a string
[set] – match any one of the symbols inside the square braces.
[^set] – match any symbol that is NOT inside the square braces.
(pattern) – grouping, remember what the pattern matched as a special variable
{n,m} – from n to m times matching the previous character (m could be omitted to mean >=n times)
(?!expression) – match anything BUT expression at the current position. Example: “^(/(?!(favicon.ico$|js/|images/)).*)” => “/fgci/$1”
Normal alphanumeric characters are treated as normal
Protect Different Directories With Different Password Files:
$HTTP[“url”] =~ “^/docs/” {
auth.backend = “plain”
auth.backend.plain.userfile = “/home/lighttpssd/.lighttpssdpassword-DOCS”
auth.require = ( “/docs/” =>
(
“method” => “basic”,
“realm” => “Password protected area”,
“require” => “user=tom”
)
)
}