Workstation Setup: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
Additions to .bashrc: | Additions to .bashrc: | ||
<pre> | <pre> | ||
# Some applications read the EDITOR variable to determine your favourite text | |||
# editor. So edit the line below with the editor of your choice :-) | |||
export EDITOR=/usr/bin/vim | |||
#alias | #alias | ||
alias dir='ls -lAh --group-directories-first' | alias dir='ls -lAh --group-directories-first' | ||
Line 13: | Line 17: | ||
alias zypper='sudo zypper' | alias zypper='sudo zypper' | ||
alias wget='wget -c' | alias wget='wget -c' | ||
#Fancy colored prompt, that shows full working path | |||
PS1="[\e[1;34m\u\e[m@\e[0;35m\h\e[m]:\w \$ " | |||
</pre> | </pre> | ||
Line 21: | Line 28: | ||
== SSH Settings == | == SSH Settings == | ||
Edit <code>/etc/ssh/ssh_config</code> and add (or un-comment) the line: | |||
<code>StrictHostKeyChecking no</code> |
Revision as of 20:07, 6 February 2017
.bashrc
Additions to .bashrc:
# Some applications read the EDITOR variable to determine your favourite text # editor. So edit the line below with the editor of your choice :-) export EDITOR=/usr/bin/vim #alias alias dir='ls -lAh --group-directories-first' alias vi="vim" alias cls="clear" alias svi="sudo vim" alias ping='ping -c 3' alias mv='mv -iv' alias cp='cp -iv' alias rm='rm -Iv' alias zypper='sudo zypper' alias wget='wget -c' #Fancy colored prompt, that shows full working path PS1="[\e[1;34m\u\e[m@\e[0;35m\h\e[m]:\w \$ "
Icons
- Tux the penguin. Sized for an app launcher icon (48x48).
SSH Settings
Edit /etc/ssh/ssh_config
and add (or un-comment) the line:
StrictHostKeyChecking no