DevOps is a set of practices that combines software development and IT operations to deliver software faster and better. It aims to shorten the software development lifecycle and provide continuous delivery with high quality and reliability. DevOps is not only about tools and processes, but also about culture and collaboration …
DevOps and Agile are both software development methodologies that aim to deliver software faster and better. However, they have some key differences in their purpose, scope, and practices. Here is a summary of the main differences between DevOps and Agile, based on the web search results: Purpose: DevOps focuses on …
Using bing chat I'm starting to keep track of DevOps trends. Or at least what it thinks are the trends. End-to-end lifecycle management to streamline DevOps workflows This involves using tools and practices that enable continuous integration, continuous delivery, continuous testing, continuous monitoring, and continuous feedback across the entire software …
I was executing a vagrant up on my machine. It was giving an nfs error. mount -o 'vers=3,udp' 192.168.10.1:'/opt/<snip>/mozilla/kuma' /home/vagrant/src Stdout from the command: Stderr from the command: stdin: is not a tty mount.nfs: requested NFS …
How to watch nbc extra live on linux is simple. It just requires adding a flash plugin. apt-get install adobe-flash This can also be installed via the software manager. Just search for "flash".
Among the editors and IDEs that I use the old stand by vim is always there. It's literally the first thing I install on a server. One of the great features of vim is the vast plugin library. This becomes even better when someone wraps a lot of the extremely …
In order to use rsync with a ssh key I used the -e flag on the rsync command. It will allow rsync over ssh local to a remote server. [ps] [\$ \~] rsync -avz -e "ssh -i .ssh/id_key.pem" /opt/stuff/here/ [email protected]:/opt/stuff/here/ [/ps …
Simple no persistant storage. Starting up, setting up, etc are all great, but without persistance storage I'm forced to use S3 or the like. If I'm doing a very simple app or a WordPress install it's not worth the effort. Does AppFog have a persistent file system? Not yet. We're …
In an audit of my system I needed to find all the files owned by apache. [ps] find ./ -name apache [/ps] Simple! Here's the group and user example: [ps] find ./ -group apache -name apache [/ps]
After working within a screen session on a CentOS server I had forgotten how to close the screen session that I was done with. It's a rather simple command. exit Perfect, exit means exit. Of note if you just want to disconnect use. ctrl+a (press) d That'll disconnect you …