User contributions
From DevOps Notebook
- 14:21, 21 March 2020 diff hist 0 Nmap
- 14:20, 21 March 2020 diff hist 0 Nmap
- 14:20, 21 March 2020 diff hist +92 N Nmap Created page with "=== Scan network for free ip address in a range === <pre> # nmap -sP -PR 10.5.12.0/24 </pre>"
- 14:19, 21 March 2020 diff hist +27 Linux commands
- 16:45, 5 March 2020 diff hist +246 N Set DNS with powershell Created page with "===Set primary windows dns with powershell script=== <pre> $dnsserver = (,"1.1.1.1") Get-WmiObject -Class Win32_NetworkAdapterConfiguration -Filter IPEnabled=TRUE | Invoke-Wmi..."
- 16:44, 5 March 2020 diff hist +31 N PowerShell Created page with "Set DNS with powershell<br>"
- 16:44, 5 March 2020 diff hist +19 Windows
- 22:15, 4 March 2020 diff hist 0 How to remove services in Windows current
- 22:15, 4 March 2020 diff hist +335 N How to remove services in Windows Created page with "==Deleting Services in windows registry== 1. Open the Windows Registry. (run ''regedit'') 2. Navigate to the key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services. 3. Backu..."
- 22:13, 4 March 2020 diff hist +42 N Registry Created page with "How to remove services in Windows <br>" current
- 22:13, 4 March 2020 diff hist +16 N Windows Created page with "Registry<br>"
- 22:13, 4 March 2020 diff hist +17 Main Page
- 10:03, 27 February 2020 diff hist +115 Find
- 20:39, 26 February 2020 diff hist +88 N Recover skype chat information from files Created page with "<pre> $ grep -i "string you are looking for" ~/Library/Application Support/Skype/ </pre>" current
- 20:38, 26 February 2020 diff hist +45 N MacOS Created page with "Recover skype chat information from files" current
- 20:37, 26 February 2020 diff hist +15 Main Page
- 11:34, 24 February 2020 diff hist +16 Redirect all except selected IP to another url current
- 11:32, 24 February 2020 diff hist +134 N Redirect all except selected IP to another url Created page with "<pre> RewriteEngine On RewriteBase / RewriteCond %{REMOTE_HOST} !^1.2.3.4 RewriteRule .* https://someotherwebsite.com [R=302,L] </pre>"
- 11:32, 24 February 2020 diff hist +55 N Apache Created page with "Redirect all except selected IP to another url <br>"
- 11:30, 24 February 2020 diff hist +16 Web Server current
- 10:28, 20 February 2020 diff hist +706 N Set ulimit without reboot Created page with " Modify ''limits.conf'' file located (on most distros) at ''/etc/security/limits.conf''. <br> Append following lines: <pre> * soft nproc 768000 * hard nproc..." current
- 10:22, 20 February 2020 diff hist +53 N Kernel Created page with "==Configuration== Set ulimit without reboot <br>"
- 10:21, 20 February 2020 diff hist +16 Linux
- 11:02, 26 December 2019 diff hist +55 Linux commands
- 10:40, 18 December 2019 diff hist +171 N Redirect http to https in nginx Created page with "<pre> server { listen 80 default_server; listen [::]:80 default_server; server_name example.com www.example.com; return 301 https://$server_name$request_uri; } </pre>"
- 10:40, 18 December 2019 diff hist +40 N NGINX Created page with "Redirect http to https in nginx <br>"
- 10:39, 18 December 2019 diff hist +14 N Web Server Created page with "NGINX <br>"
- 10:39, 18 December 2019 diff hist +14 Main Page
- 17:45, 9 December 2019 diff hist +599 Monitoring Memory and Disk Metrics for Amazon EC2 Linux Instances current
- 12:20, 7 December 2019 diff hist +177 Du current
- 11:49, 7 December 2019 diff hist +134 N Find Created page with "== Find largest files in given location == <pre> find /home/tecmint/Downloads/ -type f -exec du -Sh {} + | sort -rh | head -n 5 </pre>"
- 11:47, 7 December 2019 diff hist +1 Du
- 11:47, 7 December 2019 diff hist -2 Du
- 11:47, 7 December 2019 diff hist +2 Du →find top 10 largest directories
- 11:46, 7 December 2019 diff hist +82 N Du Created page with "== find top 10 largest directories == <pre> # du -hs * | sort -rh | head -5 </pre>"
- 11:43, 7 December 2019 diff hist +25 Linux commands
- 11:40, 7 December 2019 diff hist +9 Database
- 15:56, 4 December 2019 diff hist +18 Database
- 11:24, 4 December 2019 diff hist +81 N Get limited number of records from mysqldump Created page with "<pre> $ mysqldump --opt --where="1 limit 1000000" database_name > dump.sql </pre>" current
- 11:23, 4 December 2019 diff hist +52 N MySQL Commands snippets Created page with "Get limited number of records from mysqldump<br>"
- 11:22, 4 December 2019 diff hist +28 N MySQL Created page with "MySQL Commands snippets "
- 11:22, 4 December 2019 diff hist +9 N Database Created page with "MySQL"
- 11:21, 4 December 2019 diff hist +17 Main Page
- 18:35, 28 November 2019 diff hist +2 How to reset user password via console in gitlab current
- 18:34, 28 November 2019 diff hist +2 Monitoring Memory and Disk Metrics for Amazon EC2 Linux Instances
- 18:33, 28 November 2019 diff hist +444 N How to reset user password via console in gitlab Created page with "To reset your user password, first log into your server with root privileges. Start a Ruby on Rails console with this command: <pre> gitlab-rails console -e production </pre>..."
- 18:31, 28 November 2019 diff hist +70 N Git Created page with "== GitLab == How to reset user password via console in gitlab <br>" current
- 18:30, 28 November 2019 diff hist +16 Dev
- 17:09, 22 November 2019 diff hist -2 Extend lvm partition current
- 17:07, 22 November 2019 diff hist +1,290 N Extend lvm partition Created page with "== Create lvm partition with fdisk == <pre> # fdisk /dev/sdX </pre> To Create new partition Press '''n'''. <br> Choose primary partition use '''p'''. <br> Choose which numbe..."