-
Eine kurze Bemerkung zu Kubuntu 20.10 und KDE und Linux Mint 20 XFCE4 (u. a.)…
Okay, das ist jetzt keine wissenschaftliche Betrachtung, schon gar keine tiefgehende Analyse, aber eine Darstellung meiner Erfahrungen der letzten ein bis zwei Monate. Meine Hardwarebasis waren dabei ältere Lenovo- sowie HP-Notebooks, auf denen ich mehrere Distributionen ausprobiert habe. Konzentriert habe ich mich dann auf die Distros, die nicht schon beim Setup massive Probleme gemacht haben.…
-
Selbstgebastelte, effektive IDE in Atom für viele unabhängige Quellcode-Dateien
Dieser Artikel bezieht sich auf dieses Video: Hier die Quelltexte zu den beiden Programmen read und cc++, die Includes werden natürlich nicht alle benötigt, aber ich hatte noch keine Zeit, das auszusortieren: read #include <iostream> #include <fstream> #include <stdlib.h> #include <cmath> #include <string> #include <iomanip> #include <unistd.h> using namespace std; int main(){ int ret; string…
-
Kubuntu: How to access your phone via the commandline
When I connected my phone to my Kubuntu laptop using a USB cable I experienced an astonishing phenomenon: Opening up a Dolphin (file manager) window I could easily navigate to it, browse the whole directory contents, but when I tried to get there via commandline I had no chance at all! Same for Double Commander,…
-
Creating a developer cycle within Atom (edit, compile, run, check output)
The fabulous Atom editor lacks one feature out of the box, and that is a developer’s cycle for compiler languages (or similar applications). Compared to Visual Studio Code it’s exactly one thing missing: Build/compile and run in a console window which is part of the IDE! Okay, Atom is no IDE! At least not in…
-
How to animate a plot in RStudio
The first thing I came across was how to construct a hexagon in R. After I figured out how to define one and how to plot it, the next idea was to animate it. And this is the source code: # Hexagon —————————————————————- # Activate plot window prior to start # Aspect ratio can be…
-
Resizing and extending the disk of a Kubuntu VM in Oracle VirtualBox
First of all, shut off the pertinent VM. Choose File -> Virtual Media Manager… in Oracle VM VirtualBox Manager. Here you choose the correct disk for your machine and change the size appropriately. Then boot your Kubuntu VM. Since KDE Partition Manager is NOT able to resize the partition although the OS is aware of…
-
Installing R & RStudio on Kubuntu 20.10 Desktop using apt-get install r-base-dev
Step 1: Download the font from here: http://www.fontineed.com/font/Hu_Adobe_Garamond Extract the archive and install the font. This can be done most easily by double-clicking the font file. Step 2: Launch the commands apt-get update and apt-cache showpkg r-base: root@VM-KU2010D:/home/you# apt-get update Hit:1 http://de.archive.ubuntu.com/ubuntu groovy InRelease Get:2 http://de.archive.ubuntu.com/ubuntu groovy-updates InRelease [110 kB] Hit:3 http://security.ubuntu.com/ubuntu groovy-security InRelease Get:4…
-
RStudio & Rcmdr: Installation problems w/ tcltk2 on Kubuntu 20.10 Desktop
First, on Linux Mint 20 the installation of Rcmdr is no problem at all. But on Kubuntu, it is. When you try to install Rcmdr from within RStudio by install.packages(“Rcmdr”) you may run into the error msg: Error: package or namespace load failed for ‘tcltk’: .onLoad failed in loadNamespace() for ‘tcltk’, details: call: fun(libname, pkgname)…
-
The Ultimate Guide to Installing R and RStudio from Scratch
The following recipe is applicable to a machine (maybe a virtual one) running under Kubuntu 20.10 Desktop, but may be helpful for other Linux distros, too. In order to brush things up for Google: We are talking about ./configure, make, make install of R (r-project.org) and installing RStudio (rstudio.com) on a Linux computer. One advice…
-
How to install Oracle’s guest additions on a Kubuntu VM
I’m sure that you will encounter problems when you fire up your new Kubuntu 20.10 Desktop virtual machine under the impression things would work out fine with just giving the VM the ISO file with these additions. The install process will most likely fail. This is due to some missing parts which have to be…