Friday, November 29, 2019
Helpful Midnight Commander escape key sequences when function keys are not working
Running Midnight Commander on a Linux machine remotely that does not have function key support or not easy to access like mobile phones can be challenging. Generally, Linux console supports escape sequences, for example to simulate F1, press ESC+1 (press escape key, then press 1). Below shows convenient list of escape sequences for Midnight Commander
Monday, November 25, 2019
Show apt package description from the command line
$: apt show ssh
This will show package description for ssh.
Sunday, November 24, 2019
Install EF Core 3.1 Preview 3 in Ubuntu
To install Entity Framework Core 3.1.x Preview 3, do:
Note that I am using local install of .Net Core 3.1 Preview 3 hence the need to export DOTNET_ROOT.
$: dotnet tool install --global dotnet-ef --version 3.1.0-preview3.19554.8 $: export DOTNET_ROOT=$HOME/.dotnet
Note that I am using local install of .Net Core 3.1 Preview 3 hence the need to export DOTNET_ROOT.
Install .Net Core 3.1 preview 3 in Ubuntu
$: cd ~/ $: mkdir tmp $: cd tmp $: wget https://dotnetwebsite.azurewebsites.net/download/dotnet-core/scripts/v1/dotnet-install.sh $: chmod +x dotnet-install.sh $: ./dotnet-install.sh -Version 3.1.100-preview3-014645 $: export PATH="$HOME/.dotnet:$PATH"
Install Chromium browser in Ubuntu
Chromium is the free and open source web browser developed by Google. To install it in Ubuntu do:
$: sudo apt install chromium-browser
Saturday, November 23, 2019
Free math applications
List of free math applications:
Maxima - computer algebra system (link)
GNU Octave is a high-level language, primarily intended for numerical computations (link)
Python + scipy + matplotlib + ipython + pylab - python based numerical package (link - various )
R - a language and environment for statistical computing and graphics (link)
Sage (link)
Scilab - is an open source, cross-platform numerical computational package and a high-level, numerically oriented programming language(link)
Maxima - computer algebra system (link)
GNU Octave is a high-level language, primarily intended for numerical computations (link)
Python + scipy + matplotlib + ipython + pylab - python based numerical package (link - various )
R - a language and environment for statistical computing and graphics (link)
Sage (link)
Scilab - is an open source, cross-platform numerical computational package and a high-level, numerically oriented programming language(link)
HowTo: Get Ubuntu version from the command line
Method 1
Method 2
Method 3
$: cat /etc/os-release | grep PRETTY_NAME
Method 2
$: cat /etc/issue
Method 3
$: lsb_release -d -s
Subscribe to:
Posts (Atom)
Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04
Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...

-
Tried to update my Ubuntu host today and it did pickup that new version of VirtualBox is available (4.1.8). All other packages installed pro...
-
Installing MonoDevelop in OpenSUSE 12.2 from its repository was very easy. When running it for the first time though I got the message: Th...
-
This is quick start guide how to run ssh server on QNX. Tested on QNX 6.5 (650SP1-VM.tar). # ssh-keygen -t dsa -b 1024 -f /etc/ssh/ssh...