OpenSUSE Hardware :: Paused - "/usr/lib/cups/backend/socket Failed"
Jun 15, 2011
My problem is fixed, but I have a general question regarding wireless printing with cups. When this error occurs: Paused - "/usr/lib/cups/backend/socket failed"
This has to do with my printer (an HP 6940) changing the URL that is uses. What causes the URL to change in the printer?
View 5 Replies
ADVERTISEMENT
Feb 15, 2010
Deskjet-F4400-series
--------------------
Type: Unknown
Installed in HPLIP?: No, not using the hp: or hpfax: CUPS backend.
Device URI: usb://HP/Deskjet%20F4400%20series?serial=CN9C1CK70705C5
PPD: /etc/cups/ppd/Deskjet-F4400-series.ppd
[code]....
how do I get the printer installed in hplip? I can print but cannot scan. xsane will not recognize printer. Jaunty 64bit 2GB Ram 350GB HD
View 1 Replies
View Related
Mar 16, 2010
Recently I started getting pop-up saying:
Code:
Failed to initialize
Failed to initialize packaging backend
This may occur if other packaging tools are being used simultaneously.
under more details i get:
Code:
There are unfinished transactions remaining. Please run yum-complete-transaction as root. I get to terminal, and as a root I try yum-complete-transaction, but it just says there are no unfinished transactions left. I tried to update thru yum, but this is what I get:
Code:
# yum update
Loaded plugins: fastestmirror, presto, refresh-packagekit
Determining fastest mirrors .....
After lots of googling, I tried:
"yum clean all",
"yum-comlete-transaction",
"rm -f /var/lib/rpm/__db*" + "rpm -vv --rebuilddb" + "yum clean all",
Everything else is working well, and I am able to update with "--skip-broken", but I keep getting this pop-ups. I use fedora 12.
View 5 Replies
View Related
Jun 16, 2010
Since Livna went down, I've been having having problems with KPackagekit. I disabled the Libna repo by setting enabled=0 in /etc/yum.repos.d/livna.repo, and have been able to update with Yum.KPackageKit fails on me now with the message "Failed to initialize backend. This may occur if other packaging tools are used simultaneously."Then it fails to finish, which causes me to reboot before I can use Yum successfully.Under Settings, I see no indication that it knows where the repositories are, and no way to add repos.
View 1 Replies
View Related
Feb 26, 2010
I have error in KPackageKit when i try to install anything or check for updates:
Failed to initialize packaging backend. This may occur if other packaging tools are being used simultaneously.
Details: There are unfinished transactions remaining. Please run yum-complete-transaction as root.
I don't know anything about other packaging tools - I think I don't using any. Yum works fine in terminal. Reinstall PackageKit and KPackageKit files doesn't helped me. I also try to rebuilt rpm db:
rm -f /var/lib/rpm/__db*
rpm -vv --rebuilddb
yum clean all
I'm using Fedora 12 x86_64.
View 12 Replies
View Related
Mar 15, 2010
From the GUI, software update gives the error "Failed to Initialize - Failed to initialize the packaging backend. This may occur if other packaging tools are being used simultaneously." In the more details, "There are unfinished transactions remaining.
I run a terminal, switch to root and do as it tells me. It returns saying that there are no unfinished transactions. I've run it several times with the same result. Then I run "yum clean all" and "yum upgrade." The upgrade processes runs and reports "there are unfinished transactions..." However, the upgrade process still completes. Basically it is now a severe annoyance, but the system does seem to upgrade. I just cannot figure out why there are somehow unfinished transactions that I cannot get rid of. I tried reinitializing the rpm database - no luck. How can I somehow reset yum?
View 2 Replies
View Related
Nov 29, 2010
I want to install GTK+. I see there are also numerous dependencies, which i've been slowly tackling, and the Cairo package has been particularly difficult. It claims the following upon ./configure --prefix=/usr configure: WARNING: Could not find libpng in the pkg-config search path checking whether cairo's PNG backend could be enabled... no configure: error: requested PNG backend could not be enabled I've done some searching and found that libpng.pc is in my /usr/lib/pkgconfig/ directory and that the following commands don't do the trick:
PKG_CONFIG_PATH=/usr/lib/pkgconfig
export PKG_CONFIG_PATH
View 1 Replies
View Related
Jul 16, 2011
When I try to upgrade, I always get this message: "E: /var/cache/apt/archives/linux-image-2.6.32-5-amd64_2.6.32-35_i386.deb: failed in write on buffer copy for backend dpkg-deb during `./lib/modules/2.6.32-5-amd64/kernel/drivers/net/s2io.ko'"
View 14 Replies
View Related
Feb 24, 2010
I have a printer configured on my Ubuntu server using CUPS amd made it available to the local network. The printer is recognized on my other Ubuntu machine without any problems.
But on my Suse laptop, the printer is not recognized. Using the YaST printer Configuations, I choose the option "Recieve Printer Information from Remote CUPS servers. But no printer is found.But... when I choose Do All Yout Printing Directly via One Remote CUPS server and enter the correct IP address (192.168.1.100), the printer is found andI am sure the printer info is broadcasted because it shows up on my second Ubuntu PC. But why is it not recognized by default on my Suse machine
View 2 Replies
View Related
Mar 9, 2010
i installed yumex:yum -y install yumex, when i start yumex it came with this error:fatal error:backend-not-running backend not running as expected (yumex will close) how can i solve it?
View 10 Replies
View Related
Nov 21, 2010
I have a new install of Ubuntu 10.04.1 LTS server. But I get errormessages trying to start samba.
caesar@klem:/etc/samba$ restart smbd
restart: Unable to connect to system bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory
I have tride to remove an install samba. And deleted smb.conf. And startet with the original.
smb.conf:
workgroup = Easyways
server string = %h server (Samba, Ubuntu)
log file = /var/log/samba/log.%m
max log size = 1000
[Code]....
View 2 Replies
View Related
Mar 13, 2010
I can't seem to get on my Twinkle SIP Phone, it says: "Failed to create a UDP Socket (SIP) on port 5060 Address already in use" after that message it brings me back to the window were I'm supposed to run my profile, how do I fix this?
View 6 Replies
View Related
Feb 24, 2011
I am working on uClinux/almost same as Linux. I am new to socket programming. I have two micro controllers running on same code. Simple run with arguments mean send merged string.
run 1st micro controller (Send): ./Name "anystring"
run 2st micro controller (Recive):/Name
My code is:
int receive() {
// Create socket
int sock_fd;
struct sockaddr_in addr;
char buffer[kBufferSize];
int bytes_received=0;
int addr_len = sizeof(addr);
printf("receive start ");
sock_fd = socket(AF_INET, SOCK_DGRAM, 0);
if ( sock_fd == -1 ) {
printf("receive Create ");
// Error occurred return 0; }
printf("Res Create sucee ");
// Create address from which we want to receive, and bind it
memset(&addr, 0, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = INADDR_ANY;
addr.sin_port = htons(kPortNumber);
if ( bind(sock_fd, (struct sockaddr*)&addr, sizeof(addr)) < 0 ) {
printf("receive bind "); // Error occurred return 0; }
printf("Bind Succeful sucee ");
while ( 1 ) {
// Receive a message, waiting if there's nothing there yet
bytes_received = recvfrom(sock_fd, buffer, kBufferSize-0, 0,
(struct sockaddr*)&addr, &addr_len);
if ( bytes_received < 0 ) { // Error occurred
printf("receive bytes "); return 0; }
printf(" bytes_received succeful ");
printf("Ressocketstring : %s ",buffer);
memset(Ressocketstring,0x00 , sizeof(Ressocketstring));
strcpy(buffer,Ressocketstring); printf("Ressocketstring : %s
",Ressocketstring); printf(" ");
printf("Hello Receive finished");
// Now we have bytes_received bytes of data in buffer. Print it!
fwrite(buffer, sizeof(char), bytes_received, stdout); } }
int transmit(char * data, int length) {
int sock_fds[kMaxSockets];
// Obtain list of all network interfaces
/* struct ifaddrs *addrs;
if ( getifaddrs(&addrs) < 0 ) {
// Error occurred return 0; } */
// Loop through interfaces, selecting those AF_INET devices that support broadcast, but aren't loopback or point-to-point
struct sockaddr_in addr; int number_sockets = 0; struct hostent *he;
/* const struct ifaddrs *cursor = addrs;
while ( cursor != NULL && number_sockets < kMaxSockets ) {
if ( cursor->ifa_addr->sa_family == AF_INET
&& !(cursor->ifa_flags & IFF_LOOPBACK)
&& !(cursor->ifa_flags & IFF_POINTOPOINT)
&& (cursor->ifa_flags & IFF_BROADCAST) ) {
// Create socket*/
sock_fds[number_sockets] = socket(AF_INET, SOCK_DGRAM, 0);
if ( sock_fds[number_sockets] == -1 ) // Error occurred {
printf("Error Create "); return 0; }
he = gethostbyname((char *)BCASTADDRESS) ;
if (he==NULL ) {printf("Error gethostbyname ");
herror("gethostbyname"); printf("Error host "); exit(1);
} printf("Res He ");
// Create address from which we want to send, and bind it
memset(&addr, 0, sizeof(addr)); addr.sin_family = AF_INET;
addr.sin_addr = *((struct in_addr *)he->h_addr);//((struct sockaddr_in *)cursor->ifa_addr)->sin_addr; addr.sin_port = htons(kPortNumber);
if ( bind(sock_fds[number_sockets], (struct sockaddr*)&addr, sizeof(addr)) < 0 )
{ // Error occurred printf("Error bind "); return 0; }
// Enable broadcast int flag = 1;
if ( setsockopt(sock_fds[number_sockets], SOL_SOCKET, SO_BROADCAST, &flag, sizeof(flag)) != 0 ) // Err occur { printf("Error Enable "); return 0; }
number_sockets =1; printf("Succes 1 "); printf("transmit Create ");
// Initialise broadcast address memset(&addr, 0, sizeof(addr));
addr.sin_family = AF_INET; addr.sin_addr.s_addr = INADDR_BROADCAST;
addr.sin_port = htons(kPortNumber);
// Send through each interface int i;
for ( i=0; i<number_sockets; i++ ) {
if ( sendto(sock_fds[i], data, length, 0, (struct sockaddr*)&addr, sizeof(addr)) < 0 )
{ printf("Error Send "); // Error occurred return 0;
} printf("Succes 2 "); } return 1; } void MergeMessage( ) {
memset(socketstring,0x00,sizeof(socketstring));
sprintf(socketstring,"%s@%s@%s@%s@%s@%s@%s@%s@%s@%s@%s
",Tmeg.s1,Tmeg.s2,Tmeg.s3,Tmeg.s4,Tmeg.s5,Tm eg.s6,Tmeg.s7,Tmeg.s8,Tmeg.s9,Tmeg.s10,Tmeg.s11);
printf(" MergeSocketMessage : %s ",socketstring); }
int main (int argc, char** argv) {
int fd=0,bdc=0; struct ifreq ifr; printf("Tsarting man ");
fd = socket(AF_INET, SOCK_DGRAM, 0);
strncpy(ifr.ifr_name, "eth0", IFNAMSIZ-1);
ioctl(fd, SIOCGIFADDR, &ifr); close(fd);
memset(MYIP,'-',sizeof(MYIP));
memset(BCASTADDRESS,'-',sizeof(BCASTADDRESS));
strcpy(MYIP, inet_ntoa(((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr));
printf("Etho: %s ,len:%d ", MYIP,strlen(MYIP));
for(bdc=strlen(MYIP);MYIP[bdc-1]!='.';bdc--) {}
strncpy(BCASTADDRESS,MYIP,bdc-1); strcat(BCASTADDRESS,".255");
printf("BCASTADDRESS: %s ,len:%d
", BCASTADDRESS,strlen(BCASTADDRESS));
printf("Initial Broad Cast message "); {
/*s0"0" (id=76)
s1"500" (id=77)s2"100" (id=78)s3"100" (id=78)s4"startVD" (id=79)
s5"lighting" (id=80)s6"reading" (id=81)s7"Anna" (id=82)s8"0" (id=76)
s9"";s10"" (id=64)s11"" (id=64)*/
strcpy(Tmeg.s0,"0"); strcpy(Tmeg.s1,"500");strcpy(Tmeg.s2,"100");strcpy(Tmeg.s3,"100");
strcpy(Tmeg.s4,"startvd");strcpy(Tmeg.s5,"lighting");strcpy(Tmeg.s6,"reading");
strcpy(Tmeg.s7,"anna");strcpy(Tmeg.s8,"0"); }
MergeMessage (Tmeg); if( strlen(argv[1]) ) {
//strcpy(socketstring,Tmeg,sizeof(Tmeg));
if(transmit(socketstring, strlen(socketstring) ) ) {
printf(""%s" transmitted. ", socketstring); } else {
printf("Error occurred: %s ", strerror(errno)); return 1; } }
else { for( ; ; ) {
if ( argc < 2 ) // No argument: Just listen {
printf("Listening... "); if ( !receive() ) {
printf("Error occurred: %s ", strerror(errno)); return 1;
} return 0; } } } printf("Finished "); return 0;
} //////////////// .h file is /////////////
//#define WIN32_LEAN_AND_MEAN// Exclude rarely-used stuff from Windows headers
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <fcntl.h>
#include <netdb.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/ioctl.h>
#define SubLen50
//#include <ifaddrs.h>
#include <errno.h>
char MYIP[20];
char BCASTADDRESS[20];
typedef struct {
char s0[SubLen];
char s1[SubLen];
char s2[SubLen];
char s3[SubLen];
char s4[SubLen];
char s5[SubLen];
char s6[SubLen];
char s7[SubLen];
char s8[SubLen];
char s9[SubLen];
char s10[SubLen];
char s11[SubLen];
}msg_struct;
msg_struct Sendmsg;
msg_struct Tmeg; //Recivemsg;
Boolean pri[6];
char socketstring[SubLen*12];
char Ressocketstring[SubLen*12];
int kBufferSize = (SubLen*12);
View 2 Replies
View Related
May 4, 2011
I finally got the certs to configure:
openvpn --config server.conf
Tue May 3 17:26:27 2011 OpenVPN 2.1.1 i686-redhat-linux-gnu [SSL] [LZO2] [EPOLL] [PKCS11] built on Jan 5 2010
Tue May 3 17:26:27 2011 NOTE: OpenVPN 2.1 requires '--script-security 2' or higher to call user-defined scripts or executables
Tue May 3 17:26:27 2011 Diffie-Hellman initialized with 1024 bit key
Tue May 3 17:26:27 2011 TLS-Auth MTU parms [ L:1542 D:138 EF:38 EB:0 ET:0 EL:0 ]
Tue May 3 17:26:27 2011 ROUTE default_gateway=192.168.122.1
Tue May 3 17:26:27 2011 TUN/TAP device tun0 opened
Tue May 3 17:26:27 2011 TUN/TAP TX queue length set to 100
Tue May 3 17:26:27 2011 /sbin/ip link set dev tun0 up mtu 1500
Tue May 3 17:26:27 2011 /sbin/ip addr add dev tun0 local 10.8.0.1 peer 10.8.0.2
Tue May 3 17:26:27 2011 /sbin/ip route add 10.8.0.0/24 via 10.8.0.2
Tue May 3 17:26:27 2011 Data Channel MTU parms [ L:1542 D:1450 EF:42 EB:135 ET:0 EL:0 AF:3/1 ]
Tue May 3 17:26:27 2011 Socket Buffers: R=[114688->131072] S=[114688->131072]
Tue May 3 17:26:27 2011 UDPv4 link local (bound): [undef]:1194
Tue May 3 17:26:27 2011 UDPv4 link remote: [undef]
Tue May 3 17:26:27 2011 MULTI: multi_init called, r=256 v=256
Tue May 3 17:26:27 2011 IFCONFIG POOL: base=10.8.0.4 size=62
Tue May 3 17:26:27 2011 IFCONFIG POOL LIST
Tue May 3 17:26:27 2011 Initialization Sequence Completed
But openvpn still won't start; where to go from here.
Tue May 3 17:54:25 2011 TCP/UDP: Socket bind failed on local address 192.168.122.3:1194: Address already in use
Tue May 3 17:54:25 2011 Exiting
View 3 Replies
View Related
Nov 10, 2015
I have installed cups(1.5.3) in my Beagleboard black based custom hardware running on Debian 7.8 using 'apt-get install' command. I am trying to print to HP deskjet 1112 usb printer from system line but nothing is getting printed and the output of 'lpstat -t' shows the error : "/usr/lib/cups/filter/hpcups failed "
The error_log output is :
I [10/Nov/2015:09:44:51 +0000] Saving job.cache...
I [10/Nov/2015:09:44:52 +0000] Listening to [v1.::1]:631 (IPv6)
I [10/Nov/2015:09:44:52 +0000] Listening to 127.0.0.1:631 (IPv4)
I [10/Nov/2015:09:44:52 +0000] Listening to /var/run/cups/cups.sock (Domain)
[code]....
Please find the response from CUPS administrators below:
As far as I see this has nothing to do with CUPS.As far as I see the first error message comes from Ghostscript: "Unable to open the initial device, quitting" (this is in Ghostscript's gs_init.ps file).Therefore Ghostscript does not produce any output which lets then the filter from HP's HPLIP driver software error out with "cupsRasterOpen failed" and finally the HP backend errors out with "ERROR: null print job".Neither Ghostscript nor HP's HPLIP driver software belong to CUPS so that the issue does not belong to CUPS (according to my analysis).
I guess that somehow the "Ghostscript command line" is not correct or does not work as it should.Usually this is alos no bug in Ghostscript but "some where else" where the Ghostscript command line with all its parameters is created.
View 2 Replies
View Related
May 25, 2010
In looking at the release notes, I saw the comment File locations changes:
* MySQL socket file and pid file were moved from /var/lib/mysql to more reasonable location /var/run/mysql by default.
* MySQL log files are in /var/log/mysql. Not sure what I was supposed to do with that information. So I ignored it. Now, I am finding some issues with it. The web server works, but any connection to the database fails with 2002: Can't connect to local MySQL server through socket '/var/run/mysql/mysql.sock' (2)The thought dawned on me that maybe all my databases were erased and none set up. Going in to the terminal, I could connect and list and query the databases. So even though I backed them up, they still are there!
phpMyAdmin gives the same error message.
However, when I go into MySQL Administrator, it works fine.
I forgot where I saw it, but the socket is still set to var/lib/mysql. I could not find any mysql install log and would say what was in my cnf.my, but it still doesn't exist just as it has not in the past. Not sure if I should allow the MySQL Administrator to create it since I always ignored the prompt in the past and it worked. (Just wishing to keep the defaults)
At first I thought the upgrade upgraded the MySQL, but it's still 5.1.39 as I believe before. I've un-installed mysql-server and re-installed it with no change.
Can anyone can tell me how to get the socket to /var/run/mysql or what else is wrong? I read one place where mysql is supposed to set it up.
View 9 Replies
View Related
Dec 8, 2010
figure out this error?
Code:
kradalby@hpcompaq6530b-laptop ~/.ssh $ ssh -vvv -p 110 kradalby@dfekt.no
OpenSSH_5.5p1 Debian-5+b1, OpenSSL 0.9.8o 01 Jun 2010
[code]....
View 3 Replies
View Related
Jun 25, 2009
I googled this, to no avail. I've restarted cups, to no avail.This is a Networked Printer, but i have little doubt that can be ruled out as an issue.If i want to print an Image or Plain Text file, i get this error; if i print with OpenOffice, i do NOT get this error and it prints fine.I have also gotten a similar error, like "permission denied" or something, but i cannot recall exactly what it said, and cannot seem to recreate it at the moment.I have been getting this for quite some time now (months), but never found out why. Any ideas?
View 14 Replies
View Related
May 6, 2010
I get this error ALL THE TIME after a reboot if I try to print. Going to the printing applet to add the printer does no good because Lucid is not connected to the CUPS server. I found that the work-around below fixes the issue for the current session.
Code:
sudo aa-complain cupsd
sudo /etc/init.d/cups restart
[code]....
View 9 Replies
View Related
Jun 20, 2011
I am probably going to get blasted for this statement which is a result of four days of frustration.There are many people on here who are having problems getting their printers to work with Ubuntu. In my case it is version 10:04. I have been reading and trying fixes for four days. Nothing works.Surely this has got to the attention of the people who know what they are doing and design these programs. I sure don't know how to fix this, along with a lot of other users. We are not being lazy or arrogant. Nothing seems to work.Surely someone in the hierarchy can put in a patch that fixes this problem.The fact that Ubuntu won't print for so many people surely must be a priority inhe development of this software. So, please will one of the program developers fix this problem and send out a patch.
View 8 Replies
View Related
Mar 24, 2010
in KDE:Factory:Desktop you can find a new version of kupdateapplet. In the changes you can find the following:
- dropped zypp plugin (bnc: 590192)
- V 0.9.11
I have no access to 590192 in bugzilla, so can anybody tell me why the only real working backend is dropped? The PackageKit-Backend is not showing the updates from 3rd-party-repositories (packman or obs). Is there any possibility to get back the working 0.9.10?
View 5 Replies
View Related
Mar 3, 2010
Have very recently installed Open S on my PC. As it's all really new 2 me have been strugling a bit to get things to work @ first. Now it's much better but my bleeping scanner won't work for love or money, apparently the Linux driver ( or should I say backend) for the thing has not been created. Its CanoScan 3000 and I still have the discs with Windows setup. Is there any way to get that thing work under Linux or should I get another scanner? Obviously, me writing the backend, is not really a very realistic option.
View 1 Replies
View Related
Mar 10, 2011
I recently bought scanner, the driver to which is currently in process and is not yet committed into the main repo, so I downloaded the new code and compiled it into /usr/local/ and openSUSE's YaST scanner configurer doesn't see the new versions and continues to work with the old ones.
View 9 Replies
View Related
Apr 21, 2011
When an SD card is inserted before/at boot time, everything works fine, meaning recognized by kernel and mounted to userspace.When an SD card is inserted after boot time, the kernel doesn't 'see' the hardware change not triggered, so no block device /dev/mmcblk0{p1}, so nothing to mount.This behavior is not openSuSE specific, when booting SystemRescueCD-2.0.1, the same behavior is noticed.SD card inserted after booting:
Code:
linux-j60s:~ # hal-device | grep mmc
linux-j60s:~ #
[code]...
View 5 Replies
View Related
Jun 24, 2010
I have installed smplayer, and configured it to use the code...
Kaffeine (and dolphin's video preview) seem to use phonon's xine backend, and I can't find out what video output it uses. I'm guessing its plain old xv as it seems accelerated but turnes into a blue square when I move the window.
How do I tell the xine backend to use the same vo as smplayer?
OS 11.2 64 bit, KDE 4.4.4 (Factory)
(ps: I have a 'legacy' ATI graphics chip, xpress 200M working with the opensource radeon driver, which is brilliant btw).
View 2 Replies
View Related
Sep 6, 2010
So I have made an interesting Discovery with regards to using KDE4 Kaffeine version 1 and Dolby Digital 5.1. The basic problem seems that there is no way to configure the Phonon xine Backend in KDE 4 for use with Kaffeine version 1. There is however, a xine-config file located at:
Code:
~/.kde4/share/apps/kaffeine/xine-config
There appears to be no GUI way to change the default xine configuration (for use with KDE 4 applications) and while you can do so manually, the options seem bewildering, at least to me.
When you run xine-ui or Kaffeine/KDE3 there is an option to adjust the xine audio configuration using a GUI. Any changes made here are ignored by KDE 4 applications. As luck would have it you can copy the old xine configuration (adjusted by Kaffeine/KDE3) over the new one for Kaffeine in KDE4. The old text file configuration is located at:
Code:
~/.xine/config
If you were to use the old Kaffeine/KDE3 to adjust your xine audio configuration and then copy this file to the Kaffeine Version 1 KDE4 location, those changes should be used by the new version 1 Kaffeine in KDE 4. After Kaffeine/KDE3 audio settings work as you desire, open up a terminal session and make the following file copy. You must overwrite or rename the old configuration file for backup.
Code:
cp ~/.xine/config ~/.kde4/share/apps/kaffeine/xine-config
Since this new xine configuration is in the new Kaffeine version 1 KDE4 location, it may only modify how the new Kaffeine works and nothing else running in KDE4, but it is still an interesting find.
View 1 Replies
View Related
Nov 11, 2010
After it tries to print and nothing happens this shows up stopped. Idle- /usr/lib/cups/filter/footmatic-rip failed.
View 2 Replies
View Related
Aug 1, 2010
Installed 11.3 as new install on Thinkpad T42. I now have a persistent notification "Nepomuk was not able to find the configured database backend 'redland' ... what it means. System seems to be working but desktop icons have grey vertical rectangular box when selected. No objects to select in the boxes though. Previous version had tools available as I recall.
View 8 Replies
View Related
Mar 29, 2011
Play a song in Amarok and then press the space bar to pause. Press the space bar again to resume and Amarok starts playing again with the status bar moving and the timer counting down, but no sound. If I move to the next song, sound starts working again. Or if I double click on a different song, sound works. If I use the xine backend, the problem goes away. I'm using Amarok-2.4 and KDE 4.6.1.
View 6 Replies
View Related
Jul 23, 2011
In Gnome and XFCE I always have a choppy music playback. The music is never played smoothly. There is always hesitations in the playback, as if the CPU is running on 100% and cannot cope with the system load.
One of the reasons for that is (in my case) Pulseaudio.
Another reason is Gstreamer. When I choose Gstreamer as backend in KDE, I get the same choppy musicplayback as in Gnome or XFCE. With Xine as backend in KDE, everything is fine. So my conclusion is: with Xine, the sound would be fine in Gnome too.
So, I wonder if it is possible to use Xine as backend in Gnome too. Does anyone have experience with running Xine in Gnome and/or XFCE? What do I need to do to set Gnome/XFCE, so that it uses Xine instead of Gstreamer?
Or is there maybe a special setting, I have to apply? In gstreamer-properties I have tried all possible settings, but this didnīt change anything to the quality of sound.
My experience is also: this choppy sound is hardware-independend. It doesnīt matter which hardware I use, the sound is choppy. It is also distro-independend. The sound is choppy in openSUSE (gnome and in KDE with applied Gstreamer backend), in Ubuntu, Xubuntu, Fedora with Gnome, Linux Mint with Gnome.
View 2 Replies
View Related