Archive

Posts Tagged ‘Ubuntu’

Violations on users PIM

January 19th, 2014 No comments

While Apple Computers decided to rape users rights once more, ceasing the capability to synchronise PIM (personal information management) data locally with OS X Mavericks 10.9 (argueing they should store their data in their iCloud. – Bwahahahaha!1!!) there are too many PIM solutions for GNU/Linux users, whereas none of them are really feasible for users who want to switch to Free Software.

While many complain that there are too few GNU/Linux Desktop users and Linus Torvalds claims this to be his “personal failure” the GNU/Linux community fails to offer a seamless integration of GUI (graphical user interface) PIM into their OS. (Which is really sad, as fiddling around with SoGo-connector, lightning etc. does not offer a sustainable solution…)

So here is my solution:
Get DAViCal, install it on your server and get mutt, pycarddav and khal for your desktop(s), get a Jolla and you will have a beautiful and seamless PIM solution using the “good olde command line”.

khal

Ubuntu 12.10

October 19th, 2012 No comments

sudo do-release-upgrade
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get remove unity-lens-shopping
sudo reboot

Categories: Free Software, Technology Tags: , ,

Exterminate all the Brutes v.4

December 14th, 2011 No comments

Exterminate All The Brutes memeThe Software Libre project “Exterminate alle the brutes” in Malawi, Central Africa, goes into round four.

This time it’s less of a “Niggaz project” than a “Womanz project”! – Meow!

Stay tuned by subscribing to the projects website.

The looks

September 17th, 2011 No comments

In the past week I practically bullied all my friends into reading the first post about the Linux experience and to my surprise, it did trigger a certain wonder in the non-nerd community that I know. The biggest curiosity had to do with its looks. I felt like trying to describe someone for a blind date… “Is not so boring! Seriously, it looks really good”, “No, I know you are not a computer person but I’m telling you, it changed its appearance completely and it looks amazing now”. This was actually the thing I was most surprised about when I first interacted with my Ubuntu interface, cause it’s really intuitive and friendly to the eye. Almost all of its software has a resemblance to one that we are familiar with already (Libre Office to Word, Banshee to iTunes, GIMP to Photoshop and so on). Most people think of Linux in the same way I did: is not for me cause I’m an “average” user, it’s the OS for programmers. That may have been the case some years ago, but now even a blond girl (hey that’s me!) can find her way around it without feeling hopeless or lost in an unfamiliar environment. However, the success of a blind date doesn’t have to do only with looks, because the important things usually transcend the limits of what’s visible to the eye. The open nature of this operating system makes all the difference in the world, and even if we are not familiar with the technicalities of it, even if we don’t understand how Linux is better than other OS because on the surface it “looks” the same and we are not particularly turned on by the cleanliness of the processes running in the back-end, we should try to be aware of the social and political implications of our daily choices and own those choices rather than let others decide for us.

 

My GNU/Linux experience

September 7th, 2011 No comments

It all started as a discussion on security. I’ve never considered this an issue of importance before, even as an avid computer user. But it was made clear to me that the world is changing and apparently not in the “right” direction. Eager to get out of my shell of microsoftian comfort, I decided to try GNU/Linux, when Lx kindly offered to install it for me. He guided me through the process like the patient “older brother” (note that I purposely didn’t use “big brother”) teaching the younger sister how to ride a bike. Which is why my old windows OS was kept intact in a different hard drive. Kind of giving me a “safety” feeling, like those little wheels on kid’s bikes. I needed the reassurance that my computer world as I knew it, was still going to be available for me, two clicks away. It wasn’t difficult to get on the road of open software this way. And the curious thing is that I haven’t accessed my “little wheels” (the windows hard drive) ever since I got the new one cause I don’t seem to need it. I can ride smoothly on the GNU/Linux and it has that “cool toy” aura to it. But it is important that I could do everything I needed to, and remarked that some things work even better now! (like video chatting and the general performance of my computer). So far, I don’t miss anything (beyond some unimportant shortcut and some spanish character) and I’m overall quite happy with the change. I had prejudices, like most people, because we tend to think that things are to be valued by their price, rather than by their nature. Like most people, I too thought that open software “can’t” offer enough because it’s free. As if there was an intrinsic correlation between high price and high quality. Reality dictates this is a fallacy that we choose to ignore.

That’s all for now. I’ll continue my quest of riding GNU/Linux and sharing my experiences with all of you who want to read about it.

Links:
GNU/Linux Ubuntu
GNU Project
Linux Newbie Guide
GNU/Linux Ubuntu Forum

Categories: Art Tags: , , ,

tweet nagios server status

August 28th, 2011 2 comments

On my Nagios Server I use twitter to send status alerts. It works nicely with Identica & Twitter.

The setup is easy. First install twidge with

root@host:~# apt-get install twidge

Then write a twidgerc file with the according twidge configuration

nagios@host:~# vi /etc/nagios3/twidgerc
[DEFAULT]
oauthaccesstoken: %(serverbase)s/oauth/access_token
oauthauthorize: %(serverbase)s/oauth/authorize
oauthdata: [("user_id","XXXXXX"),("screen_name","YOUR_SCREENNAME"),("oauth_verifier","XXXXXX"),("oauth_token","XXXXXX"),("oauth_token_secret","XXXXXX"),("oauth_callback_confirmed","true")]
oauthrequesttoken: %(serverbase)s/oauth/request_token
sendmail: /usr/sbin/sendmail
serverbase: https://api.twitter.com
shortenurls: yes
urlbase: %(serverbase)s/1

Make sure the file is readable by Nagios user. (!)

nagios@host:~# chown nagios /etc/nagios/twidgerc

Then add the following lines to /etc/nagios3/conf.d/contacts_nagios2.cfg (on GNU/Linux Debian).

define contact{
contact_name twitter
alias Twitter
service_notification_period 24x7
host_notification_period 24x7
service_notification_options w,u,c,r
host_notification_options d,r
service_notification_commands notify-service-by-twitter
host_notification_commands notify-host-by-twitter
email twitteraccount_to_contact
}

… and add “twitter” to the members in the contactgroup (in the same file).

members root,nagiosadmin,twitter

Then add these lines to etc/nagios3/commands.cfg:

define command {
command_name notify-service-by-twitter
command_line echo "#Nagios $NOTIFICATIONTYPE$ $HOSTNAME$($SERVICEDESC$) is $SERVICESTATE$" | twidge -c /etc/nagios3/twidgerc update
}
define command {
command_name notify-host-by-twitter
command_line echo "#Nagios $HOSTSTATE$ alert for $HOSTNAME$" | twidge -c /etc/nagios3/twidgerc dmsend $CONTACTEMAIL$
}

Nagios will tweet the service notifications and send a directmessage to the according user with the host notification.
Here’s an example:

=^.^= Lx