uname -r
Show installed but unused linux headers, image, or modules:
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d'
STumbling In Linux Land, STupid and Unlucky Pablo? The tribulations and happy discoveries of a Linux former Newbie, now bit more experienced user
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d'
gmediaserver content_directory './mp3'
/etc/default/gmediaserver
you can read:
# gmediaserver control (yes means start daemon).
GMEDIASERVERRUN=no
#GMEDIASERVERARGS="--profile=mp101 -ieth0"
GMEDIASERVERDIR="/usr/share/sounds"
Probably the last line has to be changed to your streaming folder:
gmediaserver './mp3'
gmediaserver --friendly-name=gmediaserver -i eth0 -v4 ~/mp3
Feedback, songlist and:
Using IP address 192.168.1.10.
Initializing UPnP subsystem...
UPnP MediaServer listening on 192.168.1.10:49153
Enabling UPnP web server...
Generating device UDN (UUID)...
UDN: uuid:6ad8275a-18be-4a74-9402-4a3673f46533
Registering UPnP root device...
Sending UPnP advertisement for device (expire time 100 seconds)...
Listening for control point connections...
source:http://www.pervasive-network.org/SPIP/Partager-des-contenus-avec-UPnP
btw great site with lots of other important info!! French though..
Tuesday, April 21 2009 @ 06:13 PM EDT |
You have to read this paper! Microsoft - A History of Anticompetitive Behavior and Consumer Harm [PDF], and it's from the European Committee for Interoperable Systems, or ECIS. ECIS has written it in support of the EU Commission's recent preliminary findings, on January 15, 2009, that Microsoft violated antitrust law by tying IE to Windows. It is, to the best of my knowledge, the first time that the issue of Microsoft's patent threats against Linux have been framed in a context of anticompetitive conduct. It presents a history, albeit not totally comprehensive, of some of the notable anticompetitive conduct from the past, like against DR-DOS and Netscape and WordPerfect, but it also presents current issues, including the saga of how ISO/IEC DIS 29500, formerly known as OOXML, got approved as a standard: The EC is also investigating Microsoft's actions to manipulate the vote of the International Organization for Standardization / International Electrotechnical Commission on the recent standardization of Office "Open" XML ("OOXML"). As reported widely in the press and on the Internet, Microsoft's manipulation of the standards setting process in favor of OOXML included financial inducements, threats, misleading information, and committee-stuffing. These investigations are compelling examples of Microsoft's continued misconduct related to its monopolies in operating systems and other products. |
unrar t filepart1.rar
unrar e file.part1.rar
# sudo apt-get install unrar
--modify-window=1: this is ESSENTIAL. Basically in windows filesystems time is kept in even numbers (or some such problem). This command tells rsync to ignore filechanges that are only 1 second in difference from the original. It is almost impossible that you will create a file, sync it, and in ONE second make a change and want to sync it again. So it is safe to use this option and it means that rsync will not back up everything every time simply because of a one second change.
FastStone Image Viewer is another great app from FastStone which is one of the best image viewers in my opinion. This little free application which also comes in portable version is a user-friendly image browser, converter and editor, all in just 3,9 mb.
FastStone Image viewer has all the features you will need, like image modification tools: Resize/resample, rotate/flip, crop, sharpen/blur, brightness/contrast, red-eye removal, emailing, resizing, cropping, drop shadow, framing, bump map, lens, morph, waves, color adjustments and digital camera support but what i like the most is the built-in batch processing (you can rename or convert multiple images in the same time).
$ apt-cache search svg.*png
inkscape - vector-based drawing program
librsvg2-bin - command-line and graphical viewers for SVG files
scribus - Open Source Desktop Page Layout
...
$ apt-cache show librsvg2-bin
...
Description: command-line and graphical viewers for SVG files
The rsvg library is an efficient renderer for Scalable Vector Graphics
(SVG) pictures.
.
This package includes a command-line utility to convert the SVG files
to the PNG format and a graphical SVG viewer.
$ sudo apt-get install librsvg2-bin
...
$ dpkg -L librsvg2-bin
...
/usr/bin/rsvg-convert
/usr/bin/rsvg-view
/usr/bin/rsvg
...
$ rsvg-convert --help
Usage:
rsvg-convert [OPTION...] [FILE...] - SVG Converter
Help Options:
-?, --help Show help options
Application Options:
-d, --dpi-x=pixels per inch [optional; defaults to 90dpi]
-p, --dpi-y=pixels per inch [optional; defaults to 90dpi]
-x, --x-zoom=x zoom factor [optional; defaults to 1.0]
-y, --y-zoom=y zoom factor [optional; defaults to 1.0]
-z, --zoom=zoom factor [optional; defaults to 1.0]
-w, --width=width [optional; defaults to the SVG's width]
-h, --height=height [optional; defaults to the SVG's height]
-f, --format=[png, pdf, ps, svg] save format [optional; defaults to 'png']
-o, --output output filename [optional; defaults to stdout]
-a, --keep-aspect-ratio whether to preserve the aspect ratio [optional; defaults to FALSE]
-v, --version show version information
-b, --base-uri base uri
$ cd your-directory-with-the-svgs/
$ for i in *; do rsvg-convert $i -o `echo $i | sed -e 's/svg$/png/'`; done
$ cd your-directory-with-the-svgs/
$ for i in *; do inkscape $i --export-png=`echo $i | sed -e 's/svg$/png/'`; done
sudo update-alternatives --config java
sudo update-alternatives --config java
[sudo] password for paul:
There are 3 alternatives which provide `java'.
Selection Alternative
-----------------------------------------------
1 /usr/lib/jvm/java-6-sun/jre/bin/java
2 /usr/bin/gij-4.2
*+ 3 /usr/lib/jvm/java-gcj/jre/bin/java
Press enter to keep the default[*], or type selection number: 1
Using '/usr/lib/jvm/java-6-sun/jre/bin/java' to provide 'java'.