This file contains hidden or 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 | |
| # | |
| # /srv/vm_customization_console | |
| # if [configured] creates file /srv/vm_custom.settings | |
| # | |
| # | |
| ISCONFIGURED_FILE="/srv/vm_custom.settings" | |
| HWADDR=`ifconfig eth0 | grep HW | awk ' BEGIN { FS = " " } ; { print $5 } ; '` | |
| IPADDR=`ifconfig eth0 | grep "inet addr:" | awk $'{print $2}' | cut -d ":" -f 2` |
This file contains hidden or 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
| кузовной ремонт | |
| покраска авто | |
| ремонт двигателя | |
| кузовные работы | |
| ремонт кузова | |
| ремонт ходовой | |
| обслуживание автомобиля | |
| диагностика авто | |
| диагностика двигателя | |
| ремонт авто москва |
This file contains hidden or 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
| 1. | |
| Посмотри кто в топ 10 по тем запросам, которые ты будешь продвигать | |
| Какие это сайты? | |
| Какой у них контент? | |
| -> Делай также | |
| 2. | |
| Какое количество ссылок на твой сайт сейчас (посмотри тут ahrefs.com) | |
| Какое количество ссылок было в прошлом месяце и позапрошлом |
This file contains hidden or 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
| ## | |
| ## ВСЕ ДЕЙСТВИЯ ВЫПОЛНЯЮТСЯ В powershell.exe ИЗ ПОД АДМИНИСТРАТОРА! | |
| ## | |
| # Change Drive Letter on DVD Drive to E: | |
| gwmi Win32_Volume -Filter "DriveType = '5'" | swmi -Arguments @{DriveLetter = 'E:'} | |
| # Set Power plan to High performance |
This file contains hidden or 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
| ## | |
| ## СОЗДАНИЕ SQL АЛИАСА ДЛЯ SHAREPOINT 2013 | |
| ## | |
| # For 64-bit version: | |
| New-ItemProperty HKLM:SOFTWARE\Microsoft\MSSQLServer\Client\ConnectTo –name <your_alias> -propertytype String -value "DBMSSOCN,<your_sql_instance>,1433" |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| Begin trace logging for SharePoint 2010 Products Configuration Wizard. Version 15.0.4569.1503 | |
| 01/29/2016 16:56:53 1 INF Entering function PsconfigUserInterfaceMain.Main | |
| 01/29/2016 16:56:53 1 INF Entering function Common.SetCurrentThreadCultureToInstalledCulture | |
| 01/29/2016 16:56:54 1 INF Entering function Common.SetThreadCultureToInstalledCulture | |
| 01/29/2016 16:56:55 1 INF Current thread culture is Russian (Russia), current thread ui culture is English (United States), installed culture is English (United States) | |
| 01/29/2016 16:56:55 1 INF Changing current thread culture to English (United States) | |
| 01/29/2016 16:56:55 1 INF Leaving function Common.SetThreadCultureToInstalledCulture | |
| 01/29/2016 16:56:55 1 INF The current ui culture English (United States) is NOT right to left | |
| 01/29/2016 16:56:55 1 INF Leaving function Common.SetCurrentThreadCultureToInstalledCulture | |
| 01/29/2016 16:56:55 1 INF Creating the psconfig application context |
This file contains hidden or 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
| # Настройка DMARC | |
| [удобный визард](https://www.unlocktheinbox.com/dmarcwizard/) | |
| У меня получилось так: | |
| "v=DMARC1; p=none; sp=none; rua=mailto:[email protected]; ruf=mailto:[email protected]; rf=afrf; pct=100; ri=86400" | |
| ### If you run Bind: |
This file contains hidden or 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
| ### | |
| # COLORS: | |
| # red=$(tput setaf 1) | |
| # grn=$(tput setaf 2) | |
| # ylw=$(tput setaf 3) | |
| # reset=$(tput sgr0) | |
| # EXPECT: | |
| Last login: |
This file contains hidden or 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
| Add Comments to iptables Rules: | |
| Depending on your distribution, you may need to load the 'ipt_comment' or 'xt_comment' modules into your running kernel first. | |
| like: 'modprobe ipt_comment' | |
| EXAMPLE: | |
| iptables -A INPUT -j DROP -p tcp --dport 22222 -m comment --comment "test iptables rule comment" | |