Video: Spotlight on Extra Packages for Enterprise Linux (EPEL)

Download this video: [Ogg Theora]
Video by Islam Elsedoudi.
Produced by Kim Jokisch and Jesse Paddock.




We here at Red Hat are pleased to bring you a brand new set of videos aimed at showing off the latest and greatest enhancements in our technologies–featuring the very people who helped create them in the first place. The “SPOTLIGHT ON” series highlights the ways in which collaboration drives innovation by looking at projects that have been improved by community input. In our first installment, we track down Red Hat’s own Karsten Wade and Stephen Smoogen from the University of New Mexico to talk about Extra Packages for Enterprise Linux (EPEL), the Fedora-sourced repository of add-on packages for Red Hat Enterprise Linux. They discuss how EPEL is a tool for user-driven innovation that comes from and benefits enterprise customers with more stable code and lower business costs.


This isn’t your grandpappy’s dd command

co-authored with Grig Gheorghiu

Background

The dd command is one of those ancient UNIX tools that is extremely powerful, yet at the same time, the syntax can make it feel slightly archaic. A lot of seasoned sysadmins and developers still remember the first time they saw the dd command used by a bearded wizard. He might have used it to test the disk I/O, capture a disk image, or restore it.

In some ways, dd can seem like Old Spice–only the guys over 60 use it. But the younger generation should know that dd still has some tricks up its sleeve. In this article, we’re going to put a new twist on this old favorite and show how grandpappy really does know best sometimes. The new twist is to mix dd with Python and the Google Chart API to make a UNIX 2.0 mashup tool. (”UNIX 2.0″ is a play on words for what happens when you change the original behavior of a tool like dd to make it do something a bit different.) » Read more


Tips and tricks: What TCP/IP ports are required to be open on an RHN Satellite, Proxy or Client system?

For Satellite:
If the Satellite server is “connected”, then it will initiate outbound connections to ports 80 and 443 on the Red Hat Network (RHN) hosted service (rhn.redhat.com / satellite.rhn.redhat.com). Access to these hosts and ports should not be restricted to ensure correct functioning of the satellite system. If required, an HTTP(S) proxy may be used, by passing the “–http-proxy” option to the “satellite-sync” command.

If using a proxy server, Satellite will initiate connections to port 5222 on each proxy server connected. This is used for communications relating to the “OSA” service (also known as “Push to Client“). If using the OSA service, access to this port should not be restricted.

» Read more


ccmixter: Red Hat soundscape, shared with you

If you’ve ever watched a video from Red Hat Magazine, you’ve probably heard the soundtracks in the background. Whether it’s the remixable Birdsong video or one of our other interviews or overviews, the music we use is often created in-house by our soundscape specialist. Napoleon creates custom music and animations for various Red Hat projects, as well as commercial materials and custom beats, lyrics, and compositions. In his free time he enjoys sampling 70s soul records to create beats for local hip-hop artists. And now he’s here to share some of his work with you.

Everybody wants to be heard. Some of us have a rhythm to go along with it.

I was introduced to ccmixter a couple months ago and have been hooked ever since. It is a utopia of sound for music makers and mixers alike.

From acapellas and samples to remixes, ccmixter wants you to download, sample, cut-up, and share music of all types. Some artists post entire albums for the community to remix.

Best of all, it’s all licensed under Creative Commons so there’s no worries.

Check out my page of remixes.

If you create a remix and want to get in touch with Napoleon–or just have a question–feel free to leave a comment (or contact information) on this post.


Tips and tricks: How do I force users to change their passwords upon first login?

1.) Firstly, lock the account to prevent the user from using the login until the change has been made:

# usermod -L <username>

2.) Change the password expiration date to 0 to ensure the user changes the password during the next login:

# chage -d 0 <username>

3.) To unlock the account after the change do the following:

# usermod -U <username>

» Read more


Friday roundup

  • How will we get our media in the future? The Digital Entertainment Content Ecosystem (DECE) may have something to say about that. From Newsweek.
  • If you’re not following the Mars Phoenix on Twitter, you totally should be. Because a robot that celebrates Talk Like A Pirate Day… from Mars? Awesome.
  • In honor of Richard Wright’s passing this week, check out this Pink Floyd / 2001: A Space Oddity synch in Wired.
  • Keeping an eye on web stuff: Does the web need an indicator of its truthiness? Tim Berners-Lee thinks so. And, in other news, the Web 2.0 expo seemed to take place without much of a downturn, even with the rough US economic news. (Wired, again.)
  • And to round out the Wired trifecta–and suggest a celebratory activity for this most festive (Arrrr!) day–we give you Pirate like a Pirate. Ahoy, matey, and set the sails for the weekend!

The power of Collaborative Innovation

With 1.4 billion people connected, the Internet is the greatest collaborative network that mankind has experienced. One of the consequences of the growth of this network is a shift in the way knowledge is being created and distributed. As we move to an interconnected world, the balance of power is shifting from old, proprietary models of knowledge creation to the open source model that emphasizes collaboration and sharing. From management gurus to consulting firms to leading business schools, everyone is taking note of this new phenomenon that goes by various names like ‘Collaborative Innovation,’ ‘Open Innovation,’ or ‘Distributed Co-creation.’

The open source movement has pioneered the Collaborative Innovation trend, and it is no surprise that the rapid growth of the Internet and the equally rapid growth of the open source community have mirrored each other. The Linux® operating system and Wikipedia website are both good examples of open source projects that embody the ideals of Collaborative Innovation. And those in the technology industry aren’t the only ones to take notice. Policy makers and corporate leaders in all markets are exploring how this powerful trend can be harnessed for social and economic development. » Read more


Tips and tricks: How do I add raw device mapping in Red Hat Enterprise Linux 5?

Answer:

The raw devices interface has been deprecated in Red Hat® Enterprise Linux® 5. The rawdevices service and /etc/sysconfig/rawdevices file no longer exist and raw devices are now configured via udev rules. However the preferred method for performing raw I/O (ie. bypassing filesystem caching) is to open EXT3/EXT2 files with the O_DIRECT flag.

This is an excerpt from the raw command’s man page:

Although  Linux  includes  support  for rawio, it is now a deprecated interface. If your application performs device access using this
interface, Red Hat encourages you to modify your application to open the block device with the O_DIRECT flag. The rawio interface will
exist for the life of Red Hat Enterprise Linux 5, but is a candidate for removal from future releases.

» Read more