» tagged pages
» logout
opensuse
Return to opensuse

Planet SuSE

(or Cancel)

(Editing anonymously: to be credited for your changes, login or register a new account)

other page actions:

Tags Applied to this Topic

1 person has tagged this page:

opensuse Wiki Pages

Friday, July 25, 2008

Novell User Communities: SLES: Automatic network configuration and eDirectory configuration for bootable VMware images

Set up your SLES 10 VMware image to automatically create virtual network adapters at boot time and configure the eDirectory configuration file for newly acquired DHCP addresses during boot.

read more

Friday, July 25, 2008

Frank Seidel: Bluetooth headset with openSUSE 11.0

Well, this turned out to be some kind of adventure. At least when you need it urgently to work as expected on a business trip. -(

Seems we need much more testing in this area. Anybody volunteering to provide me some more hardware of this area so i can make sure it works in future? -) (e.g. bluetooth stereo headset etc.)

I have to admit until now I hadn’t much to do with bluetooth at all, but after a salesman here in Ottawa (here for OLS) advertised me this thing would work nicely under linux.. i somehow expected we’d do nice here, but to my frustration i found we have plenty of room for improvement here.

To make it short, after a lot of hours going through hundreds all different howtos and documentation i really was desperate i never would get this thing workin… when i finally realized our packages are broken in 11.0. Or at least bluez-audio which contains libaudio.so that seems to segfault immediatelly after connecting to the device :-(. Fortunatelly the latest factory rpms have this fixed and also work on a 11.0 system.

Download them either from official factory repo or from seifes home buildservice project.

Please be aware that i am absolutely no bluetooth expert and all this might just be crap and i was just lucky this worked by chance for me, but perhaps this is also helpful for some more (but try on your own risks..).

After you upgraded your bluez* packages and installed bluez-audio you can make the headphone functionality make work with two simple files to create, but that solution won’t work for simultanious voice transfer for current voip softphones (like e.g. ekiga, kcall, xten etc.).

But if thats enough just:

  1. Install new bluez* packages (including bluez-audio) from above
  2. as root create the file /etc/bluetooth/audio.service with this content:
    [Bluetooth Service]
    Identifier=audio
    Name=Audio service
    Description=Bluetooth Audio service
    Autostart=true
  3. as normal user create the file ~/.asoundrc (yes, really in your home directory) with this content:
    pcm.bluetooth {
    type bluetooth
    device “00:00:00:00:00:00″
    profile “auto”
    }

    (with the address after device being that of your bluetooth headset; findable e.g. via kbluetooth or with hcitool scan on pairing)
  4. restart bluetooth service (rcbluetooth restart as root)

From then on you have new alsa device called “bluetooth” many newer audio-/multimediaplayers can acces (e.g. for mplayer: mplayer -ao alsa:device=bluetooth ….).

Sadfully for e.g. ekiga and other softphones this does not work. There we have to use/ i had to use the old snd-bt-sco module so i get a new additionall complete sound device. When back in germany or when time permits i’ll package this so this will just be simple kmp package to install, but for now heres a tar ball with the fixed sources (so they compile with a 11.0 kernel).

  1. Deactivate above method by setting Autostart to false in /etc/bluetooth/audio.service
  2. Download and extract the tar ball fseidels-btsco-05a.tar.bz2
  3. cd into the new dir and issue (as normal user) “./configure
  4. then “make
  5. and as root in that directory a “make install
  6. if not already done install kernel-source package
  7. cd /usr/src/linux
  8. as root “make cloneconfig
  9. as root “make prepare
  10. cd back to the btsco directoy and there cd into its kernel subdirectoy
  11. issue a “make
  12. copy the snd_bt_sco.ko module to /lib/modules/$(uname -r)/weak-updates/ (as root)
  13. issue a “depmod -a” (as root)

To start/use it

  1. restart bluetooth service
  2. pair your headset (e.g. with help from kbluetooth)
  3. issue “hciconfig hci0 voice 0x0060” as root
  4. issue a modprobe snd_bt_sco as root
  5. start “btsco 00:00:00:00:00” (as root; with the address parameter being that of your headset)
  6. chmod 666 /dev/dsp1 (as root)
  7. chmod 666 /dev/mixer1 (as root)
  8. as root issue “alsamixer -c 1” to adjust volume settings

now you have a workin new /dev/dsp1 sound device you can set in the audio settings of ekiga and other voip softphones and use it like expected. -)

Hope this helps anybody and hopefully i will soon find the time to package this up as decent kmp with automated udev-rules so it gets easier to use.

Friday, July 25, 2008

Novell User Communities: SLES: Success Story: Georgetown McDonough School of Business

Learn how Georgetown University's McDonough School of Business used Novell Open Enterprise Server running SUSE Linux Enterprise to consolidate servers by 90 percent and cut implementation time for new applications by 50 percent!

read more

Friday, July 25, 2008

Christopher Hobbs: Happy sysadmin day!

Just wanted to drop a quick note to say thanks to all the IT/IS workers out there!  Today is your day!

http://www.sysadminday.com/

Friday, July 25, 2008

Frank Seidel: Bluetooth headset with openSUSE 11.0

Well, this turned out to be some kind of adventure. At least when you need it urgently to work as expected on a business trip. -(

Seems we need much more testing in this area. Anybody volunteering to provide me some more hardware of this area so i can make sure it works in future? -) (e.g. bluetooth stereo headset etc.)

I have to admit until now I hadn’t much to do with bluetooth at all, but after a salesman here in Ottawa (here for OLS) advertised me this thing would work nicely under linux.. i somehow expected we’d do nice here, but to my frustration i found we have plenty of room for improvement here.

To make it short, after a lot of hours going through hundreds all different howtos and documentation i really was desperate i never would get this thing workin… when i finally realized our packages are broken in 11.0. Or at least bluez-audio which contains libaudio.so that seems to segfault immediatelly after connecting to the device :-(. Fortunatelly the latest factory rpms have this fixed and also work 11.0.

Download them either from official factory repo or from seifes home buildservice project.

Please be aware that i am absolutely no bluetooth expert and all this might just be crap and i was just lucky this worked by chance for me, but perhaps this is also helpful for some more (but try on your own risks..).

After you upgraded your bluez* packages and installed bluez-audio you can make the headphone functionality make work with two simple files to create, but that solution won’t work for simultanious voice transfer for current voip softphones (like e.g. ekiga, kcall, xten etc.).

But if thats enough just:

  1. Install new bluez* packages (including bluez-audio) from above
  2. as root create the file /etc/bluetooth/audio.service with this content:[Bluetooth Service]
    Identifier=audio
    Name=Audio service
    Description=Bluetooth Audio service
    Autostart=true
  3. as normal user create the file ~/.asoundrc (yes, really in your home directory) with this content:
    pcm.bluetooth {
    type bluetooth
    device "00:00:00:00:00:00"
    profile "auto"
    }

    (with the address after device being that of your bluetooth headset; findable e.g. via kbluetooth or with hcitool scan on pairing)
  4. restart bluetooth service (rcbluetooth restart as root)

From then on you have new alsa device called “bluetooth” many newer audio-/multimediaplayers can acces (e.g. for mplayer: mplayer -ao alsa:device=bluetooth ….).

Sadfully for e.g. ekiga and other softphones this does not work. There we have to use/ i had to use the old snd-bt-sco module so i get a new additionall complete sound device. When back in germany or when time permits i’ll package this so this will just be simple kmp package to install, but for now heres a tar ball with the fixed sources (so they compile with a 11.0 kernel).

  1. Deactivate above method by setting Autostart to false in /etc/bluetooth/audio.service
  2. Download and extract the tar ball fseidels-btsco-05a.tar.bz2
  3. cd into the new dir and issue (as normal user) “./configure
  4. then “make
  5. and as root in that directory a “make install
  6. if not already done install kernel-source package
  7. cd /usr/src/linux
  8. as root “make cloneconfig
  9. as root “make prepare
  10. cd back to the btsco directoy and there cd into its kernel subdirectoy
  11. issue a “make
  12. copy the snd_bt_sco.ko module to /lib/modules/$(uname -r)/weak-updates/ (as root)
  13. issue a “depmod -a” (as root)

To start/use it

  1. restart bluetooth service
  2. pair your headset (e.g. with help from kbluetooth)
  3. issue “hciconfig hci0 voice 0x0060” as root
  4. issue a modprobe snd_bt_sco as root
  5. start “btsco 00:00:00:00:00” (as root; with the address parameter being that of your headset)
  6. chmod 666 /dev/dsp1 (as root)
  7. chmod 666 /dev/mixer1 (as root)
  8. as root issue “alsamixer -c 1” to adjust volume settings

now you have a workin new /dev/dsp1 sound device you can set in the audio settings of ekiga and other voip softphones and use it like expected. -)

Hope this helps anybody and hopefully i will soon find the time to package this up as decent kmp with automated udev-rules so it gets easier to use.

Friday, July 25, 2008

Novell Open Audio: Linux: Upgrade to Novell Open Enterprise Server

Senior Technical Consultant Mike Saunders and Product Marketing Manager Sophia Germanides talk with David and Randy about the Novell Open Enterprise Server 2 whitepaper, which outlines why it makes sense to upgrade to Open Enterprise Server 2: save money, time, and risk.

Friday, July 25, 2008

Danny Kukawka: Lenovo ThinkPad X61t Touch support

As I already wrote in the last post the linuxwacom driver now works with Touch devices as used in the Lenovo ThinkPad X61t. Today I tried to use the touch device, but unfortunately it's not full working with default settings as the other wacom input devices on TabletPCs. By default you can only use a part of the screen, the cursor never reaches the last 2-3 cm to the border of the screen.

I tried to calibrate the device with wacomcpl but I got alway an error. The reason was that wacomcpl wrongly detected all wacom input devices as core devices. I had to fix wacomcpl first, you can find the patch here.

Sadly also the fixed version of wacomcpl wasn't able to calibrate the touch device correctly. The touch device get active as soon as you hit the display with you finger or a non-EMR pen. This get interpreted by wacomcpl as click, you don't have a chance to put the cursor on the cross to get a value for calibration. Because of this I played around with xsetwacom and the ButtomX/Y and TopX/Y options on the X61t. Here the values I added to my SaX2 version to get the device usable:
Option "BottomX" "915"
Option "BottomY" "950"
Option "TopX" "48"
Option "TopY" "79"
I hope this make the X61t now usable. You can get updated SaX2 and x11-input-wacom packages here. But it would be nice if the autocalibration in the driver could get fixed including wacomcpl.

Friday, July 25, 2008

Novell User Communities: SLES: Installation and Configuration of the CA ARCserve 11.5 SP3 Backup Server for Linux

This article has the steps for the installation and configuration of the CA ARCserve 11.5 SP3 backup server for Linux and the CA ARCserve OES Agent on SUSE OES 2.0 Linux.

read more

Friday, July 25, 2008

Jan Nieuwenhuizen: 2008-07-25: Friday

  • delete sheet image de Rename layout::QueryBox to MessageBox and add wrappers for the other message boxes.
  • Make MessageBoxes look real nice with their images etc.

  • Noel prompts me to yet yet another mising patch. Use git diff --name-only to make sure my dist script will not miss any patches in future.
  • Cleanups and integrate into ooo-build.
  • Run another couple of gob git-export on latest dev300-m25 and make some gob adjustments. Finally, a fresh
    git clone http://lilypond.org/vc/dev300-m25.git
    also available through ooo-build.git

Friday, July 25, 2008

SUSE Linux Enterprise in the Americas: Open Source - good for job marketability

You’ve seen the stats… 70-85% of all IT shops have Linux in use.  More and more of them are using Linux and open source for “mission critical workloads”…  Bill Snyder from InfoWorld posted a blog entry that highlights a report that indicates what he calls “the open source jobs boom”.

Looking for a good job in IT? Sharpen your knowledge of open source development frameworks, languages, and programming. A just-published study of available IT jobs found that 5 percent to 15 percent of the positions now on the market call for open source software skills.

Written by consultant and author Bernard Golden in conjunction with O’Reilly Media, the 50-page report attempts to document the spread of open source in the enterprise. Although the study did not quantify the actual percentage of open source products used in the enterprise, the strong growth in available jobs — in a period when overall IT job growth may be slowing — points to a surprising breadth of adoption. Indeed, the recession may be pushing budget-strapped IT execs to examine low-cost alternatives to commercial software.

(full article)

Interested in getting a Linux certification under your belt?  Novell offers four technical and one sales certs:

Not to mention the other product certifications we offer which are for products running on or designed to compliment your Linux environment.  More info on all of these certifications is here.  You can also check out some good community or free resources here.

Friday, July 25, 2008

Stefan Seyfried: Bad HP, continued…

So the motherboard got exchanged. That’s fine. The MAC address of the ethernet card changed as a consequence, that’s unavoidable and no real problem.

But why on earth do they have to change the DMI identification strings of the machines in mid-production?

Before, the machine reported itself like that (”s2ram -n” output):

This machine can be identified by:
sys_vendor = "Hewlett-Packard"
sys_product = "HP Compaq 2510p Notebook PC"
sys_version = "F.0A"
bios_version = "68MSP Ver. F.0A"

Now it reports

This machine can be identified by:
sys_vendor = "Hewlett-Packard"
sys_product = "HP Compaq 2510p (RU537EA)"
sys_version = "F.0A"
bios_version = "68MSP Ver. F.0A"

When I entered it into the s2ram database, I of course used the full “HP Compaq 2510p Notebook PC” string, not expecting it to change within the same model.

Bah!

But I should have known better: looking at whitelist.c shows, that HP has always had the bad habit of changing those strings all the time (just look at all those different nx5000 entries).

Friday, July 25, 2008

Marko Jung: To all sysadmins: thank you!

Traditionally - mainly because I also have worked as sysadmin for years - I enjoy to celebrate SysAdminDay every last Friday in July.

Do not touch the cablesI would like to thank especially all system administrators which support my work and keep the stuff running. For my work at SUSE/Novell this mainly is the SUSE R&D-Admin team. Kudos to Thomas and his crew for being available all the time and handling all kinds of requests very fast, efficient and straightforward. I deeply appreciate your work! Of course I also would like to express my thankfulness to all people at Novell’s IS&T.

As a user of the openSUSE Build Service I also depend on the work from some of my colleagues from my team and department. I am grateful for being able to use such a fast, reliable and innovative service.

The LinuxTag-Admin team, which is completely volunteer driven, also deserves my gratitude. I would like to mention our team lead Kester and moreover Stefan and Michael from Speedpartner for sponsoring infrastructure and joining our team.

Furthermore I am fortunate to have Emme as my friend - it is highly reassuring to know you have someone to ask in cases you need a dam good tip or just another crazy idea to find another approach to a problem. The hack-nights with you have always been very inspiring!

Last but not least I send my greetings to my former colleagues and friends at the MPII.

Thursday, July 24, 2008

Thomas Biege: Ruby Cookies

Ever used Google with inurl:environment.rb ":session_key" ":secret"?

Update: Yesterday I put two Ruby scripts online that can de-/encrypt cookies.








Disclaimer


The views expressed on this website/weblog are mine alone and do not necessarily reflect the views of my employer.

Note to journalists and other readers: Unless you receive express written permission to the contrary from the author of the content of this blog/website, reproduction or quotation of any statements appearing on this blog/website is not authorized.




kostenloser Counter

Weblog counter -


Thursday, July 24, 2008

Christopher Hobbs: A year of altbit.org!

It looks like as of July 7th, this blog had an anniversary.  I’ve kept several blogs and sites over the years, but this one is by far the longest I’ve had one in operation.  I really think that it’s due to me finding the openSUSE project.

I’ve always had a desire to help out with open source projects in some way and the openSUSE community kickstarted that for me.  Thanks to the whole community for keeping me active and thanks to the readers for skimming my crazy rants and raves.

I almost wish I had some of my old site backups, it would be interesting to read over some old posts.  I’m going to dig through some dusty external drives to see if I can’t bring back some old material.

Thanks again, and happy anniversary altbit.org!

Thursday, July 24, 2008

Novell User Communities: SLES: Xen OCF Resource Management Script for HA Stack

Manage Xen domU as HA resource, replaces "xm".

read more

Thursday, July 24, 2008

Stefan Seyfried: Bad HP, bad…

My cool new machine was already sent back for warranty repair. The external display, connected to the docking station, did not get a signal anymore, so the motherboard had to be replaced. Ok, bad luck, but nothing to worry about. I had another similar machine (nc2400, the predecessor of the 2510p) to use during repair, so it was not that bad. But what really pisses me off is the fact, that i needed to boot Vista, just to reactivate the built-in UMTS card. When I first had to do it after fitting the card into the machine, I was thinking that it might be Sierra Wireless who needs the card to be “activated” or that I just had overlooked some BIOS setting in my eagerness to use the new toy, so I did not bother too much.
But today - I had of course booted Linux and wondered where the ttyUSB* devices had gone - I searched all the BIOS settings and everything, but there was just no device appearing on the USB bus. So I finally had to boot Vista, start HP’s “Wireless Manager” and switch it on there.

That’s 10GB of valuable harddisk space wasted, just for an UMTS activator program. I hate that.

Shame on you, HP guys. I’m really pissed.

Thursday, July 24, 2008

Danny Kukawka: openSUSE: Better TabletPC support

Since a while some newer TabletPCs uses Wacom Tablets with Multitouch support which allows to use the Tablet with the pen but also with your fingers as a Touchscreen. One example is the Lenovo ThinkPad X61t.

The linuxwacom X11 driver now also provides touch support. It's realised as a new input device with option "Type" "touch". These devices work only on TabletPCs and with the option "ForceDevice" "ISDV4".

Since SaX2 currently only supports the configuration of the Stylus (Pen) and the Eraser devices I had to extend Sax2 to allow also the configuration of Touch devices. You can find my patch here and an updated SaX2 package (for openSUSE >= 10.2) in my openSUSE Build Service home repo (you need also the latest x11-input-wacom packages from there to get the full support).

Here a screenshot of the new 'Electronic Pens' tab of SaX2 from a Lenovo X61t:

If you have an other TabletPC with Wacom Multitouch support feel free to send me an email with your xorg.conf and some information about the machine and I add the machine to SaX2, so that you be able to configure your machine very easily.
Tech Tags:

Thursday, July 24, 2008

Hubert Figuiere: Guadec slides

Just a quick note to let people know that I have put my slides online. They are linked from lgo (in OpenDocument).

I'll provide PDF and HTML versions soon.

Thursday, July 24, 2008

Jan Nieuwenhuizen: 2008-07-21: Monday

  • Fix radio button functionality (state changed on stateChanged *and* actionPerformed) by adding simple callback juggling in our wrapper. This needs a vcl change, rebuild all.
  • Add localization for insert-sheet.xml.

Thursday, July 24, 2008

Jan Nieuwenhuizen: 2008-07-22: Tuesday

  • Put out latest ooo-build.git with tweaked commit messages.
  • Team meeting.
Page 1 | Next >>
Username:
Password:
(or Cancel)