links · people · groups · tags | My: links · tags · groups · watchlists · notes login · sign up now! | help · blog
Simpy simpy
 
era, member since Jun 19, 2006
.
Search Everyone: "ubuntu",

Top "ubuntu" experts: atilio, jkernsjr, nperriault, oupsemma, gnrfan, falko,

Groups about "ubuntu": ubuntu, ubuntu_ph, kubuntu,

1 - 10 of 22 next »   Watch era
 
by era 2006-06-19 01:25 01a · debian · distro · linux · ubuntu · 20060619-0123
http://www.ubuntulinux.org/ - cached - mail it - history
Problems with Firefox 1.5/i386 on Ubuntu amd64 The suggested solution almost works, but I had to find a different pangorc because it doesn't exist on my system. I had installed vmware and it includes a pangorc file I could use, so I just edited /opt/firefox/firefox to include export GTK_PATH=/usr/lib32/gtk-2.0/ export PANGO_RC_FILE=/usr/local/lib/vmware/libconf/etc/pango/pangorc
by era 2006-06-19 01:25 blog · browser · erablog · firefox · forum · howto · ubuntu · 20060619-0123
http://www.ubuntuforums.org/archive/index.php/t-84975.html - cached - mail it - history
Guy in Iraq giving out Ubuntu and Knoppix CDs (and doing lots more interesting things) "The main reason for giving away Ubuntu and Knoppix is this: People are using windows because it's what they have. They'll get to know what they have and they'll never change. If you get in on the ground floor, you can help subvert the western dominant paradigm before it's taken hold here. It helps people to recover data, it helps people to remove viruses and if they're willing to run Knoppix, Debian Gnu/Linux or Ubuntu, they're likely to not have virus problems ever again."
by era 2006-06-19 01:24 advocacy · erablog · knoppix · opensource · quips · society · ubuntu · 20060619-0123
http://www.makezine.com/blog/archive/2005/04/hacking_in_iraq.html - cached - mail it - history
A project for merging Ubuntu stuff back into Debian
by era 2006-06-19 01:24 debian · development · ubuntu · 20060619-0123
http://utnubu.alioth.debian.org/ - cached - mail it - history
Couldn't help noticing the shell scripting again ... Okay, here is a blog by blow of the snappy shell script. > #!/bin/bash Yeah, well, it can be tolerated. The script actually contains a couple of bashisms, although they could be avoided; and anyway, if you are on Ubuntu, you are, shall we say, fairly likely to have a copy of Bash on your system. > a=`ps -aef | grep -i xcompmgr | awk ' {if ($8 == "xcompmgr"){printf "2"}} '` Argh. Here's how to do that. a=`ps -aeof | awk '($8 == "xcompmgr") { printf "2" }'` I suspect the "2" was supposed to be "$2" but it doesn't matter here, because the result is thrown away ... Also I suspect the guy didn't know about print so that's why he used printf; not that it matters much. > if [[ $a = "" ]] > then So here's the bashism. You just have to wonder if it's necessary. The classical Bourne idiom for this would be to use case (or test, but it was an external process in historical times, so case is preferred): case $a in '') <> ;; *) <>;; esac More below. > yourcommand & > killall gnome-panel I'm sure if you have other users on your system they will not be happy if you kill their gnome-panels. Let's just hope you don't run this as root by mistake. Fixing this is left as an exercise. (Hint: Use less obtuse ps options to get a listing only of your own processes -- makes sense for other reasons too. And/or run another ps to get the PIDs of your gnome-panels and only yours. And/or abort if you are running as root.) > else > kill -9 `ps -aef | grep -i xcomp | awk ' {if ($8 == "xcompmgr"){printf $2}} '` > killall gnome-panel > fi Erm, so here we do the nasty "ps | did not read the faq so kill me" again? Again? Why not use the result in $a from the previous run? (Ah, because it was incompetently discarded?) Also, never never ever use kill -9 in a script unless you really really know what you are doing. We assume that the guy got tired of copy-pasting his own code (always a sign of a high level of goodness) and that the grep xcomp (pro grep xcompmgr) is not there for any particular reason. kill $a If you kill gnome-panel regardless of the outcome of the if/else, why do you have it twice inside the if, instead of once, outside?
by era 2006-06-19 01:24 blog · erablog · hardware · howto · peeve · shell · ubuntu · x11 · 20060619-0123
http://ubuntuforums.org/showthread.php?t=75527&highlight=transset - cached - mail it - history
The most incompetently coded piece of shell script I have seen in a long time If it works for you, good. I would have serious trouble trusting anything from a person who cannot spell "you", let alone grep a file without catting it first. Adding insult to injury, the comments talk about "GPL" and "trademark" (I assume incorrectly) in the same breath. Still, if you can look at the source without gagging for a moment, it contains some useful hints for things to install.
by era 2006-06-19 01:24 apt · blog · erablog · howto · newbie · peeve · reference · shell · ubuntu · 20060619-0123
http://ubuntuforums.org/showthread.php?t=66563 - cached - mail it - history
Adding "irqpoll" seems to sort it out I stumbled into this when upgrading from Ubuntu Hoary to Breezy. All of a sudden, my CardBus adapter stopped working. This isn't a screen issue; I don't even run X, let alone gdm, on this box. I tried different things like a crazed monkey for several days until I tried a lucky combination of the irqpoll kernel argument and ... I think a particular card -- the ones I dare not try again are a DWL-650+ wireless card and an Intel e100 ethernet card; the one I managed to get to work is a 3com 3c59x, identified as "3CCFE575BT" by cardctl ident. Update: I posted a bug report about this:
by era 2006-06-19 01:24 600x · blog · erablog · hardware · ubuntu · 20060619-0123
http://ubuntuforums.org/archive/index.php/t-27724.html - cached - mail it - history
How to use Firefox 1.5 on Ubuntu 5.10 Ubuntu 5.10 only ships with Firefox 1.0.7, which is kind of slow and has a troubling memory leak. This explains how to install an upstream 1.5 and integrate it so that it behaves like Gnome and Ubuntu expects. I could not find an amd64 version so I'm trying i386.
by era 2006-06-19 01:24 backport · blog · browser · erablog · firefox · linux · ubuntu · wiki · 20060619-0123
https://wiki.ubuntu.com/FirefoxNewVersion - cached - mail it - history
by era 2006-06-19 01:24 era · ubuntu · wiki · 20060619-0123
https://wiki.ubuntu.com/Era - cached - mail it - history
For once, let's hope the draconian US IPR laws are put to good use I actually stumbled over this via http://carthik.net/blog/category/ubuntu/
by era 2006-06-19 01:23 advocacy · blog · erablog · ipr · ubuntu · 20060619-0123
http://spaces.msn.com/members/spaceslogo/Blog/cns!1pewB9JxHjvFn1yxWqZBvnIw!105.entry - cached - mail it - history
1 - 10 of 22 next »  
Related Tags
 
- exclude ~ optional + require
Add Dates