Viewing posts tagged opensuse
After more or less successfully upgrading three very different machines online and at least ending up with usable network afterwards, I dared to upgrade the machine in the data center at the other end of town. And promptly ran into bnc#546575, which earned me a trip to said data center as the machine wasn't accessible by network anymore.
I've encountered some unusual obstacles during the upgrade from openSUSE 11.1 to 11.2. Apparently, my setup is a bit outside of the spec... This is what I had to do.
I've successfully updated my machine located at the data centre from openSUSE 11.0 to 11.1 via a remote SSH connection and "zypper dup" yesterday. Contrary to my previous experiences with online upgrades, only minor obstacles were encountered:
One difference between openSUSE 11.0 and 11.1 really bugged me: even though I enabled Wake on LAN (WOL) on eth0, the driver would switch off the transceiver on suspend to RAM. After some investigation I found that the atl1e driver has the "wakeup" flag for power management set to "disabled", regardless what I set with ethtool. After enabling it with "echo enabled >/sys/class/net/eth0/device/power/wakeup", WOL works again. As a quick workaround I created a file /etc/udev/rules.d/78-enablewol.rules with the following udev rules:
SUBSYSTEM=="net", ENV{INTERFACE}!="eth*", GOTO="skip_wol"
SUBSYSTEM=="net", ACTION=="add", RUN+="/bin/sh -c 'echo enabled >/sys/class/net/$env{INTERFACE}/device/power/wakeup' "
LABEL="skip_wol"
Do you hate the "intelligent" bash completions on openSUSE or SLES/SLED as much as I do? touch ~/.bash.expert turns them off.