Using %ksappend from main kickstart file from usb device, what is the correct path?

I’m using kickstart for the installation of a Fedora system. I separated some steps of the installation in some kickstart files, so they can be easily reused. For example, the section about partitioning is in one file, the packages to be installed in another one. The needed files are put together in the main ks … Read more

Does the Wacom Bamboo Pen Tablet’s Pen have an Eraser?

I’m thinking about getting one of the cheaper Wacom tablets to start doing some “hobby”-ish digital art. Right now I think the Bamboo tablets are the best choice, especially the Pen only one, but after reading reviews it seems like the pen with the Bamboo pen doesn’t have an eraser. Can anyone verify this? If … Read more

What types of styluses would work on a Microsoft Surface?

I tried using a regular stylus on the Microsoft Surface, but that doesn’t work; the screen is unresponsive. Is there a stylus available or does anyone already have good experiences with another type of stylus? Answer According to Paul Thurrott’s Microsoft Surface: RT vs. Pro, a Specifications Comparison article: Pen support Surface RT : Capacitive … Read more

How do I turn off the little CTRL-SHIFT bubble that pops up on Windows 7 around my cursor?

I have a Wacom Bamboo pen tablet. When I press CTRL, SHIFT, or ALT, a little yellow bubble pops up near my cursor. This interfers with screenshots etc. Wacom has informed me that this is not a feature of the pen software but of Windows 7. Does anyone know how I can turn this off? … Read more

Add to every end of line in Notepad++

I have a long text file gallery-dl -g -i w4b027.txt > gallery-dl -g -i a4b028.txt > gallery-dl -g -i b4b029.txt > gallery-dl -g -i c4b030.txt > gallery-dl -g -i d4b031.txt > gallery-dl -g -i w4b032.txt > gallery-dl -g -i w4b033.txt > gallery-dl -g -i w4b034.txt > gallery-dl -g -i w4b035.txt > gallery-dl -g -i w4b036.txt … Read more

How to disable context menu on long pen press?

I have wacom bamboo pen. When I am pressing it for a log time, circle animation appears and then context menu called. This makes impossible to draw something slowly. How to disable context menu call on long press? The pen has special button for context menu, so long press processing is absolutely not needed. Answer … Read more

why it is 2>&1 and not 2>>&1 to append to a log file

I am redirecting STDOUT and STDERR to a single file, always growing, so I use always use “append” redirection; this is >> my command is command >> logfile 2>&1 And it works. But the STDERR redirection has a single >, which I was using to “create” the file, erasing the previous one, as in command … Read more