$: sudo dmidecode -t system | grep Serial
Tags: Dell BIOS Service Tag
$: sudo dmidecode -t system | grep Serial
c:\> netdom query dc
This is my first time to install Pop!_OS (20.10) on VirtualBox (6.1.16). I tried to install 3 times but I can't find an option to install it without disk encryption. What was also confusing was that I am not seeing any option to go Back or Next or Confirm the options, see below.
![]() | ||
Figure 1. First Screen |
![]() |
Figure 2. Encryption page - no option for no encryption |
Given the size of the window I was suspecting that there must be areas not shown on the screen. So, I killed (xkill) the installation then changed display settings to 1024x768 and behold - now I can see the install buttons!
![]() |
Figure 3. Change display settings to 1024x768 |
After changing screen resolution, buttons are now visible during installation.
On Ubuntu 20.10 with MonoDevelop 7.8.4 build (2), running a console application generates the following error message:
ApplicationName='/usr/lib/gnome-terminal/gnome-terminal-server', CommandLine='--app-id mono.develop.id5647740ca7f5455da9c27ab2c320a029', CurrentDirectory='', Native error= Cannot find the specified file
To fix this do:
$: sudo mkdir /usr/lib/gnome-terminal $: cd /usr/lib/gnome-terminal $: sudo ln -s /usr/libexec/gnome-terminal-server
To install MonoDevelop on Ubuntu 20.04/20.10, do:
$: sudo apt install apt-transport-https dirmngr $: sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF $: echo "deb https://download.mono-project.com/repo/ubuntu vs-bionic main" | sudo tee /etc/apt/sources.list.d/mono-official-vs.list $: sudo apt update $: sudo apt-get install monodevelop $: echo "deb https://download.mono-project.com/repo/ubuntu vs-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-vs.list $: sudo apt update $: sudo apt upgrade
To get the version of SQL Server, run the following:
c:\> osql /E /S .\INSTANCE_NAME -Q "select @@version"
Log ping output with a timestamp to a file. This will create a new log file every hour.
Reference:
https://stackoverflow.com/questions/24906268/ping-with-timestamp/40591307#40591307
c:\> relog logfile.blg -f csv -o logfile.csv
References:
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 ...