Ubuntu :: Making Pidgin Main Client 10.04?
May 7, 2010
I am not 100% happy with empathy like I was with Pidgin. I am, however very happy with the indicator applet that sits next to the clock. My question is, how do I go about setting this system so that instead of 'chat' loading Empathy, it recognises that as Pidgin instead?
View 5 Replies
ADVERTISEMENT
Jan 11, 2011
Is Pidgin the only multi-client IM Client or is it the most popular? Are there any others?
View 5 Replies
View Related
Oct 11, 2010
I'm thinking of making ubuntu my main os and deleting my win 7 dualboot and installing it on virtualbox. Does win 7 run smoothly on virtualbox? I have a C2D 1,8Ghz, 2GB of ram laptop.
View 9 Replies
View Related
Apr 4, 2010
how can i install pidgin chat client on ubuntu
View 1 Replies
View Related
Jan 12, 2011
an opensource NON-GUI git client (for linux of course) that's really light/small. I just need to it to have the main functionality of a GIT client (downloading project for read only, clone, add, commit)
View 3 Replies
View Related
Jun 28, 2011
My client is on Ubuntu Lucid 10.04, I installed ipsec-tools and racoon from the repositories. The gateway is installed on a CentOS machine. I've configured everything to get a working roadwarrior configuration with authentication_method hybrid_rsa client and server. It's working in aggressive mode, but in main mode I can't get it working. I delivered new CA and certificates several times but I'm still stuck.
It seems that it comes from my client not supporting the certificate sent by the server. The client contains a copy of the CA, whereas server has a private key and a certificate signed by the CA.
[Code]...
View 3 Replies
View Related
Jan 12, 2010
Need confirmation if the following scenario works for making my client and server as identical?
My local(source) Linux server @192.168.0.2
My remote Linux client @192.168.0.70
On the local system :
#df -m
Filesystem Mounted on
/dev/hda3 /
/dev/hda1 /boot
tmpfs /dev/shm
On the local system , issue the followings to make client and server as identical :
#dump -0uvf - /dev/hda3 | ssh root@192.168.0.70 -c "restore -rf - /"
#dump -0uvf - /dev/hda1 | ssh root@192.168.0.70 -c "restore -rf - /boot"
#dump -0uvf - /dev/shm | ssh root@192.168.0.70 -c "restore -rf - /tmpfs"
View 1 Replies
View Related
Jan 5, 2011
I have a Kubuntu 10.10 install on which I can't update my packages due to some fail conflict between pidgin and pidgin-facebookchat. I can't even remove the stuff via apt-get due to this conflict...
sudo apt-get remove pidgin
Code:
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
[Code]...
View 3 Replies
View Related
May 1, 2010
I am using Ubuntu 9.04. After doing sudo apt-get update When I try to insatll pidgin via terminal it shows: XXX@XXX-desktop:~$ sudo apt-get install pidgin Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.
The following information may help to resolve the situation: The following packages have unmet dependencies: pidgin: Depends: libpurple0 (>= 1:2.6.0) but it is not going to be installed Depends: perl (>= 5.10.0-19ubuntu1.1) but 5.10.0-19ubuntu1 is to be installed E: Broken packages
View 5 Replies
View Related
Aug 1, 2010
Previously after doing aptitude upgrade, my pidgin seems broken with no gui shown. So I decided to download the latest source from pidgin website and build it from source, but I think I made situation worse because it then complained that ssl lib was needed. Then I removed the libpurple (e.g. aptitude purge libpurple0 libpurple-bin libpurple-dev) and reinstalled pidgin (aptitude install pidgin). Now it shows the error
pidgin: symbol lookup error: pidgin: undefined symbol: purple_media_element_info_get_type
I searched on the internet and can not find a solution. The clues on the internet says that's because the piding I use is the older version of libpurple. But I think I've removed all with purge and reinstalled it. Maybe some legacy binary is referenced. What or where it might be? Or where there may contain related information.
View 2 Replies
View Related
May 26, 2011
I have configured server ubuntu 11.04. Everything works fine, but there is a need for some clients to connect local hard drive. What should I do? How and what modules are added to the ltsp-image? How to register in the fstab on the client? Maybe I'm going the wrong way?
View 1 Replies
View Related
Jan 6, 2011
trying to create a "local network" by directly connecting an IBM Thinkpad with Debian Linux installed on it to an Alix computer running Voyager Linux. I'm following a "how to" I found to create a music server, hence the requirement. My issue is I can't get a static IP address to be configured on the Debian machine.I've trawled the net and have found the instructions about editing the /etc/network/interfaces and have tried to do this. First I tried to get DHCP working so I could connect the Debian machine to the net and this proved successful. I edited the interfaces file to look as follows:
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
Then I tried adding a static IP address to the machine. As this is a network purely between two machines I made up the IP addres and used 192.168.0.1 and used a NetMask calculator to give me a NetMask of 255.255.255.254 (I told the calculator there would be 2 machines on the network). I then edited the interfaces file as follows:
# The loopback network interface
auto lo
iface lo inet loopback
[code]....
I re-booted the machine (ifdown eth0 followed by ifup eth0 keeps saying that eth0 hasn't been configured - a problem there that I don't understand), but during boot up time it failed to assign the Static IP address to eth0 and made me go into SU mode. To fix it I simply replaced the interface file with the static IP inputs with the file that had the DHCP entries (I'd made a copy of the DHCP file), and re-started the machine. Everthing came up fine. So the first question is how do I get a static IP address to be assigned to eth0 such that whenever I shut down and restart the machine the static IP address is always loaded?
The second question is around creating the network via the cross over cable. From what I've found via Google, all I should have to do is create a static IP address on the Debian machine and a static IP address on the Voyager machine. Once they're connected by the cross over cable they should see each other. Is that correct, or do I have to do anything else?
View 2 Replies
View Related
Mar 9, 2011
I am writing a TCP server in C, and the server listens to incoming client connections and accepts them. It then creates a thread to handle the client. The clients are expected to only receive data from my server and not send any data. So if I use a select() call with a recv(), I believe that the recv() will just block forever since there will not be any data coming from the client. If I use a non-blocking recv(), then this will just return a 0 which tells me nothing because the client is not expected to send any data. I am not sure if I have misunderstood some socket concepts, but I need a solution to detect when the client has disconnected so that I can close the socket and stop sending data to the client. As I understand it, simple ACKs etc are not captured by the recv(), and only data sent by the client will cause recv() to return a non-zero value, so I am not sure how to know when the client has disconnected.
View 7 Replies
View Related
Nov 25, 2009
Is there a good terminal services client available I can connect to my Windows boxes from Fedora12? I am willing to pay for a commercial license if there is a good one
View 7 Replies
View Related
May 20, 2009
I have the following problem:I have to networks in remote places.I have an opnvpn client in one network that connects to the the router (openvpn server).My question is,can i connect the network where the openvpn client is,throught the computer with the client to the other network.If yes,how? (please make it an idiot proof anwser because i have limited knowledge about iptables). I was thinking like forwarding (the router in the network with the openvpn client is also firewalling with iptables) the request of the ip class of the openvpn network to the computer with the client,which masquarades the interface
View 2 Replies
View Related
Apr 21, 2011
I recently began at a new company that uses google apps for domains. The problem is, there are nearly 150 employees and no centralized address book to speak of. I managed to get a list of legal names and email addresses out of the HR department, but I'd like to build my google address book as well as my pidgin buddy list.Pidgin buddy lists are in the format code...
I've tried to simply edit blist.xml, but the act of actually ADDING a buddy does more than simply stick them into your list, it actually performs a server action to do mutual authentication and stuff. So my question is: Is there a way I can run a script that will "add" all these people onto my buddy list without me having to type each email address and full name by hand?
View 9 Replies
View Related
Feb 21, 2010
I have found Pidgin to be very useful but I am lacking a very essential functionality of SIP based calling.
View 5 Replies
View Related
Mar 18, 2010
There seems to have been a change in how you add buddies in Pidgin, since I last used Pidgin in Ubuntu. When I open the add buddy window in Pidgin I get the image attached. It allows me to "search" Personal or Ubuntu One from the drop down list, but nothing is ever populated in the main text area. Similarly, when I select a group from the drop down list in the lower right corner, it never selects it. Also when I click "New Person" it simply closes the window without ever adding a new buddy to my buddy list.
View 6 Replies
View Related
Apr 8, 2010
I recently installed pidgin but its missing the icons for the status of my logon and the status of others. any ideas on how to build a working online/away/busy icon set for pidgin? from what i can tell its probably missing script from somewhere.
View 8 Replies
View Related
May 29, 2010
No other details necessary.
View 1 Replies
View Related
Nov 20, 2010
Well this has been going on for five days already, I can't sign in MSN through pidgin it give me this error..
View 9 Replies
View Related
Feb 7, 2010
Im using ubuntu 9.10. i resides in a university hostel and using the internet with LAN. i am unable to configure setting for yahoo and msn on pidgin.
View 1 Replies
View Related
Feb 10, 2010
I've got Pidgin 2.4.1 on my Hardy computer, and I got the 'Off The Record' plugin working with no problems: I went to Tools > Plugins, found 'Off The Record' in the list of plugins and checked the box - and now OTR works.On my Jaunty machine I've got Pidgin 2.5.5 installed - and I can't find the OTR plugin! I go to Tools > Plugins and look through the list, but OTR isn't there!
View 2 Replies
View Related
Feb 17, 2010
I use Pidgin as my IRC client. I set it to remember my passwords for the #linuxjournal and #ubuntu channels. As you can see in the picture, there is a tab titled Frigg. I don't know if Frigg is a user or bot or channel! How do I prevent it from appearing every time I start Pidgin? I closed it before but then it keeps coming back when I restart Pidgin!
View 9 Replies
View Related
Feb 20, 2010
I'm having a problem. I cant log in pidgin or emesene or emapthy with a gmail acc in MSN.
View 5 Replies
View Related
Feb 24, 2010
I use pidgin for IRC regularly and am wondering if there is a way for it to show notifications when others talk?
I have "others talk in chat" selected for the sound notifications, but I'd really like it to use the visual notifications (the notification applet?), like it does when I'm chatting with someone over IM. Is that possible?
I'm running standard ubuntu 9.10
View 3 Replies
View Related
Mar 5, 2010
I have installed Pidgin and the Facebook Plugin. However is there a bug with it? Because when I try to connect it says it can't retrieve my buddy list. On Fedora 12 this works with Pidgin problems. Is this a bug and is there a work around?
View 7 Replies
View Related
Mar 9, 2010
I want to add an account in yahoo. I am using Pidgin. How can I add an account(i.e. mail address of friends)
View 1 Replies
View Related
Mar 9, 2010
My pidgin account can't be opened. Every time I tried to log in, it shows error.What is the problem?
View 3 Replies
View Related
Mar 19, 2010
Hello, when I log into Aim using pidgin I get this error
"Received unexpected response from http://api.oscar.aol.com/aim/startOSCARSession"
I tried using a MSN account to test it out and it works. So AIM does not work. The port is on 5190 so I dont understand what is wrong.
View 2 Replies
View Related