Differences between revisions 66 and 69 (spanning 3 versions)
Revision 66 as of 2021-07-12 06:32:59
Size: 4560
Editor: ThomasChung
Comment:
Revision 69 as of 2021-07-13 01:57:04
Size: 4692
Editor: ThomasChung
Comment: found a great page - who's using Debian
Deletions are marked like this. Additions are marked like this.
Line 40: Line 40:
== Debian Articles I found == == Why Debian ==
 * [[https://www.debian.org/users/|Who's using Debian?]]
Line 62: Line 63:
# apt update && apt install vim # apt update && apt install sudo vim
Line 65: Line 66:
}}}

== Disable vim automatic visual mode ==
{{{
# vi ~/.vimrc
set mouse-=a

Contact

  • Email: <debian@tchung.org>

  • Location: Southern California

Debian information

Debian Wiki Pages I created

Why Debian

Interesting Open Source Article from NASA

Contributions to Open Source Community

first things to do

# apt update && apt install sudo vim
# update-alternatives --config editor
# adduser tchung sudo

Disable vim automatic visual mode

# vi ~/.vimrc
set mouse-=a

favorite aliases

# vi .bashrc
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -l'
alias ls='ls --color=auto'
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'

secure uri for buster

# vi /etc/apt/sources.list
## secure uri for buster
deb https://deb.debian.org/debian/              buster main
deb https://deb.debian.org/debian/              buster-updates main
deb https://deb.debian.org/debian-security/     buster/updates main

neofetch for buster

$ neofetch --disable model --ascii_colors 1 1 1 1 1 1

debian-neofetch.png


CategoryHomepage