Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 933 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 933 Bytes

LinuxDaily

Basic commands that I use (or used) to solve a situation or as initial config for a new instance that I gonna work.

Proxy

At work we got a proxy running, to help manage the user/password I use CNTLM. This way everytime that I change my password I only need to change in one place.

For my setup CNTLM runs on port 53128.

Configuration can be found in Proxy

Personal Configuration

Some changes that I've done, like Alias and VIM Configuration

See Personal Conf

Scripts

  1. gitc, allows the user to change Name and email for git commit.
 cp gitc /usr/local/bin/gitc

Basic commands reminder

  1. Delete .DS_Store file
find . -name '.DS_Store' -type f -delete
  1. Delete __MACOSX folder
find . -name __MACOSX -exec rm -rf {} \;
  1. List all available packages Yum
yum --showduplicates list PACKAGENAME