Patrick Denis > Articles by: admin
Author Archive: admin
admin
July 21, 2020
Commands : mkdir directory git init will create the master branch git status git branch git add file1,file2,etc…. git rm file1,file2,etc…. git rebase “branch” git merge “branch” git commit -m “comments” tree . git diff git log git reset…
Read more
admin
July 21, 2020
Basic commands to understand the open command f = open(“text.ext”) <— default mode is read “r” f.read() f.readline() f.readlines() Once read, if you need to go back to the beginning of the file : f.seek(X) output = f.”read.option”() print(output) =…
Read more
admin
April 20, 2020
Sometime while navigate to the tree of directories its become annoying since the path take half of the screen 🙂 From the command line : ln -s /path/of/the/folder/ /new_location/
admin
April 18, 2020
Operators : = += *= != < > <= >= == %= **= //= IN NOT IN AND OR XOR NOT Numbers : Integer : Number without any decimal Float : Number with decimal Complex : Number with a letter…
Read more
admin
April 14, 2020
Netshot is a powerfull and simple free software for network engineer, it is use to backup/push/compare/etc… configuration of multiple vendors. Github : https://github.com/netfishers-onl/Netshot/wiki/Installing-Netshot-on-Ubuntu-16-or-later-(or-any-Debian-based-distribution) Netshot : http://www.netfishers.onl/netshot Installation : I use Ubuntu Server 18.04, and Java 8 . To install Java 8 since…
Read more
admin
April 3, 2020
This will cover the basic commands by comparing them with Cisco since I will use Cisco as a reference. This is going to be messy at 1st but then i will clean up this section. Commands : Access enable : …
Read more
admin
March 24, 2020
Found this project by pure luck and it is pretty cool ! Enjoy ! https://sysadmin.it-landscape.info/
admin
September 21, 2019
Step 1 ( Ubuntu ) Installation : apt-get update apt-get install software-properties-common apt-add-repository ppa:ansible/ansible apt-get install ansible Verify : ansible –version Terminology : Control Node ( enable devices with Ansible install on ) Management Node ( Hosts being manage by…
Read more
admin
August 8, 2019
Will go over the basic of Wireless Networks. Wavelength, is the distance what a wave have to travel one a full 360 degree phase or cycle. Decibel : dB is a function that use an algorithms to compare the absolute…
Read more
admin
August 7, 2019
Reminder for VPLS or L2VPN over MPLS, Configure MPLS ( but should be already done through your service provider ) Configure the interface with the right instance ethernet and don’t forget the encapsulation and bridge domain. Create an BDI interface…
Read more