8
JVM creates 4095*902180 bytes shm segments but doesn't releaseview story

http://stackoverflow.com – When we run the java program just after the reboot, jvm is allocation 4095*902180 bytes shm segments but it doesn't release it. So keeps on creating these shm segments and it makes other scripts to abort with message "can't allocate shared memory anymore." Following is the output of ipcs command when the jvm session is running. This happens only in the first jvm session after the system reboot. (HowTos)

8
Can't install vlc-player on Fedora 18 (64-bit, xfce)view story

http://forums.fedoraforum.org – Hi ! I have been trying to install vlc-player on my Fedora 18 (64-bit, xfce) for the past two hours with instructions found in these forums and through Google. (HowTos)

8
Executing bash script with tilde in pathview story

http://stackoverflow.com – I am trying to execute in linux: command[0] = "~/test/bin/runScript_sh"; Runtime.getRuntime().exec(command); But get an exception java.io.IOException: Cannot run program error=2, No such file or directory Probably because it can not evaluate tilde. What can be done? (HowTos)

8
No targets specified and no makefile found. Stop. Makefile ubuntuview story

http://unix.stackexchange.com – When I execute the command sudo make I get this error: No targets specified and no makefile found. Stop. (HowTos)

8
fedora18 gmplayer installationview story

http://forums.fedoraforum.org – Firstly for the record, fedora 18 comes with gtk, zlib, and alsa installed by default, BUT to configure and build mplayer with the gui interface (hence gmplayer) one needs development versions of include (and possibly libraries). (HowTos)

8
linux + run find command with parameterview story

http://unix.stackexchange.com – when I run find command , to search files with perl name , then I able to find them: find /tmp -name '*perl*' /tmp/perl.pl /tmp/run-perl-stage.pl . but when I set the perl name in PARAMETER and run again the find command then I not get any results ? how to run the find command with $PARAMETER ? PARAMETER=perl find /tmp -name '*$PARAMETER*' not get any results find /tmp (HowTos)

8
find command with regex {1,2}view story

http://unix.stackexchange.com – I have been trying to create a find command string that will find all files that end with a number 1-99 but exclude all others. e.g. I want to find myfile1 myfile99 but not myfile456 and not myfilebackup The regex I'm thinking of is myfile[1-9]{1,2} but I can't get this to work with find. find . -regex '.*myfile[0-9]{1,2}' OR find . (HowTos)

8
bash script : is it possible to recognize video format from files (to batch extract audio from them)?view story

http://askubuntu.com – I have written a little bash script to extract audio from video files in batch mode. Sound is extracted from each mp4 file to flac format using avconv (and the flac codec). #!/bin/sh # # Batch conversion of audio extraction from video FOLDER_SRC="/home/Me/Music/TestBatchConv" for myvid in $(find ${FOLDER_SRC} | grep mp4) do avconv -i $myvid -acodec flac "${myvid}.flac" done exit 0 It works (HowTos)

8
solaris + xargs command for solarisview story

http://unix.stackexchange.com – the command find /tmp -name 'core*' -type f -print0 | xargs -0 works fine on linux but "xargs -0" option isnt illegal on solaris what the equivalent option ( xargs ? (HowTos)

8
Voice Controlview story

http://forums.androidcentral.com – Is there any app or combination of apps that will simulate Siri, in that I can initiate it via a headphone button, speak a command and have my phone execute it? It would also be ideal if it would read me texts as well. This is the one 'i' feature that I miss when I'm out running and want to text my wife. Thanks. (HowTos)