środa, 20 stycznia 2016

how-to-sync-terminal-session-command-history-in-bash

unix.stackexchange.com/questions/131504/how-to-sync-terminal-session-command-history-in-bash

Here is my attempt at Bash session history sharing. This will enable history sharing between bash sessions in a way that the history counter does not get mixed up and history expansion like !number will work (with some constraints).

poniedziałek, 19 października 2015

How To Find The Process ID Of A Program And Kill It

http://itsfoss.com/how-to-find-the-process-id-of-a-program-and-kill-it-quick-tip/

It often happens that you need to kill an unresponsive program. In Windows you have task manager for this situation. In Linux one can use the terminal to kill a running or unresponsive program. Using the terminal is better than using any GUI based tool as GUI tools may not show the still running hidden process.

poniedziałek, 11 maja 2015

HOWTO: Set Calendar First Day of Week

HOWTO: Set LXDE /and other/ First Day of Week

Here is how to change the gnome calendar first day of the week to Monday.

Check which locale you are using (mine is en_US, don't worry about the .UTF ending):
Code:
locale
Next, backup and edit the applicable locale file (use the result of the previous command if not en_US).
Code:
sudo cp /usr/share/i18n/locales/en_US /usr/share/i18n/locales/en_US.bak
sudo leafpad /usr/share/i18n/locales/en_US
Locate the following line and change the value. The value for Monday in en_US was 2. Select the appropriate number if you desire another day to be the start day.
Code:
first_weekday 2
and 

first_workday 3
Save the file and then:

Update the locales:
Code:
sudo locale-gen
 
 
AND
 
lxpanelctl restart

and OK

http://ubuntuforums.org/showthread.php?t=813945 - change for LXDE /orginal for Ubuntu/
 

How to enable touchpad click lxde

Please try these steps: