Posts

Showing posts from February, 2023

YouTube Impressions Sudden Drop

  No idea why, but same thing happened to me 😭I figured cuz I changed to a different country, but not sure what has changed in your videos.

Speed up rsync with Simultaneous/Concurrent File Transfers?

  Updated answer (Jan 2020) xargs  is now the recommended tool to achieve parallel execution. It's pre-installed almost everywhere. For running multiple  rsync  tasks the command would be: ls /srv/mail | xargs -n1 -P4 -I% rsync -Pa % myserver.com:/srv/mail/ This will list all folders in  /srv/mail , pipe them to  xargs , which will read them one-by-one and and run 4  rsync  processes at a time. The  %  char replaces the input argument for each command call. Original answer using  parallel : ls /srv/mail | parallel -v -j8 rsync -raz --progress {} myserver.com:/srv/mail/{} apt-get install moreutils  to install  parallel apt-get install parallel

aapnel error

 502 bad gateway nginx fix aa panel switched php version to 7.4 I can't access AApanel. 404 Not Found - nginx execute  bt default  to get the correct security entry in the ssh terminal

best network capturing tool

 smartsniff wireshark

Error! Summary for Filing is not Generated or is not available at this time. Please try again later

  Nil GST return process 2023 | Error! Summary for Filing is not Generated or is not available at this time. Please try again later GSTR1 Resolution: Dear Taxpayer, If you want to file your Nil file return for which Please follow these below steps – Login Your GST Portal Go to return Dashboard Follow Given Steps Step 1 – Please select the  return period  which you want to file. Step 2 –  Uncheck the Nil file return checkbox  and then click on the  generate summary  button. Step 3 –  Then Go back to return dashboard and again select the return period. Step 4 – Now check the  Nil file return checkbox  and then click on  File statement button  to proceed further. If You face any other issue, please log another ticket with screenshot of error message. Thanks

Unexpected Operator error in shell script

  using  bash run.sh  instead of  sh run.sh  worked for me.

How to Check Whether Your Disk Is an SSD or HDD on Linux

 root@vmi1181596:~# cat /sys/block/sda/queue/rotational 0 root@server:~# cat /sys/block/sda/queue/rotational 1 if  0 ssd if 1 hdd

vestacp block direct ip access

 /home/sberbank/web/sberbank.co.in/document_errors vi 404.html remove <p><a href="http://%domain%/">%domain%</a></p> also here cd /usr/local/vesta/data/templates/web/skel/document_errors

wireshark not showing ethernet on windows

 had to reinstall npcap https://npcap.com/#download “failed to set hardware filter to promiscuous mode” error when capture attempted on a wireless adapter on Windows If (as Landi suggested) this is a wireless adapter, some of them don't support promiscuous mode on Windows. Try un-checking the "Promiscuous mode" checkbox in the "Capture options" dialog box.

redirect ytmp3 wordpress traffic to earning website

 removed from header.php search this lines by searching downloadBtn             <input id="url" type="url" name="url" class="form-control w-100" placeholder="Paste a Video URL"                                aria-label="Paste a Video URL">                         <input id="token" type="hidden" name="token" value="<?php echo $_SESSION['token']; ?>">                         <button class="mt-4 btn btn-primary btn-block me-4" <?php echo $onclick; ?> id="downloadBtn">                             <?php pll_e('Download'); ?>                         </button>                         <button class="mt-4 btn btn-secondary btn-block me-4"                                 id="pasteBtn"><?php pll_e('Paste from clipboard'); ?>                         </button> replace above with