Recent content by sohom

  1. sohom

    Learn a new Linux command every day :-)

    # Benchmark your CPU wget http://cdn.geekbench.com/Geekbench-5.2.3-Linux.tar.gz tar xvf Geekbench-5.2.3-Linux.tar.gz cd Geekbench-5.2.3-Linux/ && ./geekbench_x86_64 it will upload all the details into Geekbench website and generate a URL with all reports gathered like below...
  2. sohom

    Learn a new Linux command every day :-)

    # Know your System/Server CPU usage First, for Ubuntu users, you need to install the package. To do that, run the below command: sudo apt update --yes && sudo apt install sysstat --yes For Centos users, the package should come as by default. # for every 5 minutes(300 seconds) sar 300 Note...
  3. sohom

    [Free] Cloud Credits ($1500+) for 12+ months - Providers accepts Paypal/CC/Debit Card - ionos,linode,kamatera,oracle,ovh,etc.

    My advise to all is use them for genuine purpose, like instead of spending $XX/month for a VPS(or Small Dedicated Server) use these free trials
  4. sohom

    Learn a new Linux command every day :-)

    # Know your server network usage (Bandwidth) First, you need to know your network interface name. Execute the command below to get it ip a | grep -i BROADCAST Notice: There could be multiple network interfaces. You need to consider the one which has your Server IP along with For the sake of...
  5. sohom

    Learn a new Linux command every day :-)

    # Get resource(CPU, RAM) usage of a Process ID(PID): ps -up <PID> Note: In case you wonder what a "PID" could look like. So PID is a integer(numeric) number. And on Linux, every application runs with a unique PID. So, for example, if I need to know what the PID is for my database(MySQL)...
  6. sohom

    Learn a new Linux command every day :-)

    Another Command I found today to truncate a file content truncate -s 0 <file_name> Advantage of this command over the command I shared earlier is we can use the above command with sudo, e.g., sudo truncate -s 0 <file_name>
  7. sohom

    9 Cheap Webhosting with Multiple Datacenter for Small Projects

    Nice share @OP One can look into below thread for more: https://www.blackhatworld.com/seo/list-cheapest-dedicated-servers-ssd-sata-1-gbit-port-windows-linux-os.1105442/
  8. sohom

    [Info] Shared VPS v/s Dedicated VPS v/s Dedicated Server

    Dedicated Server (https://www.blackhatworld.com/seo/list-cheapest-dedicated-servers-ssd-sata-1-gbit-port-windows-linux-os.1105442/) You can still use Dedicated VPS/Cloud (like scaleway, ovhcloud) But be sure, your service is allowed by the Hosting provider. Contact them and discuss your service...
  9. sohom

    Learn a new Linux command every day :-)

    # empty a file content > test.txt Note: If file 'test.txt' has some content on it, the above command will erase/truncate it. But the file itself would not be deleted. Example:
  10. sohom

    [Free] Cloud Credits ($1500+) for 12+ months - Providers accepts Paypal/CC/Debit Card - ionos,linode,kamatera,oracle,ovh,etc.

    Just use a Paypal I am sure 99% here have a Paypal account Otherwise use a Physical Debit Card, most of the people have them And third option is Physical Credit Card. Other than 3rd world country most of the people generally use them
  11. sohom

    [Free] Cloud Credits ($1500+) for 12+ months - Providers accepts Paypal/CC/Debit Card - ionos,linode,kamatera,oracle,ovh,etc.

    IF YOU GUYS KNOW ANY OTHER CLOUD/SERVER PROVIDER WHICH OFFERS FREE CREDITS. THEN PLEASE DON'T HESITATE TO SHARE THE LINK OR NAME OF THE PROVIDER HERE. :D Thank you
  12. sohom

    [Free] Cloud Credits ($1500+) for 12+ months - Providers accepts Paypal/CC/Debit Card - ionos,linode,kamatera,oracle,ovh,etc.

    [Free] Cloud Credits ($1500+) for 12+ months - Providers accepts Paypal/Credit Card/Debit Card - Ionos, Linode, Kamatera, Oracle, Ovh, GoogleCloud, Azure, Vultr, DigitalOcean, Tencentcloud, Arubacloud Tips: If you don't want your cloud account to get banned, don't use more credits that the...
Back
Top