Tag: linux
-
The current operating system is not capable of running this task. That typically means the task was written for Windows only. For example, written for Windows Desktop PowerShell. – AzureFileCopy@4
Hi everyone, I am currently setting up an azure pipeline to deploy a ReactApp to a Blob storage container. I was a bit surprised when I hit the following error with an Ubuntu pool: I did a quick search in the task lists and couldn’t find anything specifically for Linux. A bit of Googling brought…
-
Setup MongoDB on an Azure VM
Hi everyone, I’m currently using a small linux vm to host a MongoDB instance on Azure. These are the steps I followed: ## MongoDB ### Install https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/ 1. Import the public key: `wget -qO – https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -` 2. Create a list file: `echo “deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.4 multiverse” |…
-
Setup PostgreSQL on an Azure VM
Hi everyone, I’m currently testing out a small linux vm with PostgreSQL on Azure. Just sharing the steps for future reference and hopefully it’ll be able to help you out as well. Good luck!
-
Update Wireless Info on Raspberry Pi
Hi everyone, Just a quick post on how to configure wireless info on a raspberry pi. To start with, open the config file: sudo nano /etc/wpa_supplicant/wpa_supplicant.conf You can then add any number of connections to the file with varying priorities: ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 country=AU network={ ssid=”Mobile Network” psk=”YOUR_PASSWORD” key_mgmt=WPA-PSK priority=2 } network={ ssid=”Home Network” psk=”YOUR_PASSWORD”…
-
Start a Script on Startup – Raspberry Pi
Hey guys, Just thought I’d leave a couple of links to some guides I came across for setting up boot scripts on a raspberry pi. Quick guide on how to get them running: http://www.instructables.com/id/Raspberry-Pi-Launch-Python-script-on-startup/ How to delay the boot process until the network is available: https://raspberrypi.stackexchange.com/a/45774