Differences between revisions 59 and 61 (spanning 2 versions)
Revision 59 as of 2021-07-09 15:40:54
Size: 3992
Editor: ThomasChung
Comment: open source usage at NASA
Revision 61 as of 2021-07-09 18:03:07
Size: 4334
Editor: ThomasChung
Comment: toc
Deletions are marked like this. Additions are marked like this.
Line 17: Line 17:

<<TableOfContents()>>
Line 56: Line 58:
== First Things to Do ==
== first things to do ==
Line 64: Line 65:
== Favorite Alias ==
  
== favorite aliases ==
Line 80: Line 80:
== 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 ==

Contact

  • Email: <debian@tchung.org>

  • Location: Southern California

Debian information

Debian Wiki Pages I created

Debian Articles I found

Interesting Open Source Article from NASA

Contributions to Open Source Community

first things to do

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

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