Showing posts with label Debian 64 bit. Show all posts
Showing posts with label Debian 64 bit. Show all posts

Saturday, October 18, 2014

Debian Wheezy 64 bit: installing correctly skype

I assume you've downloaded skype from site.
The Debian 7 multiarch package.

I have some problem during skype installation on my 64 bit architecture.
Something like this:

package architecture (i386) does not match system (amd64)
Errors were encountered while processing:
skype

So, I need to do these steps:

dpkg --add-architecture i386
apt-get update
apt-get install qt-at-spi:i386
dpkg -i  skype-debian_4.3.0.37-1_i386.deb
(where skype-debian_4.3.0.37-1_i386.deb is the file version I currently downloaded..)

Now It goes like a charm....

Bye...

Tuesday, July 12, 2011

Skype - up/down camera problem on Debian Squeeze 32 bit

Here are for a curious problem with camera on skype.
Differently of cheese(all it's ok) image camera output on skype is rendered up/down.

So this solution works with my Debian Squeeze 32 bit.....
First of all those libraries should be installed....
- libv4l-0(that contains v4l1compat.so)
and

If you haven't them.... give...
apt-get install libv4l-0
apt-get install libqt3-mt

After you can try in the same shell to export those variables

export QT_PLUGIN_PATH=/usr/lib/qt3/plugins
export LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so

so you can try to launch skype and assure that now webcam output is ok.....

If so.... now you only do a simple script to wrap the variables export before launching skype....
One way....
cp /usr/bin/skype /usr/bin/skype_appl
echo "" > /usr/bin/skype
(to empty /usr/bin/skype file)
and after edit /usr/bin/skype in way of it contains those lines:
#!/bin/bash
export QT_PLUGIN_PATH=/usr/lib/qt3/plugins
export LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so
skype_appl&


Now launch from terminal skype or add a new launcher on Desktop/Toolbar
and all it's ok!!!


Bye

Hamachi LogMeIn - install and configure on Debian 32 bit Squeeze 6.0.1

Note that the follow post:
Hamachi LogMeIn on Debian 64 bit Squeeze
at the link
http://maurizio-franco.blogspot.com/2011/07/debian-64-bit-squeeze-601-install-and.html
...explains how to install LogMeInHamachi on Debian with amd64 architecture.

For Debian 32 bit architecture it's all the same....
Pay only attention to the deb dependencies packages.... that should be for i386(or your different.....) architecture.

This is the link for
https://secure.logmein.com/labs/logmein-hamachi_2.0.1.15-1_i386.deb

At this
https://secure.logmein.com/labs/
the other versions.....

Bye....

Hamachi LogMeIn - install and configure on Debian 64 bit Squeeze

- INSTALLATION -
Download LogMeIn deb package.
At write time the current url for download the amd64 version is: https://secure.logmein.com/labs/logmein-hamachi_2.0.1.15-1_amd64.deb
(Complete list of available versions at https://secure.logmein.com/labs/)


Dependecies for the hamachi package is lsb.
Personally I installed the follows
libcairo2_1.8.10-6_amd64.deb
libgtk2.0-0_2.20.1-2_amd64.deb
libpango1.0-0_1.28.3-1+squeeze2_amd64.deb
lsb-desktop_3.2-23.2squeeze1_amd64.deb
lsb-core_3.2-23.2squeeze1_amd64.deb
lsb-cxx_3.2-23.2squeeze1_amd64.deb
lsb-graphics_3.2-23.2squeeze1_amd64.deb
lsb_3.2-23.2squeeze1_all.deb
and for at the end
logmein-hamachi_2.0.1.15-1_amd64.deb

But if you have a "good" sources.list you can before works with...
apt-get clean
apt-get upgrade
apt-get update
and after by apt-get install the differents depends-on packets.....

When you install logmein-hamachi_2.0.1.15-1_amd64.deb
(dpkg -i logmein-hamachi_2.0.1.15-1_amd64.deb)
and you have the current message.....
Starting LogMeIn Hamachi VPN tunneling engine logmein-hamachi
.....you have successfully installed LogMeIn.....

- CONFIGURATION -

We have to follow /opt/logmein-hamachi/README file......
So....

###>  hamachi login
...set up hamachi deamon....

###> hamachi set-nick <nickname>
....optionally command.......set the <nickname> (without < and >....:-)) to your machine in the hamachi net
###> hamachi join <network id>


....join your pc to the <network id> net......
....
......
........ now you are joined!!!!.....




###>hamachi list
.....list network members and their status....* if active....
###>hamachi
....give information about you....(as your ip!!...)


Bye.