The Open Enchilada Project S04E02 - Godinez Universitarios
O pueden encontrar el audio unicamente en openenchilada.
Fin de una epoca: Linko
¡Suerte a todos!
Appcelerator @ FI-UNAM
Después Radamantis dió un par de conferencias, una de Introducción a Titanium Appcelerator, y otra un poco más avanzada de tu primera aplicación.
Mi presentación:
Loop mount iso files without being root
There is a rather convenient way to mount ISO files (CD/DVD images) onto a directory on Linux, which goes as follows:
mount -o loop,ro /path/to/image.iso /path/to/mountpoint
(where the mountpoint is a directory).
This method works very well, but has one essential drawback: you must be root in order to do that. So how do I get to do so as a regular user ?
A barely known alternative lies in fuseiso, which uses the FUSE filesystem in user-space layer to accomplish that.
In order to use it, you must install the package fuseiso, which is available with the openSUSE distribution, and from the release repository (e.g. for 11.4) as well as from the filesystems repository and OBS project:
zypper install fuseiso
Once that has been done (as root ;)), you can simply mount ISO files like this, without being root:
fuseiso /path/to/image.iso /path/to/mountpoint
Note that as an additional benefit, fuseiso also supports images in NRG, BIN, MDF and IMG (dd) format, as well as zisofs.
In order to unmount, simply use fusermount -u, e.g. like this:
fusermount -u /path/to/mountpoint
Greek openSUSE community, Translation of openSUSE Weekly news in Greek (issue 198)

Hello everyone!
I am very pleased to announce the new issue (198) of openSUSE Weekly News in Greek.
In this issue you will read about:
* Dmitri Popov: Create Slick Slideshows with digiKam
* Michal Hrušecký: How do I handle all those MySQLs
* Jos Poortvliet: Almost too much going on…
* opensource.com/Marek Mahut: Creative Commons 4.0 on the horizon
* Linux Pro Magazine/Bruce Byfield: How I Learned to Love the KDE 4 Series
As well as many interesting news about openSUSE and useful advice, which can make our lives easier.
Enough said though... Read more at: http://own.opensuse.gr, http://el.opensuse.org/Weekly_news or www.os-el.gr
We are always looking forward to receiving your comments as well as suggestions regarding things you would like to read about in our next issue.
The openSUSE Weekly News is being translated in the Greek language from issue #150. You can read older translated issues here: http://el.opensuse.org/Κατηγορία:Weekly_news_issues
Enjoy it!
Efstathios Agrapidis (efagra)
openSUSE Weekly News 198 και στα ελληνικά
Καλησπέρα σε όλους!
Βρίσκομαι στην πολύ ευχάριστη θέση να ανακοινώσω το νέο τεύχος (198) Weekly News του openSUSE εκ μέρους της ελληνικής ομάδας που δούλεψε για τη μετάφρασή του.
Σε αυτό το τεύχος θα διαβάσετε:
* Dmitri Popov: Δημιουργία Slick Slideshows με digiKam
* Michal Hrušecký: Πως χειριζόμαστε όλες αυτές τις MySQLs
* Jos Poortvliet: Σχεδόν υπερβολικά πολλά τρέχουν…
* opensource.com/Marek Mahut: Creative Commons 4.0 στον ορίζοντα
* Linux Pro Magazine/Bruce Byfield: Πώς έμαθα να αγαπάω τη σειρά του KDE 4
Και φυσικά πολλά άλλα ενδιαφέροντα νέα σχετικά με το openSUSE καθώς επίσης και χρήσιμους οδηγούς που θα κάνουν τη ζωή σας πιο εύκολη
Πολλά λέω… Καλύτερα διαβάστε το από πρώτο χέρι:
Βρείτε το στις ακόλουθες ιστοσελίδες http://own.opensuse.gr, http://el.opensuse.org/Weekly_news και http://www.os-el.gr
Περιμένουμε τα σχόλιά σας καθώς και τι θα θέλατε να δείτε με περισσότερες λεπτομέρειες στο επόμενο τεύχος.
Το openSUSE Weekly News μεταφράζεται στα ελληνικά από το τεύχος #150. Μπορείτε να διαβάσετε όλα τα παλιότερα τεύχη στα ελληνικά εδώ: http://el.opensuse.org/Κατηγορία:Weekly_news_issues
Απολαύστε το!
Ευστάθιος Αγραπίδης (efagra)
Updated libvirt for openSUSE12.1 RC1
Last week I updated the libvirt package for openSUSE12.1 RC1 / Factory to version 0.9.6. The package was also submitted for SLE11 SP2 Beta8. Changes since last update include backporting of AHCI controller patch for qemu driver. With this patch it is possible to use SATA drives with qemu instances. The following controller device XML is used to specify an AHCI controller
<controller type='sata' index='0'> <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/> </controller
The libvirt qemu driver supports many AHCI controllers, each with one bus and 6 units. To attach a SATA disk to a unit on an AHCI controller, use the following disk device XML
<disk type='file' device='disk'> <driver name='qemu' type='raw'/> <source file='/var/lib/libvirt/images/test/disk0.raw'/> <target dev='sda' bus='sata'/> <address type='drive' controller='0' bus='0' unit='0'/> </disk
Also new to this libvirt update is opt-in for Apparmor confinement of qemu instances. /etc/libvirt/qemu.conf has been patched to explicitly set the security driver to ‘none’. If Apparmor is enabled on the host, libvirtd is generously confined since it needs access to many utilities and libraries, but users must opt-in to also have qemu instances launched by libvirtd confined. Simply edit /etc/libvirt/qemu.conf and change security_driver to ‘apparmor’. Of course, selinux is also available if users prefer it over Apparmor.
New Style for YaST2
YaST2 got a lot of improvements which will be available in openSUSE 12.1. YaST doesn’t accidentally overwrite configuration files anymore (last bug fixed
) and snapper provides a rollback function for configuration options, just to mention a few. Therefore it’s time to give YaST2 a new and fresh style. As YaST Qt supports Stylesheets it’s simple to influence YaST’s style.

FACTORY contains the new style already. Packages for older releases are also available in my build service project: http://software.opensuse.org/download.html?project=home:tgoettlicher:Factory&package=branding-openSUSE.
I hope you like it. You can use YaST’s Stylesheet Editor to play around the the stylesheet as described in my this blog post. Please send me improvements you want to share. Thanks.
openSUSE Weekly News 197 και στα ελληνικά
Καλημέρα και καλό Σαββατοκύριακο σε όλους,
Βρίσκομαι στην πολύ ευχάριστη θέση να ανακοινώσω το νέο τεύχος (197) Weekly News του openSUSE εκ μέρους της ελληνικής ομάδας που δούλεψε για τη μετάφρασή του.
Σε αυτό το τεύχος θα διαβάσετε:
* To openSUSE ανακοινώνει την πρώτη δημόσια έκδοση του openQA
* Nelson Marques: Το Unknown Horizons 2011.3 RC3 είναι έτοιμο για δοκιμή στο openSUSE!
* Michal Hrušecký: openSUSE @ ASUS Transformer
* Linuxaria: Πώς να μετατρέπετε από .deb σε .rpm και αντίστροφα
* Cornelius Schumacher: Ο θάνατος της πλατφόρμας των Windows
Και φυσικά πολλά άλλα ενδιαφέροντα νέα σχετικά με το openSUSE καθώς επίσης και χρήσιμους οδηγούς που θα κάνουν τη ζωή σας πιο εύκολη
Πολλά λέω… Καλύτερα διαβάστε το από πρώτο χέρι:
Βρείτε το στις ακόλουθες ιστοσελίδες http://own.opensuse.gr, http://el.opensuse.org/Weekly_news και http://www.os-el.gr
Περιμένουμε τα σχόλιά σας καθώς και τι θα θέλατε να δείτε με περισσότερες λεπτομέρειες στο επόμενο τεύχος.
Το openSUSE Weekly News μεταφράζεται στα ελληνικά από το τεύχος #150. Μπορείτε να διαβάσετε όλα τα παλιότερα τεύχη στα ελληνικά εδώ: http://el.opensuse.org/Κατηγορία:Weekly_news_issues
Απολαύστε το!
Ευστάθιος Αγραπίδης (efagra)
Greek openSUSE community, Translation of openSUSE Weekly news in Greek (issue 197)

Hello everyone!
I am very pleased to announce the new issue (197) of openSUSE Weekly News in Greek.
In this issue you will read about:
* openSUSE Announces First Public Release of openQA
* Nelson Marques: Unknown Horizons 2011.3 RC3 ready for testing on openSUSE!
* Michal Hrušecký: openSUSE @ ASUS Transformer
* Linuxaria: How to convert from .deb to .rpm and viceversa
* Cornelius Schumacher: The demise of the Windows platform
As well as many interesting news about openSUSE and useful advice, which can make our lives easier.
Enough said though... Read more at: http://own.opensuse.gr, http://el.opensuse.org/Weekly_news or www.os-el.gr
We are always looking forward to receiving your comments as well as suggestions regarding things you would like to read about in our next issue.
The openSUSE Weekly News is being translated in the Greek language from issue #150. You can read older translated issues here: http://el.opensuse.org/Κατηγορία:Weekly_news_issues
Enjoy it!
Efstathios Agrapidis (efagra)