Blog
- Home
- Blog
This article covers how to use SCP command in DigitalOcean to transfer files. In fact, The secure copy protocol also follows regular command-line and SSH functionality, helping to create a seamless command set for managing files between Linux machines.
This article covers an overview of Transit VPC Google cloud networks. In fact, transit connectivity is a solution where we can connect a network with multiple peered networks, it can act as a centralize transit hub through which we can route traffic to multiple VPCs together so it will save overall cost to set up multiple VPNs between networks.
This article covers how to install VirtualBox on a Digitalocean Droplet running Ubuntu.
To Launch the VirtualBox interface , run the following command:
$ virtualbox
This article covers how to set up Jenkins in Digitalocean using Centos 8. In fact, When automating tasks with Jenkins, users can optimize their workflow by quickly automating the jobs that servers cannot do themselves.
This article covers how to use Putty on the Digitalocean platform. In fact, DigitalOcean Droplets are Linux-based virtual machines (VMs) that run on top of virtualized hardware. Each Droplet you create is a new server you can use, either standalone or as part of a larger, cloud-based infrastructure.
Deleting a Droplet permanently and irreversibly destroys the Droplet and its contents, and its automated backups. Optionally, you can also destroy a Droplet and its associated snapshots, volumes, and volume snapshots.
This article covers how to install and use cron in the Digitalocean platform. In fact, you can now start scheduling jobs in the server.
Almost all Linux distributions comes with pre installed cron by default. In case if its not installed on your machine, you can install it using following command:
# apt-get install cron
Now check the status of cron service, it should be running in the background by default, you can start it with start command if its in stopped state:
# service cron start
# service cron status
Once your cron service is fine you can proceed forward and start using it. For more help about its usage you can check its man pages by executing below command:
# man crontab