56 Screen Resolution Migrating Settings KNOW

Total Page:16

File Type:pdf, Size:1020Kb

56 Screen Resolution Migrating Settings KNOW KNOW-HOW Ask Klaus! ASK KLAUS! to report the right configuration options. If you use the “persistent Knoppix This is usually 1024x768 in 75Hz. If your image” feature, the automatically cre- notebook has a native 1280x800 resolu- ated /etc/X11/xorg.conf file will be tion, and it is not DDC-capable (i.e., reused on the next boot, so you don’t Klaus Knopper is the creator of Knoppix cannot read this information have to enter the boot options again. Knoppix and co-founder of the from the graphics adapter and display), To manually configure your X Server, you only get the 1024x768 resolution. you can use LinuxTag expo. He currently To change this, boot with the follow- ing options, entered at the boot prompt: works as a teacher, program- dpkg-reconfigure xserver-xorg mer, and consultant. If you have knoppix screen=1280x800 U in Debian. vga=normal a configuration problem, or if Migrating Settings The vga=normal stays in text mode I have been a subscriber to your you just want to learn more until the X Server is started. It’s probably magazine from the beginning, about how Linux works, send not necessary if your notebook handles but I have the following prob- the framebuffer mode 1024x768 well lem. I had a web server, with SQL, your questions to: using resolution scaling. email, etc. on a Pentium II machine. You may have to add horizontal and/ Now I have updated my hardware to klaus@linux-magazine. com or vertical frequencies according to your Pentium 4 with dual core and a mother- computer’s technical specs in the man- ual: Listing 1: Mount Flags Screen Resolution 01 mkdir /mysystem I’m using the Knoppix distribu- knoppix screen=1280x800 U tion and very much like it. Be- hsync=90 vsync=75 02 mount -o dev,suid /dev/hda2 / cause I’m a beginning Linux mysystem user, though, I am having some prob- Some other live distros use the maxi- 03 mount -o dev,suid /dev/hda5 / lems. The screen resolution in my porta- mum resolution and let the graphics card mysystem/home ble computer is 1280x800, but this mode handle out-of-range conditions, thus giv- 04 mount -o dev,suid /dev/hda6 / is not available on my system. I’ve heard ing better initial settings for high resolu- mysystem/var there is a solution for this, but I am hav- tion monitors without needing boot op- 05 mount --bind /proc /mysystem/ ing difficulties finding it. Please give me tions. But if you have fried an old VGA proc some advice. Video card drivers are pres- monitor once like I did (including white ent. My video adaptor is Intel Mobile smoke, noise, and stench, not a pretty 06 mount --bind /sys /mysystem/ 915GM; the default modes, which are sight) using too high resolutions and fre- sys found by Knoppix (hotplug , I think), are quencies, you tend to be more cautious 07 mount --bind /tmp /mysystem/ 1024x768 and 800x600. not to ruin old hardware; that’s why tmp Knoppix is very conservative about reso- 08 # If you are using udev, you Knoppix tries to run only safe lutions and frequencies unless you either will also need this: resolutions and frequencies on have a monitor that reports its preferred 09 mount --bind /dev /mysystem/ your graphics adapter and moni- settings properly, or you specify boot op- dev tor by default, if the hardware is not able tions that do the trick. 56 ISSUE 74 JANUARY 2007 WWW.LINUX - MAGAZINE.COM Ask Klaus! KNOW-HOW board with an integrated RAID control- piled in, instead of loading modules on If you don’t like the sound of the “quick ler. demand. way,” you may be better off with the My question is, how can I migrate all I would recommend you at least stati- other solution, which I would call the my data and configurations to my new cally compile in everything that’s needed “right way.” This approach requires in- machine? Bear in mind that my current for mounting the root filesystem, so you stalling an up-to-date operating system kernel is 2.4 and now I will have to won’t need an initial ramdisk. Marking and all needed applications, then migrat- migrate to 2.6.16. testing, which is the the controller and the needed file ing the configuration files and data. only kernel that recognizes my RAID system(s) with y in make menuconfig of This is the method I would recom- controller. the kernel can make testing, upgrading, mend to provide a clean start, get rid of and debugging your system much easier, obsolete programs (with potential secu- Moving the operating system, because it keeps initrd/ initramfs and rity flaws), and reach a state-of-the-art applications, and data to a new module-related problems out of the criti- system that’s easier to keep up to date. machine is a common task, yet cal boot phase. This method requires somewhat more it is not always easy to find the best In case something goes wrong, you work, though, especially when configu- strategy to do this. can use a Kernel 2.6-based live CD to ration files have changed in syntax and There are basically two strategies. The find out what you have forgotten in location. Also, finding out which files quick solution is to try to move all data, order to get the copied system up and need to be transferred, and which ones including the operating system, libraries, running (see below). have been changed from the default and everything else, and then just So, the sequence would be: setup, is not always easy if you did not exchange the kernel to match the new 1. Copy everything to the new machine, write down a log of changes you made hardware. either with a 1:1 copy of your hard over the past years. (Almost nobody This strategy is probably the fastest disk, or remotely to one or many documents changes on their own servers way, but it is only possible if the hard- freshly formated and mounted parti- well enough. I don’t either, but I know ware architecture does not change in a tions on the new server. I recommend people must exist somewhere who do.) way that your applications (compiled for you type: Anyway, using this strategy, you a specific processor) won’t run anymore. rsync -Hav old_root_dir [root@U would first partition the new system and When moving from a Pentium II, in your remote-machine:] new_root_dir install Debian (as an example) from example, to a Pentium 4, this should not as root user in both cases. scratch, including all programs and ser- be a big problem. The only thing you 2. Configure and compile a new kernel vices you will need. It’s not always suffi- need to do is configure and compile the on the new machine, and at least up- cient to check on your old system with new kernel to match your hardware. date modutils. You may find it useful When moving from Kernel 2.4 to 2.6, to (as root) chroot to new_partition on ps auxw you will have to update at least your the new machine, so you are already modutils (modprobe, insmod,rmmod) working “inside” your copied system, to see what servers are running. (netstat because the module handling has if you can’t boot directly with the old -tulpe is also a good way to see what’s changed in 2.6 in a way that modutils kernel or the new one is not yet work- currently listening for connection re- from 2.4 simply won’t work anymore. ing right because you forgot some- quests.) There may be support programs Of course, you could as well use a static thing in the configuration. Please note or libraries (such as php) that don’t kernel with everything you need com- the comment about chroot below. show up directly in the list of processes. Use dpkg -l or rpm -qa on your old ma- Rescuing Your System chine to see what’s installed, and write If you wish to repair or update an in- Note that Listing 1 is only an example down all packages that you will proba- stalled system that cannot boot directly, that most likely will not match your fstab bly need. It’s usually a long list. you can use a “rescue system.” Some entries: After your new system is up and run- root server hosting providers offer this The last --bind mount is useful if you ning (including the perfect kernel for service in the form of a network-booting want to have access to a running X your hardware setup), you will have to (diskless) rescue boot that allows you to Server through its socket in /tmp, from transfer and maybe rewrite your configu- mount partitions and change files on inside the yet-to-be-handled chroot ration files for all services. I would rec- your server even if the system installed system. ommend doing this option-by-option in on disk is woefully defective and in a Now, provided that the partitions have each config file, because, if you also non-booting state. (You can also use been mounted in the correct order Knoppix for this rescue task, eventually switched from Apache 1.3 to the 2.x ver- (check etc/fstab in the root partition with a knoppix.sh script that starts an sion, for instance, the syntax and loca- again), you should be able to SSH server with your ssh key so you can tion of the config files will change, and perform a remote login.) chroot /mysystem trying to just copy the configuration files As soon as the rescue system is up, and, until you exit this shell, you can is most likely a very bad idea that can in- mount the hard disk partitions in the work inside the previously installed troduce security holes by enabling add- correct order and hierarchy.
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]
  • Open Source Projects As Incubators of Innovation
    RESEARCH CONTRIBUTIONS TO ORGANIZATIONAL SOCIOLOGY AND INNOVATION STUDIES / STUTTGARTER BEITRÄGE ZUR ORGANISATIONS- UND INNOVATIONSSOZIOLOGIE SOI Discussion Paper 2017-03 Open Source Projects as Incubators of Innovation From Niche Phenomenon to Integral Part of the Software Industry Jan-Felix Schrape Institute for Social Sciences Organizational Sociology and Innovation Studies Jan-Felix Schrape Open Source Projects as Incubators of Innovation. From Niche Phenomenon to Integral Part of the Software Industry. SOI Discussion Paper 2017-03 University of Stuttgart Institute for Social Sciences Department of Organizational Sociology and Innovation Studies Seidenstr. 36 D-70174 Stuttgart Editor Prof. Dr. Ulrich Dolata Tel.: +49 711 / 685-81001 [email protected] Managing Editor Dr. Jan-Felix Schrape Tel.: +49 711 / 685-81004 [email protected] Research Contributions to Organizational Sociology and Innovation Studies Discussion Paper 2017-03 (May 2017) ISSN 2191-4990 © 2017 by the author(s) Jan-Felix Schrape is senior researcher at the Department of Organizational Sociology and Innovation Studies, University of Stuttgart (Germany). [email protected] Additional downloads from the Department of Organizational Sociology and Innovation Studies at the Institute for Social Sciences (University of Stuttgart) are filed under: http://www.uni-stuttgart.de/soz/oi/publikationen/ Abstract Over the last 20 years, open source development has become an integral part of the software industry and a key component of the innovation strategies of all major IT providers. Against this backdrop, this paper seeks to develop a systematic overview of open source communities and their socio-economic contexts. I begin with a recon- struction of the genesis of open source software projects and their changing relation- ships to established IT companies.
    [Show full text]
  • Software Wars, Business Strategies and IP Litigation
    Software Wars, Business Strategies and IP Litigation Immediately after Oracle America filed a patent infringement suit against Google Inc. in August 2010 the trade press labelled this a “software war.” Their interest was a trial featuring Oracle’s “star” counsel David Boies. In mid-January often cited Florian Mueller of NoSoftwarePatents, wrote “Google is patently too weak to protect Android—Google’s cell phone software.”1 (On April 4 Lead bidder Google offered $900 million for Nortel’s 6,000 patents and applications. A decision is expected in June}. By the end of March he had counted 39 patent infringement suits against Google.2 Whether Oracle wins Oracle v Google or not, Oracle and IBM may become losers. It is important that Oracle not alienate the software development community or its customers as it attempts to monetise the assets from the Sun Microsystems—now Oracle America— acquisition. The Oracle v. Google complaint was carefully targeted at Google’s Android software, avoiding the appearance of monetising the Java language and platform itself. The Android software was developed as open source in conjunction with the Open Handset Alliance. Android's mobile operating system is based on a modified version of the Linux kernel, subject to Linux patents. Google published all of the computer code under an Apache Software Foundation License.3 This license is royalty-free and places no restrictions on derivative products or commercial use. Based on IDC market share estimates by the fourth quarter of 2010, Android phones had 39% of the market. An Oracle asset gained through the acquisition of Sun was the OpenOffice open-source software—one of the only remaining substantial “competitors” to Microsoft’s document processing applications.
    [Show full text]
  • 60 External USB Hard Drive KNOW-HOW 60
    KNOW-HOW Ask Klaus! ASK KLAUS! during unmounting, and lost data results I edit an existing script that already on a frequent basis when I disconnect comes with Fedora 7 (as used by the the device. desktop), to resolve the problem? Or is The drive heads are not stopped ei- this behavior compiled in? Klaus Knopper is the creator of ther, and a strange whirring chirp sound I believe the “eject” feature used by Knoppix and co-founder of the occurs when unplugging the drive while Gnome is only meant for flash memory the platters are still spinning. drives such as USB keys, where there is LinuxTag expo. He currently I searched Google and found a shell no concept of flushing the data in RAM script to properly unmount the drive, to the magnetic storage medium and works as a teacher, program- and it uses a tool called sdparm to sync stopping the heads, and hence it is a mer, and consultant. If you have and stop the drive heads before physi- rather simple solution for unmounting cally disconnecting the USB hard drive. I that is not suitable for external portable a configuration problem, or if did not have sdparm installed by default hard drives. from my Fedora 7 distribution (obtained Thanks in advance for considering this you just want to learn more through a Linux Magazine DVD) and Linux hardware challenge. about how Linux works, send had to search and install the tool myself using the package manager. (Zenity mes- The quite long script you sent your questions to: sage boxes also had to be installed for can be reduced to (more or less) this script.) this skeleton: klaus@linux-magazine.
    [Show full text]
  • Getting Started with Ubuntu and Kubuntu
    Getting Started With Ubuntu and Kubuntu IN THIS PART Chapter 1 The Ubuntu Linux Project Chapter 2 Installing Ubuntu and Kubuntu Chapter 3 Installing Ubuntu and Kubuntu on Special-Purpose Systems COPYRIGHTED MATERIAL 94208c01.indd 1 3/16/09 11:43:23 PM 94208c01.indd 2 3/16/09 11:43:24 PM The Ubuntu Linux Project ersonal computers and their operating systems have come a long way since the late 1970s, when the first home computer hit the market. At IN THIS cHAPTER that time, you could only toggle in a program by flipping switches on the P Introducing Ubuntu Linux front of the machine, and the machine could then run that program and only that program until you manually loaded another, at which time the first program Choosing Ubuntu was kicked off the system. Today’s personal computers provide powerful graph- ics and a rich user interface that make it easy to select and run a wide variety of Reviewing hardware and software concurrently. software requirements The first home computer users were a community of interested people who just Using Ubuntu CDs wanted to do something with these early machines. They formed computer clubs and published newsletters to share their interests and knowledge ​— ​and often the Getting help with Ubuntu Linux software that they wrote for and used on their machines. Sensing opportunities and a growing market, thousands of computer companies sprang up to write and Getting more information sell specific applications for the computer systems of the day. This software ranged about Ubuntu from applications such as word processors, spreadsheets, and games to operating systems that made it easier to manage, load, and execute different programs.
    [Show full text]
  • LINUX JOURNAL | Issue 284 | March 2018
    What’s New Shell Scripting Raspberry Pi in Qubes 4 Security Alternatives Since 1994: The original magazine of the Linux community DEEP DIVE BLOCKCHAIN PLUS POSTGRESQL 10 The Latest and Most Interesting Features BITCOIN AND TAXES Cryptocurrency and Uncle Sam LINUXBOOT FOSS Project Spotlight ISSUE 284 | MARCH 2018 www.linuxjournal.com MARCH 2018 CONTENTS ISSUE 284 DEEP DIVE: Blockchain 95 Blockchain, Part I: Introduction and Cryptocurrency by Petros Koutoupis What makes both bitcoin and blockchain so exciting? What do they provide? Why is everyone talking about this? And, what does the future hold? 105 Blockchain, Part II: Configuring a Blockchain Network and Leveraging the Technology by Petros Koutoupis How to set up a private etherium blockchain using open-source tools and a look at some markets and industries where blockchain technologies can add value. 2 | March 2018 | http://www.linuxjournal.com CONTENTS 6 From the Editor—Doc Searls Help Us Cure Online Publishing of Its Addiction to Personal Data UPFRONT 18 FOSS Project Spotlight: LinuxBoot by David Hendricks, Ron Minnich, Chris Koch and Andrea Barberio 24 Readers’ Choice Awards 26 Shorter Commands by Kyle Rankin 29 For Open-Source Software, the Developers Are All of Us by Derek Zimmer 32 Taking Python to the Next Level by Joey Bernard 37 Learning IT Fundamentals by Kyle Rankin 40 Introducing Zero-K, a Real-Time Strategy Game for Linux by Oflameo 45 News Briefs COLUMNS 46 Kyle Rankin’s Hack and / What’s New in Qubes 4 52 Reuven M. Lerner’s At the Forge PostgreSQL 10: a Great New Version for a Great Database 64 Shawn Powers’ The Open-Source Classroom Cryptocurrency and the IRS 72 Zack Brown’s diff -u What’s New in Kernel Development 76 Susan Sons’ Under the Sink Security: 17 Things 86 Dave Taylor’s Work the Shell Shell Scripting and Security 178 Glyn Moody’s Open Sauce Looking Back: What Was Happening Ten Years Ago? LINUX JOURNAL (ISSN 1075-3583) is published monthly by Linux Journal, LLC.
    [Show full text]
  • Q8:BËJ B<IE<C E<NJ
    GIF>I8DD@E> Kernel News Q8:BËJB<IE<CE<NJ JkXkljf]?>8=iXd\Yl]]\i I\dfm`e^=`idnXi\]ifd ?\cg`e^8lkfdXk\B\ie\c ;i`m\i k_\B\ie\cKi\\ 9l`c[j The HGA Framebuffer driver is no longer David Woodhouse wants to remove all Clifford Wolf has written a new makefile maintained. Roland Kletzing confirmed third-party firmware out of the kernel target, no2modconfig. Ordinarily, when that the official maintainer, Ferenc Ba- source tree. David is in favor of letting the you configure your kernel for compila- konyi, has not had the relevant hardware kernel load arbitrary blobs of firmware tion, any option in which you type N since 2001. Thus, the MAINTAINERS code (provided the resulting binary can will not be compiled. With no2modcon- entry is completely out of date and Ro- be distributed legally under its license), fig, those items are compiled into mod- land has posted a patch to remove it. but he doesn’t think such things belong ules. Apparently, this is useful for auto- in the kernel. He’s working on creating a generating kernels. =flik_$GXikp;i`m\ij6 separate git tree for all of them. Sam Ravnborg, it turns out, has some Michael Buesch has been designing A number of replies dissented from patches that do what Clifford wants in a and building his own hardware devices this. Most folks were in favor of isolating way that uses the existing allmodconfig and recently asked whether he should firmware into a single location, but taking build target with a predetermined base submit drivers for that hardware or just it out of the tree seemed too much be- config file.
    [Show full text]
  • Linux Magazine Calendar 2011
    LINUX MAGAZINE CALENDAR 2011 www.opensuse.org JANUARY FEBRUARY MARCH APRIL MAY JUNE JULY AUGUST SEPTEMBER OCTOBER NOVEMBER DECEMBER Linux Magazine #123 3/1 to 3/5: Cebit, Linux Magazine #132 01 S on sale (UK) 01 T 01 T Hannover, Germany 01 F 01 S 01 W 01 F 01 M 01 T 01 S on sale (UK) 01 T 01 T 1293836400 1296514800 1298934000 1301612400 1304204400 1306882800 1309474800 1312153200 31 CW 1314831600 1317423600 1320102000 1322694000 Linux Magazine #126 Linux Magazine #129 on sale (UK), 4/2 to 4/6: 02 S 02 W 02 W 02 S 02 M 02 T 02 S on sale (UK) 02 T 02 F 02 S 02 W 02 F 1293922800 1296601200 1299020400 1301698800 CGO symposium, Chamonix 1304290800 18 CW 1306969200 1309561200 1312239600 1314918000 1317510000 1320188400 1322780400 5/3 to 5/6: Red Hat Linux Magazine #131 Linux Magazine #134 Summit und Jboss World, 03 M 03 T 03 T 03 S 03 T 03 F 03 S 03 W 03 S on sale (UK) 03 M 03 T 03 S on sale (UK) CW 01 CW 1294009200 1296687600 1299106800 1301785200 1304377200 Boston 1307055600 1309647600 1312326000 1315004400 1317596400 40 CW 1320274800 1322866800 Linux Magazine #128 12/4. to 12/9: LISA 04 T 04 F 04 F 04 M 04 W 04 S on sale (UK) 04 M 04 T 04 S 04 T 04 F 04 S Conference, Boston, USA CW 14 CW 1294095600 1296774000 1299193200 1301871600 1304463600 1307142000 1309734000 27 CW 1312412400 1315090800 1317682800 1320361200 1322953200 Linux Magazine #124 Linux Magazine #125 Linux Magazine #133 on sale (UK) – 2/5 to 2/6: 05 W 05 S 05 S on sale (UK) 05 T 05 T 05 S 05 T 05 F 05 M 05 W 05 S on sale (UK) 05 M CW 36 1294182000 1296860400 Fosdem 2011, Brussels
    [Show full text]
  • Open Source Summit & Embedded Linux Conference Europe 2019
    Open Source Summit & Embedded Linux Conference Europe 2019 Event Report October 28–30, 2019 Lyon, France THE LINUX FOUNDATION OTHEPEN LINUX FO UNDSOURCEATION SUMMIT OPEN SOURCEEUROP SUE MMIT EUROPE Europe Europe Europe Europe Open Source Summit & Embedded Linux Conference Europe 2019 attracted more than 2,100 developers and technologists from 1,150 organizations around the globe for collaboration and education. This year’s event attracted a strong mix of professionals from across the open source ecosystem, including nearly 300 senior executive and C-level professionals. Developers and architects comprised 62% of 2019 attendees. Overall, 69% of attendees were in technical positions. Open Source Summit & ELC Europe 2019 welcomed attendees from 67 countries with 59% of attendees hailing from Europe and 17% from North America. 56% of attendees were at the event for the first time. Of attendees surveyed, 36% attend only one conference annually, while 88% attend 4 or fewer conferences a year, making Open Source Summit & ELC Europe a valuable place to connect with this audience. 98% of attendees surveyed said that this year’s events were a valuable use of their time. Exceptional Content Featuring more than 300 keynote, breakout, and birds of a feather sessions, along with speaker office hour sessions, tutorials and workshops, Open Source Summit & ELC Europe 2019 delivered outstanding content across a variety of important open source topics: AI, Best Practices for OS Development, Infrastructure & Automation, Compliance, Diversity, Embedded Development, Linux Systems, Growing & Sustaining OS Communities, Networking & Edge, IoT, Security & Safety. The combined calls for proposals across both events drew nearly 900 submissions, giving program committees the challenging job of selecting talks, but providing top-tier content for attendees.
    [Show full text]
  • Getting Started with User-Mode Linux LINUX in LINUX User-Mode Linux Feels Like Linux Because It Is Linux
    LINUXCOVER USERSTORY SchlagwortUser-Mode sollte Linux hier stehen Getting started with User-Mode Linux LINUX IN LINUX User-Mode Linux feels like Linux because it is Linux. You’ll find a hundred uses for this fast and sensible virtual Linux system. BY FABRIZIO CIACCHI www.sxc.hu he popular Tand versatile User-Mode Linux (UML) [1] creates a fully operatational virtual Linux system about a wants to com- on a Linux host. UML has many uses in new or municate with a the Linux world. Developers rely on untested patch. device (for instance, to UML to test their applications without System administrators display something on a monitor, putting the host system at risk. Linux use UML to test system con- print a document, or copy a file to a users run UML to experiment with ker- figurations. You can even run multiple floppy), the process asks the Linux nel versions without having to worry versions of UML on the same host to kernel to manage the communication simulate a network. with the hardware (Figure 1). SELinux into UML User-Mode Linux is a Linux kernel There is a very interesting document What is User-Mode Linux? that runs in Linux as a process. The dif- that explain how to set up an SELinux- User-Mode Linux is not really an emula- ference between a UML kernel and an enabled UML system at [15]. An tor, nor is it an API. The best way to ordinary kernel is that the UML kernel SELinux-enabled UML can be very use- explain User-Mode Linux is to start with does not communicate directly with the ful for creating more secure servers and a look at the role of the Linux kernel.
    [Show full text]
  • Econstor Wirtschaft Leibniz Information Centre Make Your Publications Visible
    A Service of Leibniz-Informationszentrum econstor Wirtschaft Leibniz Information Centre Make Your Publications Visible. zbw for Economics Schrape, Jan-Felix Working Paper Open source projects as incubators of innovation: From niche phenomenon to integral part of the software industry SOI Discussion Paper, No. 2017-03 Provided in Cooperation with: Institute for Social Sciences, Department of Organizational Sociology and Innovation Studies, University of Stuttgart Suggested Citation: Schrape, Jan-Felix (2017) : Open source projects as incubators of innovation: From niche phenomenon to integral part of the software industry, SOI Discussion Paper, No. 2017-03, Universität Stuttgart, Institut für Sozialwissenschaften, Abteilung für Organisations- und Innovationssoziologie, Stuttgart This Version is available at: http://hdl.handle.net/10419/158016 Standard-Nutzungsbedingungen: Terms of use: Die Dokumente auf EconStor dürfen zu eigenen wissenschaftlichen Documents in EconStor may be saved and copied for your Zwecken und zum Privatgebrauch gespeichert und kopiert werden. personal and scholarly purposes. Sie dürfen die Dokumente nicht für öffentliche oder kommerzielle You are not to copy documents for public or commercial Zwecke vervielfältigen, öffentlich ausstellen, öffentlich zugänglich purposes, to exhibit the documents publicly, to make them machen, vertreiben oder anderweitig nutzen. publicly available on the internet, or to distribute or otherwise use the documents in public. Sofern die Verfasser die Dokumente unter Open-Content-Lizenzen (insbesondere CC-Lizenzen) zur Verfügung gestellt haben sollten, If the documents have been made available under an Open gelten abweichend von diesen Nutzungsbedingungen die in der dort Content Licence (especially Creative Commons Licences), you genannten Lizenz gewährten Nutzungsrechte. may exercise further usage rights as specified in the indicated licence.
    [Show full text]
  • Linux Magazine Calendar 2011
    LINUX MAGAZINE CALENDAR 2011 www.opensuse.org JANUARY FEBRUARY MARCH APRIL MAY JUNE JULY AUGUST SEPTEMBER OCTOBER NOVEMBER DECEMBER Linux Magazine #123 3/1 to 3/5: Cebit, Linux Magazine #132 01 S on sale (UK) 01 T 01 T Hannover, Germany 01 F 01 S 01 W 01 F 01 M 01 T 01 S on sale (UK) 01 T 01 T 1293836400 1296514800 1298934000 1301612400 1304204400 1306882800 1309474800 1312153200 31 CW 1314831600 1317423600 1320102000 1322694000 Linux Magazine #126 Linux Magazine #129 on sale (UK), 4/2 to 4/6: 02 S 02 W 02 W 02 S 02 M 02 T 02 S on sale (UK) 02 T 02 F 02 S 02 W 02 F 1293922800 1296601200 1299020400 1301698800 CGO symposium, Chamonix 1304290800 18 CW 1306969200 1309561200 1312239600 1314918000 1317510000 1320188400 1322780400 5/3 to 5/6: Red Hat Linux Magazine #131 Linux Magazine #134 Summit und Jboss World, 03 M 03 T 03 T 03 S 03 T 03 F 03 S 03 W 03 S on sale (UK) 03 M 03 T 03 S on sale (UK) CW 01 CW 1294009200 1296687600 1299106800 1301785200 1304377200 Boston 1307055600 1309647600 1312326000 1315004400 1317596400 40 CW 1320274800 1322866800 Linux Magazine #128 12/4. to 12/9: LISA 04 T 04 F 04 F 04 M 04 W 04 S on sale (UK) 04 M 04 T 04 S 04 T 04 F 04 S Conference, Boston, USA CW 14 CW 1294095600 1296774000 1299193200 1301871600 1304463600 1307142000 1309734000 27 CW 1312412400 1315090800 1317682800 1320361200 1322953200 Linux Magazine #124 Linux Magazine #125 Linux Magazine #133 on sale (UK) – 2/5 to 2/6: 05 W 05 S 05 S on sale (UK) 05 T 05 T 05 S 05 T 05 F 05 M 05 W 05 S on sale (UK) 05 M CW 36 1294182000 1296860400 Fosdem 2011, Brussels
    [Show full text]