Differences between revisions 76 and 79 (spanning 3 versions)
Revision 76 as of 2021-07-14 15:41:10
Size: 5171
Editor: ThomasChung
Comment:
Revision 79 as of 2021-07-15 00:26:52
Size: 5857
Editor: ThomasChung
Comment: new howto (pending)
Deletions are marked like this. Additions are marked like this.
Line 37: Line 37:
 * [[https://cloud.debian.org/images/cloud/|Debian Cloud Images]]
Line 49: Line 50:
 * [[ThomasChung/CloudImage|How to import Cloud Image to Virtual Machines on Debian 10]] (pending)
Line 60: Line 62:
 * [[https://spectrum.ieee.org/automaton/aerospace/robotic-exploration/nasa-designed-perseverance-helicopter-rover-fly-autonomously-mars|How NASA Designed a Helicopter That Could Fly Autonomously on Mars]] Feb 17, 2021

{{{#!wiki note
'''Linux on Mars!'''

This the first time we’ll be flying Linux on Mars. We’re actually running on a Linux operating system. The software framework that we’re using is one that we developed at JPL for cubesats and instruments, and we open-sourced it a few years ago.
}}}

Contact

  • Email: <debian@tchung.org>

  • Location: Southern California

Debian information

Full Freeze

We only intend to start the Full Freeze shortly before the actual release. The starting date of the Full Freeze will be decided when we start planning a release date and will be announced at least 14 days before it comes into effect.

Debian Howto

Why Debian

Interesting Open Source Article from NASA

Linux on Mars!

This the first time we’ll be flying Linux on Mars. We’re actually running on a Linux operating system. The software framework that we’re using is one that we developed at JPL for cubesats and instruments, and we open-sourced it a few years ago.

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