Writing a Java program is quite straight forward in Linux systems, no matter what linux distro (Linux Mint / Ubuntu / Debian / Arch Linux) you have, the steps will same except for step 1 which is installation, it may…
Category: terminal
Ipython, an alternative Interactive Python interpreter [tutorial]
Ipython is an interactive python shell which can be used as a replacement for your default python interpreter. Install Ipython pip install Ipython Launch Ipython Just enter ipython in your terminal aman@vostro:~$ ipythonPython 3.5.2 (default, Nov 23 2017, 16:37:01) Type…
Some Useful Tmux Shortcuts and Cheatsheet
Tmux is a terminal multiplexer. it’s can be used to create several window panes. Create sessions and much more.Tmux is particularly very useful on remote terminals, I like to use Vim as a text-editor with Tmux. Open Tmux tmux Sessions…
Monitor Network traffic & Live up/down speed in linux terminal with vnstat
Vnstat is an Open Source, command-line based network traffic monitoring tool for Linux and BSD. It keeps track of network traffic for different network interfaces. It always runs in the background to do so. It can also show current/live Internet …
How to change tty virtual console font (Alt+Ctrl+F1) in ubuntu linux
TTY consoles(virtual consoles) are accessed by Ctrl+Alt+F1 or Ctrl+Alt+F2 1. Type the following command in your regular terminal(gnome-terminal..etc) or the TTY console itself, to launch configuration menu for tty. sudo dpkg-reconfigure console-setup 2. By default UTF-8 is selected, let it…
Writing a C/C++ program on ubuntu terminal
Here is a simple 5 step instruction to compile and execute C/C++ program on the linux terminal. I have also included a sample C/C++ example to demonstrate.In order to write the program in the terminal itself, we need a console (terminal) based…