Terminology Emotion-Generic Error When Viewing Images [closed] - terminology

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
This has been bugging me for a little, I have no experience with the emotion libraries.
I installed terminology with
sudo apt-get install terminology
Unfortunately when I try to set a background for the terminal or use tycat I get the following error:
emotion-generic modules/emotion/generic/emotion_generic.c:1838 _players_load() no generic players available
I've did this:
sudo apt-get install libemotion-dev
and this:
sudo apt-get install totem
It hasn't helped and I do get the same error.
I would love to use terminology for all it's great features instead of using the boring terminal I have now. I use terminal for just about everything I do.
The project is located here

Related

System Health »Process Manager [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
Can someone tell me what this command means
/usr/sbin/mysqld \
--basedir=/usr \
--datadir=/var/lib/mysql \
--plugin-dir=/usr/lib64/mysql/plugin
- -user=mysql \
--log-error=/var/lib/mysql/srv.myserver.com.err \
--open-files-limit=10000 \
--pid-file=/var/lib/mysql/srv.myserver.com.pid
The image attached was very helpful.
What you see there is not an error. It is simply the details mysql process would pull from the config file(generally stored at /etc/mysql/my.cnf) to load all the basic configs necessary to start mysql process.

Where do I get the ChromeDriver.exe from? The download link isn't available [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
All the discussions and forums that I have looked at for help point to the following locations:
http://selenium-release.storage.googleapis.com/index.html
http://chromedriver.storage.googleapis.com/index.html
But both the pages are no longer available.
Any other way I can get to download the ChromeDriver.exe?
Thanks in advance!
The downloads are hosted here:
https://sites.google.com/a/chromium.org/chromedriver/downloads
You can download ChromeDriver.exe from the following URL:
http://chromedriver.storage.googleapis.com/index.html
If you want a scripted way to always get the latest version you can get it using a package manager like nuget or NPM
nuget install Selenium.WebDriver.ChromeDriver -ExcludeVersion
Will drop the latests chromedriver in a folder below our current location based on platform, e.g. for windows it would be \Selenium.WebDriver.ChromeDriver\driver\win32\chromedriver.exe
You could do something similar with the latest chromedriver from npm
npm install chromedriver
And if you need a particular version both package manager support version command arguments

"reading files list for package 'inkscape': Input/output error" while trying to install packages [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
It doesn't matter what I try to install using my package manager(sudo apt-get install whatever), I always get this error.
dpkg: unrecoverable fatal error, aborting:
reading files list for package 'inkscape': Input/output error
E: Sub-process /usr/bin/dpkg returned an error code (2)
I have researched and have tried to rebuild my dpkg status file, and I have also tried to revert to an older version, but it either hasn't worked or I am doing it wrong.
Also, when I try to run the command "sudo apt-get update", I get this error.
The problem started when I lost my internet connection while downloading monodevelop. Any help is greatly appreciated.
I figured out the answer, so I will post it here in case anybody else has the same problem in the future.
NOTE: After this fix, apt-get no longer installs dependencies for me automatically without using the -f flag.
Go into the /var/lib/dpkg directory
Make a backup of the "status" file
Open the status file as root and find the package that causes the error.
In this case, its "PACKAGE: inkscape".
Delete all the text until the next PACKAGE: declaration in the file.

Compile CMU PocketSphynx at Linux Mint 13 [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I've installed CMU Sphynx at Linux Mint 13 (based on Ubuntu 12.04 LTS) and I simply cant' find any examples for:
How to just test how it work in most simple way? I want to launch it from command line and recognize any .wav file. I've read docs but there are just c++ or python examples, no examples for pocketsphynx_continious
Where can I get /dev/dsp devise at Mint? I have installed all dev libs for alsa and pulseaudio - no /dev/dsp at all.
Any help?
To recognize from microphone
pocketsphinx_continuous
To recognize a file (16khz mono 16bit)
pocketsphinx_continuous -infile file.wav
To create /dev/dsp you need to load kernel driver for oss
modprobe snd_pcm_oss
Development libs are for development, not for /dev/dsp. After you installed development libraries, you need to recompile and reinstall sphinxbase. It will detect development libraries and use alsa instead of oss.

Completely remove and reinstall mysql [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I managed to bork my installation of it while trying to uninstall it. I installed via Muon (Kubuntu), and attempted uninstallation the same way.
I tried apt-get install/remove (on both mysqlserver and mysql), then tried manually removing files, but it just doesn't work. Somewhere it's determining not to regenerate its configs and not reinstall like a fresh install would.
How do i just get rid of everything mysql-related? I'd like to start fresh.
apt-get purge PACKAGENAME should completely remove a package including its configurations. Maybe this works better.
remove leaves behind configuration files. You need to use purge instead. (purge works on both apt-get(8) and dpkg(8).)
I had to copy a default mysql.cnf (obtained via googling) into the /etc/mysql directory. It created debian versions of the config while using "apt-get install mysql-server-5.1", so i'm assuming the installation i was trying to do was just bad. Should have gone rpm i guess.
However using purge DID remove a few other files i didn't know about, so it did help. +1