I think it, i tinker it, i make it
—-
Recent updates:
I think it, i tinker it, i make it
—-
Recent updates:
Some applications that i have installed, with the respective package to install
For install from terminal (CLI): use the command
$ sudo apt-get install packet_name
LETTER
program/application name (explanation) | packet_name | info url |
---|
Emacs (text editor) | emacs | Wikipedia |
gThumb (gThumb is a free and open-source image viewer and organizer, useful for printing photos) | gthumb | Wikipedia |
nmap (security / ip port network scanner) | nmap | Wikipedia |
but is also possible install the programs via the Ubuntu Software Center by clicking the icon on the launcher
source: http://www.techsupportalert.com/content/tips-and-tricks-ubuntu-after-installation-ubuntu-1404.htm
To enable X forwarding as default when connected via SSH on other host, in the file
/etc/ssh/ssh_config
made this modifications
ForwardAgent yes ForwardX11 yes ForwardX11Trusted yes
Emacs display squares instead of characters when remoted connected (Emacs launched via X). Create the file file ~/.Xdefaults containing
emacs*font: 7x14
and execute
xrdb -merge ~/.Xdefaults
this is at once setup, for make it permanent, create a file called i.e. emacs-setup.sh with this content:
xrdb -merge ~/.Xdefaults
and save it in the directory
/etc/profile.d
Source for some info: http://ubuntuforums.org/showthread.php?t=1896584