Skip to content

dtorresxp/Ubuntudev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UbuntuDev

Ubuntu Realated Dev tips and tricks

  1. MySQL db remote connection establish with python example

  2. Postgres Upgrade 9.x to 10.x or latest

  3. Postgresql Tutorial

  4. Postgresql Replication Tutorial

  5. How To Set Up SSH Keys on Ubuntu

  6. To view cron logs in ubuntu:

grep CRON /var/log/syslog

  1. Kill all greb result in linux:

    • To kill all odoo services : sudo ps -ax |grep odoo| awk '{print $1}'|xargs kill -9 $1
    • To Kill paricular Port : sudo fuser -k 7073/tcp
  2. Dropbox upload script:

    wget https://raw.githubusercontent.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh && chmod +x dropbox_uploader.sh

  3. External Application links not working(Blank chrome page opening)

  4. Install Redash reporting tool(Open source)

  5. Pivot Views JS - Library

  6. Testing System performance Linux (Calculating 10000 Pi value)

    time echo "scale = 10000; 4 * a (1)" | bc -l

  7. Set a Static IP on Ubuntu Server

  8. Delete all pyc files in current directory in terminal

find . -name '*.pyc' -delete

  1. Github or any VCS, for private repository pull and push every time asking username and password
  2. Postgresql Config File in MAC OS
  3. Restart postgreSQL in mac(without install brew):
  1. Create Virtual environment in python
  2. ProcessManager for individual scripts(node, py, sh or etc ...)
  3. GIT Cheatsheet pages
  4. GIT cherry pick commits
  5. MacOS Shell change to bash
  • cat /etc/shells
  • chsh -s /bin/bash
  1. SQL based system query from facebook - Osquery
  2. How to create a node-js module ?
  3. How to display data from the degitalocean api with django
  4. How to build a morden web application to manage with django and react on ubuntu -production deploy
  5. Github config commands:
  • Change Email : git config --global user.email "[email protected]"
  • Change Name : git config user.name "Hariprasath"
  • Dontconsider fiele permision changes : git config core.fileMode false
  1. Http toolkit for testing requests : https://httptoolkit.tech/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors