Posts Tagged ‘sleep’
Thursday, November 8th, 2018
I have to use Windows 10 Enterprise on a notebook for Work purposes once again and use a Docking station connected to an external Display Monitor at the Company Office work location one of the first things to configure is to disable LID Display Sleep on laptop close because otherwise the notebook has to be left opened almost half opened in order to work with the PC to change that unwanted behavior there is an easy way via Windows Control Panel configuration, here is how:
Open
Windows Control Panel
navigate to:
Power Options
choose:
Change advanced power settings, scroll down a bit to:
Power Buttons and lid (menu)
press over it from sub-menu
Plugged in
Select
Do nothing
That's all from now on closing the notebook when plugged in to the Dock station or to a direct External Monitor will no longer do the sleep.
As you can see from the menus, there is a lot of triggering rules to configure further from Power Management (Advanced Settings) on how applications / USBs / Multimedia and Hard Disks should behave under different power conditions so if you have the time I recommend you go through them and check them for yourself.
Tags: control panel, laptop, not-sleep windows, sleep, Windows
Posted in Various, Windows | 2 Comments »
Tuesday, August 7th, 2018
You know on most operating systems such as Windows 8 / 10 , Mac OS X as well as GNU / Linux / BSDs (FreeBSD) etc. with graphical environments such as GNOME / KDE etc. , there is this default functionality nowadays that is helping to reduce eye strain and improve night sleep by modifying the light and brightness as well as coloring eminated by the monitor.
On Windows this technology is called Night Light and is easily enabled by nagivating through menus:
Start > Settings > System > Display > Night light > Night light settings.

Windows 10 Night Time settings shot
On GNU / Linux and BSD-es the eye strain application that comes preinstalled by default on most distributions is redshift – for more what is redshift check out my previous article get more peaceful night sleep on Ubuntu, Mint and Xubuntu Linux.
There is also the alternative to use F.lux (which by the way is used to prevent eye strain on Mac OS X and was the program of choice to prevent eye strain in older Windows versions)
Even though Night Light / and redshift monitor color warmth change is often mostly useful and have a positive impact improving sleep as well removes eye strain on Linux my experience with it is not too positive as it changes the monitor color gamma and makes it often quite reddish and annoying even through a normal day and not only night time.
This makes the work experience on the computer not pleasurable thus just removing it for me and I guess for many would be a must.
Assuming that you have installed Free software OS such as Linux with redshift (note that on on older releases of Deb and RPM package based distributions: you will have to manually install it with something like:)
On Debian based distros with:
root@debian:~# apt-get install –yes redshift redshift-gtk
On RPM Fedora / Cent OS, Redhat Enterprise Linux etc. with a command like:
[root@fedora]# yum install –yes redshift redshift-gtk
Redshift settings on Linux with KDE GUI
So in order to remove redshift it completely from Linux which usually on most GNU / Linux distros is running as a default process
1. * Make sure you kill all processes called redshift and redshift-gtk
to do so check processes with same name and KILL 'EM ALL!:
root@linux:~# ps aux|grep -i redshift
hipo 44058 2.8 0.5 620980 42340 pts/2 Sl+ 20:33 0:00 /usr/bin/python3 /usr/bin/redshift-gtk
hipo 44059 0.1 0.0 295712 6476 pts/2 Sl+ 20:33 0:00 /usr/bin/redshift -v
root@linux:~# kill -9 44058 44059
2. * Set the color temperature of the Monitor / Screen back to 6500K (this can be done either by the button menu that most screens have)
or manually with redshift itself by executing command:
root@linux:~# redshift -O 6500
As the screen is back to normal color gamma, its now time to completely remove redshift in order to prevent it to mess up with your monitor colors, on next PC boot or on Gnome / Mate whatever UI used session logout.
To do so issue commands:
root@linux:~# dpkg –purge redshift redshift-gtk
(Reading database … 516053 files and directories currently installed.)
Removing redshift-gtk (1.11-1) …
Purging configuration files for redshift-gtk (1.11-1) …
Removing redshift (1.11-1) …
Processing triggers for man-db (2.8.3-2) …
Processing triggers for hicolor-icon-theme (0.17-2) …
Processing triggers for mime-support (3.61) …
Processing triggers for gnome-menus (3.13.3-11) …
Processing triggers for desktop-file-utils (0.23-3) …
Processing triggers for menu (2.1.47+b1) …
3. Enjoy normal colors on your monitor Goodbye Forever REDSHIFT, goodbuy dark crappy Screen during the day. Hello normal Screen light !!! 🙂
Tags: Enjoy, eye strain, How to, Monitor Screen, processing, protection, redshift, root linux, sleep, Windows
Posted in Linux, Linux and FreeBSD Desktop | No Comments »
Wednesday, March 11th, 2015
Getting load avarage is easy with uptime command, however since nowadays Linux servers are running on multiple CPU machines and Dual cores, returned load avarage shows only information concerning a single processor. Of course seeing overall CPU server load is possible with TOP / TLoad command / HTOP and a bunch of other monitoring commands, but how you can get a CPU percentage server load using just /proc/stat and bash scripting? Here is hwo:
:;sleep=1;CPU=(`cat /proc/stat | head -n 1`);PREV_TOTAL=0;for VALUE in "${CPU[@]}”; do let “PREV_TOTAL=$PREV_TOTAL+$VALUE”;done;PREV_IDLE=${CPU[4]};sleep $sleep; CPU=(`cat /proc/stat | head -n 1`);unset CPU[0];IDLE=${CPU[4]};TOTAL=0; for VALUE in “${CPU[@]}"; do let "TOTAL=$TOTAL+$VALUE"; done;echo $(echo "scale=2; ((($sleep*1000)*(($TOTAL-$PREV_TOTAL)-($IDLE-$PREV_IDLE))/($TOTAL-$PREV_TOTAL))/10)" | bc -l );
52.45
As you can see command output shows CPU is loaded on 52.45%, so this server will soon have to be replaced with better hardware, because it gets CPU loaded over 50%
It is useful to use above bash shell command one liner together with little for loop to refresh output every few seconds and see how the CPU is loaded in percentage over time.
for i in $(seq 0 10); do :;sleep=1;CPU=(`cat /proc/stat | head -n 1`);PREV_TOTAL=0;for VALUE in "${CPU[@]}”; do let “PREV_TOTAL=$PREV_TOTAL+$VALUE”;done;PREV_IDLE=${CPU[4]};sleep $sleep; CPU=(`cat /proc/stat | head -n 1`);unset CPU[0];IDLE=${CPU[4]};TOTAL=0; for VALUE in “${CPU[@]}"; do let "TOTAL=$TOTAL+$VALUE"; done;echo $(echo "scale=2; ((($sleep*1000)*(($TOTAL-$PREV_TOTAL)-($IDLE-$PREV_IDLE))/($TOTAL-$PREV_TOTAL))/10)" | bc -l ); done
47.50
13.86
27.36
82.67
77.18
To monitor "forever" output from all server processor overall load use:
while [ 1 ]; do :;sleep=1;CPU=(`cat /proc/stat | head -n 1`);PREV_TOTAL=0;for VALUE in “${CPU[@]}”; do let “PREV_TOTAL=$PREV_TOTAL+$VALUE”;done;PREV_IDLE=${CPU[4]};sleep $sleep; CPU=(`cat /proc/stat | head -n 1`);unset CPU[0];IDLE=${CPU[4]};TOTAL=0; for VALUE in “${CPU[@]}"; do let "TOTAL=$TOTAL+$VALUE"; done;echo $(echo "scale=2; ((($sleep*1000)*(($TOTAL-$PREV_TOTAL)-($IDLE-$PREV_IDLE))/($TOTAL-$PREV_TOTAL))/10)" | bc -l ); done
…
Tags:
avarage,
bash shell,
course,
CPU,
echo echo,
htop,
processor,
scale,
sleep,
stat,
value Tags: avarage, bash shell, course, CPU, echo echo, htop, processor, scale, sleep, stat, value
Posted in Linux, Programming, System Administration, Various | No Comments »
Friday, May 23rd, 2014 
If you happen to have the rare case of having a hung MAC OS X application and you're coming from a Linux / Windows background you will be certainly wonderhing how to kill Mac OS X hung application.
In Mac OS the 3 golden buttons to kill crashed application are:
COMMAND + OPTION + ESCAPE
Command + Option + Escape
while pressed simultaneously is the Mac Computer equivalent of Windows CTRL + ALT + DEL
Holding together COMMAND + OPTION + ESCAPE on MAC OS brings up the Force Quit Window showing and letting you choose between the list of open applications. To close freezed MAC application, choose it and Press the Force Quit Button this will kill immediately that application.
To directly end application without invoking the choose Force Quit Window menu, to force a hanging app quit right click on its icon in Dock (CTRL + Click) and choose "Force Quit” from context menu.
A little bit more on why applications hung in MAC OS. Each application in MAC OS has its event queue. Event queue is created on initial application launch, event queue is buffer that accepts input from system (could be user input from kbd or mouse, messages passed from other programs etc.). Program is hanging when system detects queued events are not being used.

Other reasons for Mac OS hanging program is whether you're attaching detaching new hardware peripherals (i.e. problems caused by improper mount / unmounts), same hang issues are often observed on BSD and Linux. Sometimes just re-connecting (mouse, external hdd etc.) resolves it.
Program hungs due to buggy software are much rarer in Macs just like in IPhones and Ipads due to fact mac applications are very well tested until published in appstore.
Issues with program hungs in Mac sometimes happen after "sleep mode" during "system wake" function – closing, opening macbook. If a crashed program is of critical importance and you don't want to "Force Quit" with COMMAND + OPTION + ESC. Try send PC to sleep mode for a minute or 2 by pressing together OPTION + COMMAND + EJECT.
An alternative approach to solve hanging app issue is to Force-quit Finder and Dock to try that, launch Terminal
And type there:
# killall Dock
Other useful to know Mac OS keyboard combination is COMMAND + OPTION + POWER – Hold together Command and Option and after a while press Power – This is a shortcut to instruct your Mac PC to reboot.
Tags:
application,
BSD,
case,
close,
event,
external hdd,
Force Quit,
Force Quit Window,
kill,
Linux,
linux windows,
MAC,
Mac Computer,
new hardware,
Press,
program,
queue,
rare case,
Restart,
sleep,
system Tags: application, BSD, case, close, event, external hdd, Force Quit, Force Quit Window, kill, Linux, linux windows, MAC, Mac Computer, new hardware, Press, program, queue, rare case, Restart, sleep, system
Posted in Curious Facts, Everyday Life, Mac OS X, System Administration, Various | 1 Comment »
Monday, March 11th, 2013 
If you want to have more peaceful night sleep when working on Ubuntu or other Debian based Linux distro, be sure to have gtk-redshift installed.
It is a little program that simply changes the color gamma of screen and makes your screen look more reddish at night. According to many scientific research done on how we humans react, whether using computer late at night. It is concluded that less bright colors and especially reddish color gamma relaxes our eye strain and thus makes it easier for us to get a sleep quickly once in bed. gtk-redshift is available in latest Ubuntu 12.04 as well as on other Ubuntu derivatives (Xubuntu, Mint Linux) etc.
Easiest way to install it is via respective GUI Package Manager or via good old Synaptic (GUI aptitude frontend).
I personally prefer to always install Synaptic on new Desktop Linux PCs, use it as package GUI frontend, for the simple reason it offers one very similar "unified" package Installer outlook across different Linux distros.
The quickest way to use GUI version of Redshift is to install with apt:
root@xubuntu:~# apt-get install --yes gtk-redshift
....
To further use it it needs one time to be run with color gamma paraments, launch it first time via terminal with:
user@xubuntu:~$ gtk-redshift -l 52.5:13.4
It is a good idea to make a tiny shell script wrapper with good settings for gtk-redshift and later use this shell wrapper as launcher :
root@xubuntu:~# echo '#!/bin/sh' >> /usr/local/bin/gtk-redshift
root@xubuntu:~# echo 'gtk-redshift' >> /usr/local/bin/gtk-redshift
root@xubuntu:~# chmod +x /usr/local/bin/gtk-redshift
From then on, to launch it you can directly open it via terminal
user@xubuntu:~$ /usr/local/bin/gtk-redshift
To make the program permanently work, make it run via respective GUI environment startup . In GNOME add it start-up from:
user@xubuntu:~$ gnome-session-manager
Important note to make about gtk-redshift is that on some older monitor screens, very early in morning the screen becomes too red, making screen look like displaying on very old long time used CRT monitors. For people working in fields like; Web Design, Architecture, or any drawing twisted colors effect will be annoying and will probably interfere with your perception of colors. However for programmers, system administrators and people who use computer mainly for typing and reading gtk-redshift is huge blessing.
Enjoy ! 🙂
Tags:
aptitude,
bright colors,
derivatives,
eye strain,
gamma,
Gnome,
linux distributions,
mint,
peaceful night,
reddish color,
redshift,
sleep,
Ubuntu,
using computer,
Xubuntu Tags: aptitude, bright colors, derivatives, eye strain, gamma, Gnome, linux distributions, mint, peaceful night, reddish color, redshift, sleep, Ubuntu, using computer, Xubuntu
Posted in Everyday Life, Linux and FreeBSD Desktop, Linux Audio & Video, Various | 1 Comment »
Monday, February 25th, 2013 
Recently I blogged about how to reduce night sleep problems and diminish insomnia on Linux with little command line tool – redshift. Now I'm in a friend who is a Mac user and since he had lately problems with sleeping. I remembered about redshift and one other tool which I read about called F.lex. We give it a try and installed it on his Mac OS X Lion – ver (10.7.5). Installation is like other standard Mac OS X applications, download f.lux version for Mac OS then click .DMG binary and you're asked if you want to install the program in Mac active Applications. That's all the program is installed and you don't even need to configure it as the program automatically determines Time Zone / Geographic Location configured for OS X. Once installed you will notice the F.lux switching screen gamma icon on left of Mac panel:

In F.lux configuration, by using Search button the program can automatically determine Geographic Location, however if you it fails to determine proper location and improperly sets the screen color gamma, you can manually set location coordinates. F.lux tunes screen color gamma accordingly to day or night and time in day. If it is night it makes the screen reddish, so eyes our eyes relax strain (stress) and our organism prepares to get to bed so once you're in bed it is easier for your brain to get asleep.

Now here it is 23:37 at Night and F.lux smartly changed the color gamma accordingly to night mode (reddish) gamma. I've noticed on F.lux's website there is version for iPhone and iPad
Tags:
command line tool,
geographic location,
insomnia,
late at night,
Linux,
lion,
mac os x,
mac panel,
os x,
proper location,
screen gamma,
search button,
sleep,
sleep problems Tags: command line tool, geographic location, insomnia, late at night, Linux, lion, mac os x, mac panel, os x, proper location, screen gamma, search button, sleep, sleep problems
Posted in Everyday Life, Mac OS X, System Administration, Various | No Comments »
Friday, February 15th, 2013 
For a while I've been experiencing troubles with getting asleep. As I work in the field of IT already for 10 years and with time it seems the problem is accelerating. I've read on the internet a lot on the topic of getting asleep and how this relates to computers and computer equipment use and came to the conclusion one of the main reasons I have troubles getting asleep is I use computer late at night usually I use PC until 2, 3 o'clock. Then when I go to bed, I cannot fall asleep until its early in the morning usually 6, 7 in the morning. My main operating system on notebook is Linux so almost all of the time I use Linux. I've noticed when I occasionally use Windows, my eyes tend to be less strained afterwards and I sleep better. Thus I suspected there should be some kind of tool in Linux which changes how PC screen displays to make eyes more relaxed. I didn't have the time to research seriously and before some time the little research I've done on this led me to nothing. Just a week ago, I've read one of the articles in Linux Magazine (December) issue, there is a very thorough article in it on how to avoid headaches and eye strain using a tiny tool which changes monitor screen gamma called redshift. In this article will explain in short how to install and use redshift to make your PC work less stressful and improve your sleeping at night. I'm using Debian as a basis Linux distro and thre redshift is available via package, other deb derivatives Ubuntu, Xubuntu etc. aslo have it. For Fedora and most of other Linux distributions redshift is also available from default repositories. For those who use Slackware or some older Linux distributions, redshift has to be installed manually from source but this should be trivial.
1. Install Redshift and Redshift-gtk packages
To install on Debian and Ubuntu:
# apt-get –yes install redshift redshift-gtk
On Fedora install with yum:
# yum -y install redshift
After installed you will have two programs to tune the screen color temperature, one is console based ( redshift ) and the other one is GUI based ( gtk-redshift ).
redshift-gtk is a GUI frontend
Here is a list of redshift tool options:
2. Changing color gamma with redshift
hipo@noah:~$ redshift -h
Usage: redshift -l LAT:LON -t DAY:NIGHT [OPTIONS...]
Set color temperature of display according to time of day.
-h Display this help message
-v Verbose output
-g R:G:B Additional gamma correction to apply
-l LAT:LON Your current location
-m METHOD Method to use to set color temperature (randr or vidmode)
-o One shot mode (do not continously adjust color temperature)
-r Disable initial temperature transition
-s SCREEN X screen to apply adjustments to
-t DAY:NIGHT Color temperature to set at daytime/night
Please report bugs to <https://bugs.launchpad.net/redshift>
To set your screen to Reddish mode which will relax your eye strain and therefore – when you go to sleep you have a better sleep, type:
hipo@noah:~$ redshift -l -35:-56 -t 5000:3300
Other monitor red-color afternoon or night time gamma to relax your eyes is;
hipo@noah:~$ redshift -l 52.5:13.4
3. Setting redshift to auto change screen gamma via cronjob
If you prefer automatically changing color gamma to reddish at night – will make your eyes (and hence organism) less alert set as a cronjob in lets say 22:00 o'clock at night;
hipo@noah:~$ crontab -u root -e
00 22 * * * redshift -l -35:-56 -t 5000:3300 2>&1 >/dev/null
4. Controlling manually between standard and reddish color gamma through gtk-redshift
For people who like to control and switch between color gamma using GNOME Applet run gtk-redshift like so:
hipo@noah:~$ gtk-redshift -l 52.5:13.4

Clicking on the icon of redshift the color gamma gets changed to red, another toggle reverses back to normal.
There is another tool called F.lux which does the same as redshift. F.lux precedes redshift, actually redshift author write it as attempt to create superior F.lux. Flux works on Windows and Mac OS X – so users who work at night on this platforms might want ot check it. I tried installing f.lux on my Debian Squeeze Linux but had troubles because of requirement for newer python-appindicator :
noah:/home/hipo# apt-get install fluxgui
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
fluxgui : Depends: python-appindicator (>= 0.0.19) but it is not installable
E: Broken packages
Probably with some tampering I can make f.lux work but I was lazy and since I already had redshift, I decided to quit and just be a happy redshift user.
Tags:
color temperature,
computer equipment,
cronjob,
eye strain,
gamma correction,
gui frontend,
initial temperature,
Linux,
night time,
redshift,
shot mode,
sleep,
time of day,
transition,
type 3a Tags: color temperature, computer equipment, cronjob, eye strain, gamma correction, gui frontend, initial temperature, Linux, night time, redshift, shot mode, sleep, time of day, transition, type 3a
Posted in Everyday Life, Linux, Linux and FreeBSD Desktop, Linux Audio & Video, System Administration, Various | No Comments »
Thursday, June 7th, 2012 
We’re constantly being said to reduce energy consupmtion, they sell us new bulbs to save energy, new TVs with energy saving. The newer the computer equipment microwaves or whatever home electrical equipment we buy the more it is said to be saving energy.
So far so good it is true we can reduce energy consumption by producing gadgets which consume less. However there are also another approach to the “green problem” which we never are said about.
It is rather simply instead of saving energy on technology base, we can save energy on physical base. One simple thing to do to save energy with no need to spend money on latest advacement gadgets is to simply make it the old school way.
a -= Learn to switch off your lamps and home equipment whenever its not necessery
If you’re about to go to sleep, you can simply switch off the mobile and use a mechanical clock to wake you up on the morning, this way you have 3 benefits.
1; Less energy will be discharged by the mobile in the time you’re not awake, so you don’t need to charge so frequently the battery and therefore you will draw less energy from the Electrical network hence saving energy.
2; You will not be radiated with a bit less radiation produced by the Mobile phone in order to stay connected to the GSM local located cell.
Though the good this does will not be dramatical it for sure will be better for your health than if the mobile is switched on the whole night.
3; You will not be awakened in morning by some crazy person who just decided to call you early in the morning.
Often this morning unexpected and desired phone calls make you jump off the bed rapidly and hence giving a large dose of stress to your organizm.
-=- Of course switching off the mobile has some disadvantages if you can receive a crucial phone calls during all time of day or night you can’t afford to simply switch off the mobile, this is however not true for most people who work in an OFF-ICE.People working in offices can simply wake up at a scheduled time, get a shower do their morning hygiene and jump to a car or bus to the office so the need for having the mobile switched ON at night is not really needed.
Of course thinking in the same direction, it is logical that switching off the computer earlier when not needed, the wireless home router or the TV is another place from where a huge energy savings can be achieved.
If large amount of people re-learn their energy in-efficient habits to be more energy cautios a HUGE amounts of energy can be saved. This of course can have a positive impact on the monthly energy bills and hence can save you money in monthly expenses.
The TV is surely another big energy draining source, many people have the habit to sleep with a Television switched on. Besides this has a negative impact on the conscious since vast amounts of information are being stored and processed by the conscious and unconscious mind, also the lights emitted from the TV screen prevents the persons body to not have a pieceful rest.
Its rather stupid that companies are constantly ranting on how they improve their products to be energy friendly but they don’t invest even a penny to educate the masses that energy saving does not only depend on how good the technology is produced to save energy but also on how much the people are educated how to use the technology with energy saving in mind.Probably there are plenty of other ways a households can change their habits to save energy. I’ll be glad to hear some other suggestions ,,,
Tags:
advacement,
amount,
Auto,
bed,
bulbs,
Bus,
computer equipment,
consumption,
course,
crazy person,
Draft,
electrical network,
energy consumption,
equipment,
gadgets,
GSM,
home electrical equipment,
HUGE,
hygiene,
impact,
information,
lamps,
Learn,
mechanical clock,
microwaves,
Mobile,
mobile phone,
need,
OFF-ICE,
old school,
organizm,
person,
place,
radiation,
saving energy,
sleep,
stress,
technology,
technology base,
time,
time of day,
tvs Tags: advacement, amount, Auto, bed, bulbs, Bus, computer equipment, consumption, course, crazy person, Draft, electrical network, energy consumption, equipment, gadgets, GSM, home electrical equipment, HUGE, hygiene, impact, information, lamps, Learn, mechanical clock, microwaves, Mobile, mobile phone, need, OFF-ICE, old school, organizm, person, place, radiation, saving energy, sleep, stress, technology, technology base, time, time of day, tvs
Posted in System Administration | 2 Comments »
Monday, March 5th, 2012 
One of the companies, where I'm employed runs nginx as a CDN (Content Delivery Network) server.
Actually nginx, today has become like a standard for delivering tremendous amounts of static content to clients.
The nginx, server load has recently increased with the number of requests, we have much more site visitors now.
Just recently I've noticed the log files are growing to enormous sizes and in reality this log files are not used at all.
As I've used disabling of web server logging as a way to improve Apache server performance in past time, I thought of implying the same little "trick" to improve the hardware utilization on the nginx server as well.
To disable logging, I proceeded and edit the /usr/local/nginx/conf/nginx.conf file, commenting inside every occurance of:
access_log /usr/local/nginx/logs/access.log main;
to
#access_log /usr/local/nginx/logs/access.log main;
Next, to load the new nginx.conf settings I did a restart:
nginx:~# killall -9 nginx; sleep 1; /etc/init.d/nginx start
I expected, this should be enough to disable completely access.log, browser request logins. Unfortunately /usr/local/nginx/logs/access.log was still displaying growing with:
nginx:~# tail -f /usr/local/nginx/logs/access.log
After a bit thorough reading of nginx.conf config rules, I've noticed there is a config directive:
access_log off;
Therefore to succesfully disable logging I had to edit config occurance of:
access_log /usr/local/nginx/logs/access.log main
to
After a bit thorough reading of nginx.conf config rules, I've noticed there is a config directive:
access_log off;
Therefore to succesfully disable logging I had to edit config occurance of:
access_log /usr/local/nginx/logs/access.log main
to
access_log /usr/local/nginx/logs/access.log main
access_log off;
Finally to load the new settings, which thanksfully this time worked, I did nginx restart:
nginx:~# killall -9 nginx; sleep 1; /etc/init.d/nginx start
And hooray! Thanks God, now nginx logging is disabled!
As a result, as expected the load avarage on the server reduced a bit 🙂
Tags:
apache,
apache server,
Auto,
avarage,
browser,
CDN,
conf,
config,
config rules,
content delivery network,
Draft,
enormous sizes,
file,
god,
hardware,
hooray,
init,
killall,
log browser,
logs,
network server,
nginx,
occurance,
performance,
quot,
reading,
request,
Result,
server load,
server logging,
server performance,
sleep,
static content,
time,
today,
usr,
utilization,
way,
web server Tags: apache, apache server, Auto, avarage, browser, CDN, conf, config, config rules, content delivery network, Draft, enormous sizes, file, god, hardware, hooray, init, killall, log browser, logs, network server, nginx, occurance, performance, quot, reading, request, Result, server load, server logging, server performance, sleep, static content, time, today, usr, utilization, way, web server
Posted in Linux, System Administration, Various | 3 Comments »
Monday, February 6th, 2012 
I'm in Sofia for a couple of days being a guest to a friend (thx Nomen), after my stay for a week in Bodesće (a little village nearby Bled located in Slovenia).
Yesterday on my way to sleep I wanted to see a movie and asked Nomen to recommend me a movie. His recommendation was a German-Australian movie from 2004 called The Edukators – The Fat years are Over. I had absolutely no idea what it will be like so I didn't expected much but it seems the movie plot took my attention.
The movie plot revolves around 3 avarage German persons who live in Berlin. The three youngsters has just passed the 20s, Peter and Daniel (two close friends who hold some serious anti-capitalist views and does organize house break-ups without stealing.) Peter and Daniel's rich villas break-ups aim is idealistic, they don't steal but just change the order of furniture and leave messages to make rich people aware that money doesn't make them invincible…
Jule a girlfriend of Peter, becomes friend with Daniel and they fall in love, while Peter is away for a vacation. During Peters sojourn abroad Daniel tells Jule the secret (Peter and Daniel) are the Edukators whose break-ins has just recently become known via the local Berlin newspapers.
The Edukators group leave messages to every of the "victim" homes saying – "die fetten Jahre sind vorbei" – "The fat years are over", a sentence well known from the Holy Bible's story of Joseph in Egypt.
Jule works as a waitress in a luxurious restaurant but her payment is only good to cover her very basic needs as well as pay her debt (as she is already indebted as many youngsters in Germany).
Jule is more indebted compared to many of the young germans, since by accident she hit a rich businessman's car which costs 100 000 eur. Since more than a year she is working for paying the monthly bills to cover richman's car and she succeeded to pay only €55000 …
The Jule's "injustice" is just a part of the many injustices that are in society, but as the youngsters hold anarchistic and anti democratic views, this whole Mercedes crash accelerates as Jule and Daniel break up in the Luxurious Villa of the rich man whose car Jule is still paying.

Just like the other break ups Jule and Daniel change completely the order of the furniture and leave the threatening message die fetten Jahre sind vorbei , this time however they do even more as they decide to drop the sofa in the pool. These time Daniel and Jule's planning is more like an venture than just a well planned Edukators break-in. Suddenly the watchdogs in the yard start barking and the two youngesters has to move quickly to prevent being taken by the police patrol.
On the next day Peter is back from his vacation and Jule realizes her mobile phone is missing (probably fallen in the pool or somewhere in the richman's mansion)… On the next night Jule and Daniel, enter the house again in hope to find and cover-up the tracks they left last night and hopefully find, Jule's missing mobile.
They don't know however the richman would arrive his villa to stay for the night. As he enter his house, the businessman encounters Jule and immediately recognizes her.
Daniel being in the other floor comes down and hits the richman from behind and he enters unconscioness. As the two are panicked they call Peter and tell him about "the villa accident". Daniel arrives immediately and the three "revolutionaries" decide to take the wealthy man who as a hostage bringing him in Jule's uncle mountain hut.
The 3 anti-current system democrats and the representative of the wealthy class has to spend few weeks together in a small house each one exposing his stand point and philosophy. Little by little the 4 people become friends and a dramma between Daniel and Peter emerges as Jule is now in love with Daniel and Peter finds out …
Hardenberg (the 3 youngesters hostage) happens to be an ex-leader of a Socialist German Student Union some 35 years go … and tells a story how he and his union members hostiged a VIP german person in their youth days and how funny is that he is in the same situation like the person they hostiged so long time ago…
The movie is interesting as it really shows the sad reality and the falling democratic system which we have established and follow. It exposes the injustice of the system but it doesn't really offer a solution to the society and economic problems and injustices.
Tags:
aim,
Auto,
avarage,
Bled,
break ups,
close friends,
couple of days,
doesn,
Draft,
Edukators,
egypt,
furniture,
germans,
girlfriend,
Holy,
holy bible,
house,
injustice,
ins,
love,
luxurious restaurant,
newspapers,
nomen,
person,
quot,
recommendation,
rich businessman,
richman,
sind,
sleep,
sofia,
sojourn,
story,
system,
three youngsters,
thx,
time,
Union,
ups,
vacation,
victim,
village,
vorbei,
waitress Tags: aim, Auto, avarage, Bled, break ups, close friends, couple of days, doesn, Draft, Edukators, egypt, furniture, germans, girlfriend, Holy, holy bible, house, injustice, ins, love, luxurious restaurant, newspapers, nomen, person, quot, recommendation, rich businessman, richman, sind, sleep, sofia, sojourn, story, system, three youngsters, thx, time, Union, ups, vacation, victim, village, vorbei, waitress
Posted in Entertainment, Movie Reviews, Various | No Comments »