sudo apt-get install docker.io
sudo usermod -a -G docker $USER
reboot
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://ubuntuhandbook.org/index.php/2018/08/no-wifi-adapter-found-hp-laptops-ubuntu-18-04/ |
- First create a Docker Image with the help Dockerfile below which installs the
kibana-own-home
plugin in Kibana. (Note: This image of kibana is free [kibana-oss]) - Then configure kibana.yml to use the configurations of the
own-home
plugin. - You must be having your elasticsearch instance running at port 9200.
(docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:6.4.0
)
FROM docker.elastic.co/kibana/kibana-oss:6.4.0
RUN bin/kibana-plugin install https://github.com/wtakase/kibana-own-home/releases/download/v6.4.0/own_home-6.4.0.zip
COPY kibana.yml ./config/kibana.yml
The NERDTree is a file system explorer for the Vim editor. Using this plugin, users can visually browse complex directory hierarchies, quickly open files for reading or editing, and perform basic file system operations.
- Go to :
https://github.com/scrooloose/nerdtree
- Clone the repo
git clone https://github.com/scrooloose/nerdtree.git
- Create a directory ,
mkdir ~/.vim
- Move the contents of the repo to the new directory created
mv /path/to/nerdtree-master/* ~/.vim/
- Now, open any file with vim and, first press
Esc
and then type ::NERDTree
and you are done! - To go out of NERDTree, press
Esc
and typeq
If you have a .deb file and you want to install it in your Ubuntu Machine, just run the commands:
After this, if you get any error like : Errors were encountered while processing: FILE
just do
The above command tries to fix this broken package by installing the missing dependency.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://askubuntu.com/questions/966473/how-do-i-install-ndiswrapper-support-for-an-unsupported-rtl8723de-wireless-modul/988778#988778 | |
URL to fix Wifi error in Ubuntu 16.04 | |
https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/Developers/GettingStarted/API%20requests/curl-requests.htm#Sending | |
Send CRUD requests via curl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<stdlib.h> | |
#include<malloc.h> | |
//Creating custom function for buffer clean | |
void clean_stdin(void) | |
{ | |
int c; | |
do{ |
NewerOlder