Full Circle Magazine

Total Page:16

File Type:pdf, Size:1020Kb

Full Circle Magazine Full Circle LINUX LABS : ISSUE #46 - February 2011 NEW IES! SER NNEEWW SSEERRIIEESS -- LLIIBBRREEOOFFFFIICCEE 1 contents ^ Full Circle Linux News p.04 Ubuntu Women p.28 Program In Python Pt20 p.07 Ubuntu Games p.29 NEW SERIES! Write For Full Circle p.19 Linux Lab p.20 LibreOffice Pt1 p.12 Command & Conquer p.05 Installing Mythbuntu p.15 Review - Boxee Box p.24 Letters p.27 Top 5 p.34 The articles contained in this magazine are released under the Creative Commons Attribution-Share Alike 3.0 Unported license. This means you can adapt, copy, distribute and transmit the articles but only under the following conditions: You must attribute the work to the original author in some way (at least a name, email or URL) and to this magazine by name ('full circle magazine') and the URL www.fullcirclemagazine.org (but not attribute the article(s) in any way that suggests that they endorse you or your use of the work). If you alter, transform, or build upon this work, you must distribute the resulting work under the same, similar or a compatible license. 2 contents ^ EEDDIITTOORRIIAALL Welcome to another issue of Full Circle! big Full Circle Podcast long Hosts: All the best, and keep in touch. 3 contents ^ LLIINNUUXX NNEEWWSS Hello Linux Open- Wearable, Atom-powered Computer Canonical To Donate Xchange 25% Ubuntu One Revenues To Gnome Foundation Source Full Circle Notifier - Beta Release! Full Circle Notifier For more info, see the Source Source FCN Google Group: http://goo.gl/4Ob4 4 contents ^ CCOOMMMMAANNDD && CCOONNQQUUEERR To-Do List Written by Lucas Westermann To-Do List #!/usr/bin/env python import os home=os.path.expanduser("~") for root, dirs, files in os.walk(os.path.join(home,"Reminders")): for infile in [f for f in files]: if(infile.endswith("~")!=True): fh=open(os.path.abspath(os.path.join(root,infile))) for line in fh: print("- "+line, end=' ') fh.close() createToDo.sh: #!/bin/bash file=~/ToDo.txt toDo=~/toDo.txt To-Do List if [[ -e $toDo ]]; then `rm "$toDo"` fi while read line; do date=`date -d"$(echo "$line"|sed 's/\(.\) -.*$/\1/g')" +%s`; echo "$(echo "$line"|sed -e s/".*-"/"$date -"/g)" >> "$toDo"; done < "$file" if [[ -e "$toDo" ]]; then temp=`sort -n "$toDo"` echo "$temp" > "$toDo" fi 5 contents ^ COMMAND & CONQUER printToDo.sh: #!/bin/bash toDo=~/toDo.txt zenity --error --text “An while read line; do error occurred!” if [[ "$line" != "" ]]; then date=`date -d@"$(echo "$line"|sed -e s/"-[^-]*$"//g)" +"%a %b %d %H:%M"` echo "$(echo "$line"|sed -e s/".*-"/"$date -"/g)"; zenity - fi -questio done < "$toDo" n -- test “Question ?”; echo $? <command>|zenity --text-info --width <size in pixels> <command>| tee > (zenity -- progress --pulsate) >file input=$(zenity --entry -- text "How are you?" --entry- Lucas text "enter text here"); Zenity echo $input 6 contents ^ HHOOWW--TTOO Written by Greg Walters PPrrooggrraamm IInn PPyytthhoonn -- PPaarrtt 2200 # simple.py import pygtk pygtk.require('2.0') import gtk class Simple: def __init__(self): self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) self.window.show() def main(self): gtk.main() if __name__ == "__main__": simple = Simple() simple.main() self.window.connect("delete_e vent", self.delete_event) def delete_event(self, widget, event, data=None): gtk.main_quit() return False self.window.set_position(gtk. WIN_POS_CENTER) 7 contents ^ PROGRAM IN PYTHON - PART 20 self.button = gtk.Button("Close Me") Ideas & Writers self.button.connect("clicked" Wanted ,self.btn1Clicked,None) self.window.add(self.button) self.button.show() self.box1 = gtk.HBox(False,0) please be specific with your idea! self.window.add(self.box1) self.button = gtk.Button("Button 1") self.button.connect("clicked" ,self.btn1Clicked,None) self.box1.pack_start(self.but ton,True,True,0) self.button.show() if you can’t get the article written within several weeks (a month at most) that you reopen the question def btn1Clicked(self,widget,data= for ideas None): HBox = gtk.HBox(homogeneous=False, for writers print "Button 1 clicked" spacing=0) gtk.main_quit() 8 contents ^ PROGRAM IN PYTHON - PART 20 gtk.main_quit() self.button2 = gtk.Button("Button 2") self.button2.connect("clicked ",self.btn2Clicked,None) self.box1.pack_start(self.but ton2,True,True,0) self.button2.show() self.box1.show() 0 1 2 0+-----------+-----------+ | | | box.pack_start(widget,expand= 1+-----------+-----------+ True, fill=True, padding=0) | | | 2+-----------+-----------+ def btn2Clicked(self,widget,data= None): print "Button 2 clicked" 9 contents ^ PROGRAM IN PYTHON - PART 20 0 1 2 self.window.set_size_ 0+-----------+-----------+ request(250, 100) button1.show() | Button 1 | Button 2 | 1+-----------+-----------+ self.window.connect(" | Button 3 | delete_event", 2+-----------+-----------+ table.attach(buttonx,0,1,0,1) self.delete_event) button2 = gtk.Button("Button 2") button2.connect("clicked",sel f.callback,"button 2") table.attach(button2,1,2,0,1) Table = table.attach(buttonx,1,2,0,1) button2.show() gtk.Table(rows=1,columns=1,ho mogeneous=True) # table1.py import pygtk pygtk.require('2.0') import gtk table = gtk.Table(2, 2, class Table: True) # Create a 2x2 grid def __init__(self): self.window.add(table) self.window = gtk.Window(gtk.WINDOW_TOPLEVE L) button3 = gtk.Button("Quit") table.attach(widget,left self.window.set_posit point,right point,top ion(gtk.WIN_POS_CENTER) point,bottom button3.connect("clicked",sel point,xoptions=EXPAND|FILL,yo f.ExitApp,"button 3") self.window.set_title button1 = gtk.Button("Button ptions=EXPAND|FILL, ("Table Test 1") 1") xpadding=0,ypadding=0) table.attach(button3,0,2,1,2) self.window.set_borde button1.connect("clicked",sel button3.show() r_width(20) f.callback,"button 1") table.attach(button1,0,1,0,1) 10 contents ^ PROGRAM IN PYTHON - PART 20 table.show() self.window.show() def main(self): gtk.main() def delete_event(self, widget, event, data=None): def ExitApp(self, widget, event, data=None): gtk.main_quit() print "Quit button was Full Circle Podcast return False pressed" gtk.main_quit() Review if __name__ == "__main__": News table = Table() def Gaming callback(self,widget,data=Non table.main() e): print "%s was pressed" % data Greg Walters 11 contents ^ HHOOWW--TTOO Written by Elmer Perry LLiibbrree OOffffiiccee -- PPaarrtt 11 NEW SERIES! sudo add-apt-repository ppa:libreoffice/ppa sudo apt-get update sudo apt-get install libreoffice 12 contents ^ LIBRE OFFICE - PART 1 13 contents ^ LIBRE OFFICE - PART 1 14 contents ^ HHOOWW--TTOO Written by Dogphlap IInnssttaalllliinngg MMyytthhbbuunnttuu 1100..1100 TV Tuner Cards 15 contents ^ HOWTO - INSTALLING MYTHUBUNTU 10.10 Frontends And Backends Navigating The Setup Pages 16 contents ^ HOWTO - INSTALLING MYTHUBUNTU 10.10 Idiosyncrasies Of Input Connections Frontend Setup Video sources: Capture Cards: Idiosyncrasies Of Backend Setup General: 17 contents ^ HOWTO - INSTALLING MYTHUBUNTU 10.10 Useful keys: Esc backs out of everything/anywhere, one step per key press. Enter selects a highlighted menu item. f allows left/right arrow keys to control volume level. \ mutes the sound. a allows left/right arrow keys to slow or speed up playback. End move fwd 24hrs in program guide (Shift-End for -24hrs). Rt arrow move 30secs fwd in playback and live TV (if possible). Lt arrow moves 10 seconds back during playback and live TV. p pauses playback (hit it again to resume). Numeric select channel when watching live TV (Enter selects*). Up/Down keys: browse channels in order when watching live TV (Enter selects*). Up/Down keys: move 10mins back/forward when watching recording. * if Enter is required depends on setup. The Magic Of The Letter 'd' 18 contents ^ HHOOWW--TTOO Written by Ronnie Tucker WWrriittee FFoorr FFuullll CCiirrccllee MMaaggaazziinnee Guidelines REVIEWS Games/Applications it must When reviewing games/applications please state clearly: somehow be linked to Ubuntu or one of the many derivatives of Ubuntu PLEASE SPELL AND GRAMMAR CHECK IT! Hardware Writing When reviewing hardware please state clearly: Non-English Writers Images You don't need to be an expert to write an article - write about the games, applications and hardware that you use every day. 19 contents ^ LLIINNUUXX LLAABB Written by Robin Catling FFiillee SSyysstteemmss PPaarrtt 11 -- HHoommee AAddvvaannttaaggee Dear Diary... Ext Family Rise and Fall 20 contents ^ LINUX LAB - FILE SYSTEMS PART 1 SWAP Shop No Country for Old File- Best of the Rest systems Better and Better 21 contents ^ MMYY SSTTOORRYY Written by Célio Ricardo Quaio Goetten 22 contents ^ 23 contents ^ RREEVVIIEEWW Written by Greg Walters BBooxxeeee BBooxx The Remote The Hardware 24 contents ^ REVIEW: BOXEE BOX In Use The Good The Bad 25 contents ^ REVIEW: BOXEE BOX The Bottom Line Greg Walters 26 contents ^ Every month we like to publish some of the emails we receive. If you would like to submit a letter for publication, compliment or complaint, please email it to: LLEETTTTEERRSS . Missing Info OSX > Ubuntu Join us on: A PLEA ON BEHALF OF THE PODCAST PARTY Chris Warren Comments and audio may be edited for length. Please remember this is a family-friendly show. Igor Barinov Robin 27 contents ^ UUBBUUNNTTUU WWOOMMEENN Written by Elizabeth Krumbach Elizabeth Krumbach Valorie Zimmerman 28 contents ^ UUBBUUNNTTUU GGAAMMEESS Written by Ed Hewitt BBrraaiidd Score: 9/10 Good Bad 29 contents ^ If you have Ubuntu-related questions, email them to: QQ&&AA , and Gord will answer them in a future Compiled by Gord Campbell issue. I want to install the I was installing Ubuntu Gimp help 10.10, and got to the Q documentation locally. I Q screen when it asks, installed the gimp-help- "who are you." I filled in common package, but this did all the fields, but the "forward" not enable the help function in Does anyone know how button was still not available. the program itself. to get this video to Q display in Ubuntu? Link: gimp-help-en http://www.cbsnews.com/video/w atch/?id=7166315n When I try to install Ubuntu, it gets part All I get is a black empty box Q way, then just stops both in Firefox and Chromium.
Recommended publications
  • Ubuntu Kung Fu
    Prepared exclusively for Alison Tyler Download at Boykma.Com What readers are saying about Ubuntu Kung Fu Ubuntu Kung Fu is excellent. The tips are fun and the hope of discov- ering hidden gems makes it a worthwhile task. John Southern Former editor of Linux Magazine I enjoyed Ubuntu Kung Fu and learned some new things. I would rec- ommend this book—nice tips and a lot of fun to be had. Carthik Sharma Creator of the Ubuntu Blog (http://ubuntu.wordpress.com) Wow! There are some great tips here! I have used Ubuntu since April 2005, starting with version 5.04. I found much in this book to inspire me and to teach me, and it answered lingering questions I didn’t know I had. The book is a good resource that I will gladly recommend to both newcomers and veteran users. Matthew Helmke Administrator, Ubuntu Forums Ubuntu Kung Fu is a fantastic compendium of useful, uncommon Ubuntu knowledge. Eric Hewitt Consultant, LiveLogic, LLC Prepared exclusively for Alison Tyler Download at Boykma.Com Ubuntu Kung Fu Tips, Tricks, Hints, and Hacks Keir Thomas The Pragmatic Bookshelf Raleigh, North Carolina Dallas, Texas Prepared exclusively for Alison Tyler Download at Boykma.Com Many of the designations used by manufacturers and sellers to distinguish their prod- ucts are claimed as trademarks. Where those designations appear in this book, and The Pragmatic Programmers, LLC was aware of a trademark claim, the designations have been printed in initial capital letters or in all capitals. The Pragmatic Starter Kit, The Pragmatic Programmer, Pragmatic Programming, Pragmatic Bookshelf and the linking g device are trademarks of The Pragmatic Programmers, LLC.
    [Show full text]
  • Ubuntu Kung Fu.Pdf
    Prepared exclusively for J.S. Ash Beta Book Agile publishing for agile developers The book you’re reading is still under development. As part of our Beta book program, we’re releasing this copy well before we normally would. That way you’ll be able to get this content a couple of months before it’s available in finished form, and we’ll get feedback to make the book even better. The idea is that everyone wins! Be warned. The book has not had a full technical edit, so it will con- tain errors. It has not been copyedited, so it will be full of typos and other weirdness. And there’s been no effort spent doing layout, so you’ll find bad page breaks, over-long lines with little black rectan- gles, incorrect hyphenations, and all the other ugly things that you wouldn’t expect to see in a finished book. We can’t be held liable if you use this book to try to create a spiffy application and you somehow end up with a strangely shaped farm implement instead. Despite all this, we think you’ll enjoy it! Throughout this process you’ll be able to download updated PDFs from your account on http://pragprog.com. When the book is finally ready, you’ll get the final version (and subsequent updates) from the same address. In the meantime, we’d appreciate you sending us your feedback on this book at http://books.pragprog.com/titles/ktuk/errata, or by using the links at the bottom of each page.
    [Show full text]
  • Indicators for Missing Maintainership in Collaborative Open Source Projects
    TECHNISCHE UNIVERSITÄT CAROLO-WILHELMINA ZU BRAUNSCHWEIG Studienarbeit Indicators for Missing Maintainership in Collaborative Open Source Projects Andre Klapper February 04, 2013 Institute of Software Engineering and Automotive Informatics Prof. Dr.-Ing. Ina Schaefer Supervisor: Michael Dukaczewski Affidavit Hereby I, Andre Klapper, declare that I wrote the present thesis without any assis- tance from third parties and without any sources than those indicated in the thesis itself. Braunschweig / Prague, February 04, 2013 Abstract The thesis provides an attempt to use freely accessible metadata in order to identify missing maintainership in free and open source software projects by querying various data sources and rating the gathered information. GNOME and Apache are used as case studies. License This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) license. Keywords Maintenance, Activity, Open Source, Free Software, Metrics, Metadata, DOAP Contents List of Tablesx 1 Introduction1 1.1 Problem and Motivation.........................1 1.2 Objective.................................2 1.3 Outline...................................3 2 Theoretical Background4 2.1 Reasons for Inactivity..........................4 2.2 Problems Caused by Inactivity......................4 2.3 Ways to Pass Maintainership.......................5 3 Data Sources in Projects7 3.1 Identification and Accessibility......................7 3.2 Potential Sources and their Exploitability................7 3.2.1 Code Repositories.........................8 3.2.2 Mailing Lists...........................9 3.2.3 IRC Chat.............................9 3.2.4 Wikis............................... 10 3.2.5 Issue Tracking Systems...................... 11 3.2.6 Forums............................... 12 3.2.7 Releases.............................. 12 3.2.8 Patch Review........................... 13 3.2.9 Social Media............................ 13 3.2.10 Other Sources..........................
    [Show full text]
  • Awoken Icon Theme - Installation & Customizing Instructions 1
    Awoken Icon Theme - Installation & Customizing Instructions 1 AWOKEN ICON THEME Installation & Customizing Instructions Alessandro Roncone mail: [email protected] homepage: http://alecive.deviantart.com/ Awoken homepage (GNOME Version): link kAwoken homepage (KDE Version): link Contents 1 Iconset Credits 3 2 Copyright 3 3 Installation 3 3.1 GNOME........................................................3 3.2 KDE..........................................................4 4 Customizing Instructions 4 4.1 GNOME........................................................4 4.2 KDE..........................................................5 5 Overview of the customization script6 5.1 How to customize a single iconset..........................................7 6 Customization options 8 6.1 Folder types......................................................8 6.2 Color-NoColor.................................................... 11 6.3 Distributor Logos................................................... 11 6.4 Trash types...................................................... 11 6.5 Other Options.................................................... 11 6.5.1 Gedit icon................................................... 11 6.5.2 Computer icon................................................ 11 6.5.3 Home icon................................................... 11 6.6 Deprecated...................................................... 12 7 How to colorize the iconset 13 8 Icons that don't want to change (but I've drawed) 14 9 Conclusions 15 9.1 Changelog......................................................
    [Show full text]
  • Debian and Ubuntu
    Debian and Ubuntu Lucas Nussbaum lucas@{debian.org,ubuntu.com} lucas@{debian.org,ubuntu.com} Debian and Ubuntu 1 / 28 Why I am qualified to give this talk Debian Developer and Ubuntu Developer since 2006 Involved in improving collaboration between both projects Developed/Initiated : Multidistrotools, ubuntu usertag on the BTS, improvements to the merge process, Ubuntu box on the PTS, Ubuntu column on DDPO, . Attended Debconf and UDS Friends in both communities lucas@{debian.org,ubuntu.com} Debian and Ubuntu 2 / 28 What’s in this talk ? Ubuntu development process, and how it relates to Debian Discussion of the current state of affairs "OK, what should we do now ?" lucas@{debian.org,ubuntu.com} Debian and Ubuntu 3 / 28 The Ubuntu Development Process lucas@{debian.org,ubuntu.com} Debian and Ubuntu 4 / 28 Linux distributions 101 Take software developed by upstream projects Linux, X.org, GNOME, KDE, . Put it all nicely together Standardization / Integration Quality Assurance Support Get all the fame Ubuntu has one special upstream : Debian lucas@{debian.org,ubuntu.com} Debian and Ubuntu 5 / 28 Ubuntu’s upstreams Not that simple : changes required, sometimes Toolchain changes Bugfixes Integration (Launchpad) Newer releases Often not possible to do work in Debian first lucas@{debian.org,ubuntu.com} Debian and Ubuntu 6 / 28 Ubuntu Packages Workflow lucas@{debian.org,ubuntu.com} Debian and Ubuntu 7 / 28 Ubuntu Packages Workflow Ubuntu Karmic Excluding specific packages language-(support|pack)-*, kde-l10n-*, *ubuntu*, *launchpad* Missing 4% : Newer upstream
    [Show full text]
  • Easy File Sharing with Nitroshare Xfce Power User Tips, Tricks
    Easy File Sharing with NitroShare Xfce Power User Tips, Tricks & Tweaks: File Utilities (Part Two) Running Multiple Commands From The Command Line Or A Bash Script Undo Gmail's Latest "Enhancements" Game Zone: Steel Storm: Burning Retribution PCLinuxOS Recipe Corner Testimonials From Veteran PCLinuxOS Users ms_meme's nook GIMP Tutorial: Masks Explained LibreOffice Tips & Tricks, Part 2 And Much More! PCLinuxOS Magazine Page 1 Table of Contents 3 Welcome From The Chief Editor Disclaimer 4 Easy File Sharing with NitroShare 1. All the contents of The PCLinuxOS Magazine are only for general information and/or use. Such contents do not constitute advice and should not be relied upon in making (or refraining from 5 Screenshot Showcase making) any decision. Any specific advice or replies to queries in any part of the magazine is/are the person opinion of such experts/consultants/persons and are not subscribed to by The 6 Xfce Power User Tips, Tricks & Tweaks: File Utilities (Part Two) PCLinuxOS Magazine. 12 Screenshot Showcase 2. The information in The PCLinuxOS Magazine is provided on an "AS IS" basis, and all warranties, expressed or implied of any kind, regarding any matter pertaining to any information, advice 13 PCLinuxOS Puzzled Partitions or replies are disclaimed and excluded. 16 Undo Gmail's Latest "Enhancements" 3. The PCLinuxOS Magazine and its associates shall not be liable, at any time, for damages (including, but not limited to, without limitation, damages of any kind) arising in contract, rot or 17 Game Zone: Steel Storm: Burning
    [Show full text]
  • 1. Why POCS.Key
    Symptoms of Complexity Prof. George Candea School of Computer & Communication Sciences Building Bridges A RTlClES A COMPUTER SCIENCE PERSPECTIVE OF BRIDGE DESIGN What kinds of lessonsdoes a classical engineering discipline like bridge design have for an emerging engineering discipline like computer systems Observation design?Case-study editors Alfred Spector and David Gifford consider the • insight and experienceof bridge designer Gerard Fox to find out how strong the parallels are. • bridges are normally on-time, on-budget, and don’t fall ALFRED SPECTORand DAVID GIFFORD • software projects rarely ship on-time, are often over- AS Gerry, let’s begin with an overview of THE DESIGN PROCESS bridges. AS What is the procedure for designing and con- GF In the United States, most highway bridges are budget, and rarely work exactly as specified structing a bridge? mandated by a government agency. The great major- GF It breaks down into three phases: the prelimi- ity are small bridges (with spans of less than 150 nay design phase, the main design phase, and the feet) and are part of the public highway system. construction phase. For larger bridges, several alter- There are fewer large bridges, having spans of 600 native designs are usually considered during the Blueprints for bridges must be approved... feet or more, that carry roads over bodies of water, preliminary design phase, whereas simple calcula- • gorges, or other large obstacles. There are also a tions or experience usually suffices in determining small number of superlarge bridges with spans ap- the appropriate design for small bridges. There are a proaching a mile, like the Verrazzano Narrows lot more factors to take into account with a large Bridge in New Yor:k.
    [Show full text]
  • V2616A Linux Software Manual
    V2616A Linux Software Manual First Edition, July 2014 www.moxa.com/product © 2014 Moxa Inc. All rights reserved. V2616A Linux Software Manual The software described in this manual is furnished under a license agreement and may be used only in accordance with the terms of that agreement. Copyright Notice © 2014 Moxa Inc. All rights reserved. Trademarks The MOXA logo is a registered trademark of Moxa Inc. All other trademarks or registered marks in this manual belong to their respective manufacturers. Disclaimer Information in this document is subject to change without notice and does not represent a commitment on the part of Moxa. Moxa provides this document as is, without warranty of any kind, either expressed or implied, including, but not limited to, its particular purpose. Moxa reserves the right to make improvements and/or changes to this manual, or to the products and/or the programs described in this manual, at any time. Information provided in this manual is intended to be accurate and reliable. However, Moxa assumes no responsibility for its use, or for any infringements on the rights of third parties that may result from its use. This product might include unintentional technical or typographical errors. Changes are periodically made to the information herein to correct such errors, and these changes are incorporated into new editions of the publication. Technical Support Contact Information www.moxa.com/support Moxa Americas Moxa China (Shanghai office) Toll-free: 1-888-669-2872 Toll-free: 800-820-5036 Tel: +1-714-528-6777 Tel: +86-21-5258-9955 Fax: +1-714-528-6778 Fax: +86-21-5258-5505 Moxa Europe Moxa Asia-Pacific Tel: +49-89-3 70 03 99-0 Tel: +886-2-8919-1230 Fax: +49-89-3 70 03 99-99 Fax: +886-2-8919-1231 Table of Contents 1.
    [Show full text]
  • Screenshot Showcase Texstar
    Volume 91 August, 2014 Templates: Google Docs Best "Hidden" Feature More Templates: Office Apps: Templates, LibreOffice Plus! Extend LibreOffice Capabilities Extensions & Extras With Extensions Cool Add-ins For LibreOffice & OpenOffice LibreOffice Macros Programming With GtkDialog, Part Five Inkscape Tutorial: Holiday Wallpaper PCLinuxOS Family Member Spotlight: Ramchu Inkscape Tutorial: Tracing A Logo Game Zone: Tank Riders AnPdCmLinourxeOinSsiMdae!gazine Page 1 Table Of Contents 3. Welcome From The Chief Editor 4. Templates: Google Docs Best “Hidden” Feature The PCLinuxOS name, logo and colors are the trademark of 6. Screenshot Showcase Texstar. 7. Inkscape Tutorial: Holiday Wallpaper The PCLinuxOS Magazine is a monthly online publication containing PCLinuxOS-related materials. It is published primarily for members of the PCLinuxOS community. The 9. PCLinuxOS Recipe Corner magazine staff is comprised of volunteers from the PCLinuxOS community. 10. ms_meme's Nook: Oh, Look At Me Now Visit us online at http://www.pclosmag.com 11. Extend LibreOffice Capabilities With Extensions This release was made possible by the following volunteers: 14. Cool Add-ins For LibreOffice & OpenOffice Chief Editor: Paul Arnote (parnote) Assistant Editor: Meemaw 15. Screenshot Showcase Artwork: ms_meme, Meemaw Magazine Layout: Paul Arnote, Meemaw, ms_meme 16. Programming With Gtkdialog, Part Five HTML Layout: YouCanToo 22. Screenshot Showcase Staff: ms_meme loudog Meemaw YouCanToo 23. More Templates: LibreOffice Plus! Gary L. Ratliff, Sr. Pete Kelly Daniel Meiß-Wilhelm Antonis Komis 24. Screenshot Showcase daiashi Smileeb Smileeb 25. LibreOffice Macros Contributors: 31. Screenshot Showcase zerocool Khadis 32. PCLinuxOS Puzzled Partitions 35. Game Zone: Tank Riders The PCLinuxOS Magazine is released under the Creative Commons Attribution-NonCommercial-Share-Alike 3.0 37.
    [Show full text]
  • V2616 Linux User's Manual Introduction
    V2616 Linux User’s Manual First Edition, October 2011 www.moxa.com/product © 2011 Moxa Inc. All rights reserved. V2616 Linux User’s Manual The software described in this manual is furnished under a license agreement and may be used only in accordance with the terms of that agreement. Copyright Notice © 2011 Moxa Inc. All rights reserved. Trademarks The MOXA logo is a registered trademark of Moxa Inc. All other trademarks or registered marks in this manual belong to their respective manufacturers. Disclaimer Information in this document is subject to change without notice and does not represent a commitment on the part of Moxa. Moxa provides this document as is, without warranty of any kind, either expressed or implied, including, but not limited to, its particular purpose. Moxa reserves the right to make improvements and/or changes to this manual, or to the products and/or the programs described in this manual, at any time. Information provided in this manual is intended to be accurate and reliable. However, Moxa assumes no responsibility for its use, or for any infringements on the rights of third parties that may result from its use. This product might include unintentional technical or typographical errors. Changes are periodically made to the information herein to correct such errors, and these changes are incorporated into new editions of the publication. Technical Support Contact Information www.moxa.com/support Moxa Americas Moxa China (Shanghai office) Toll-free: 1-888-669-2872 Toll-free: 800-820-5036 Tel: +1-714-528-6777 Tel: +86-21-5258-9955 Fax: +1-714-528-6778 Fax: +86-21-5258-5505 Moxa Europe Moxa Asia-Pacific Tel: +49-89-3 70 03 99-0 Tel: +886-2-8919-1230 Fax: +49-89-3 70 03 99-99 Fax: +886-2-8919-1231 Table of Contents 1.
    [Show full text]
  • Oracle Solaris 11.1 Package Lists Lists and Briefly Describes Packages That Are Installed by Default by the Different Oracle Solaris 11.1 Installers
    Oracle® Solaris 11.1 Package Lists Part No: E36136–01 October 2012 Copyright © 2009, 2012, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT END USERS. Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including anyoperating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs. No other rights are granted to the U.S. Government. This software or hardware is developed for general use in a variety of information management applications.
    [Show full text]
  • Oss NMC Rel9.Xlsx
    Open Source Software Packages for NMC XMP Release 9 Application License Publisher abattis-cantarell-fonts OFL https://git.gnome.org/browse/cantarell-fonts/ abrt GPLv2+ https://abrt.readthedocs.org/ abrt-addon-ccpp GPLv2+ https://abrt.readthedocs.org/ abrt-addon-kerneloops GPLv2+ https://abrt.readthedocs.org/ abrt-addon-pstoreoops GPLv2+ https://abrt.readthedocs.org/ abrt-addon-python GPLv2+ https://abrt.readthedocs.org/ abrt-addon-vmcore GPLv2+ https://abrt.readthedocs.org/ abrt-addon-xorg GPLv2+ https://abrt.readthedocs.org/ abrt-cli GPLv2+ https://abrt.readthedocs.org/ abrt-console-notification GPLv2+ https://abrt.readthedocs.org/ abrt-dbus GPLv2+ https://abrt.readthedocs.org/ abrt-desktop GPLv2+ https://abrt.readthedocs.org/ abrt-gui GPLv2+ https://abrt.readthedocs.org/ abrt-gui-libs GPLv2+ https://abrt.readthedocs.org/ abrt-libs GPLv2+ https://abrt.readthedocs.org/ abrt-python GPLv2+ https://abrt.readthedocs.org/ abrt-retrace-client GPLv2+ https://abrt.readthedocs.org/ abrt-tui GPLv2+ https://abrt.readthedocs.org/ accountsservice GPLv3+ https://www.freedesktop.org/wiki/Software/AccountsService/ accountsservice-libs GPLv3+ https://www.freedesktop.org/wiki/Software/AccountsService/ acl GPLv2+ http://acl.bestbits.at/ adcli LGPLv2+ http://cgit.freedesktop.org/realmd/adcli adwaita-cursor-theme LGPLv3+ or CC-BY-SA http://www.gnome.org adwaita-gtk2-theme LGPLv2+ https://gitlab.gnome.org/GNOME/gnome-themes-extra adwaita-icon-theme LGPLv3+ or CC-BY-SA http://www.gnome.org adwaita-qt5 LGPLv2+ https://github.com/MartinBriza/adwaita-qt aic94xx-firmware
    [Show full text]