Skype (Application)
Jump to navigation
Jump to search
NOTE: actual Skype version (2017 / 2018) does not store / import the old history
If this missing feature is unacceptable for you, you can still use the 4.3 version 'patching' it to authenticate as a most recent version. This is needed because in the login step, the server will recuse login of old Skype version. With the patch, Skype app 4.3 will lie, declaring itself as a most recent app.
The command to patch was obtained from the link How To Run Skype 4.3 for Linux After November 2017:
This command will patch the 'skype' binary file of version 4.3.9.37 to change its version to 8.3.0.37:
sed -i 's/4\.3\.0\.37/8\.3\.0\.37/' /usr/bin/skype
Skype (x86 binary version 4.3) for Debian Stretch on amd64 OS
- Add i386 support
# shared/opt install schema v1.3.1 su - #### as root # dependencies apt-get -qq -y install wget coreutils findutils apt-get -qq -y install tar bzip2 libc6:i386 libstdc++6:i386 libasound2:i386 libpulse0:i386 libqtwebkit4:i386 libxv1:i386 libxss1:i386 # binary SOFTWARE_PATH="/home/shared/opt/software" NAME="skype" VERSION="4.3.0.37" URL="http://download.skype.com/linux/skype-${VERSION}.tar.bz2" umask 0027 mkdir -p "${SOFTWARE_PATH}/tmp/${NAME}_${VERSION}" cd "${SOFTWARE_PATH}/tmp" wget -c --no-check-certificate "${URL}" tar -xjf skype-${VERSION}.tar.bz2 && mv "skype-${VERSION}/"* "${NAME}_${VERSION}" && rmdir "skype-${VERSION}/" cd "${SOFTWARE_PATH}" chown -R root:users "tmp" find "tmp" -type d -exec chmod a-s,u+rwx,g+rx,g-w,o-rwx {} \; find "tmp" -type f -exec chmod a-s,u+rw,g+r,g-w,o-rwx {} \; mv "tmp/${NAME}_${VERSION}" "${NAME}_${VERSION}" rm -rf tmp ln -s -f -T "${NAME}_${VERSION}" "${NAME}" exit #### as final user SOFTWARE_PATH="/home/shared/opt/software" NAME="skype" nice -3 "${SOFTWARE_PATH}/skype/skype"
Skype (x86 binary version 4.3) for Debian Jessie on i386 OS
apt-get install libc6 libstdc++6 libv4l-0:i386 libasound2 libpulse0 libxv1 libxss1 libqtdbus4 libqtwebkit4
Skype (x64 5.3 version)
wget https://repo.skype.com/latest/skypeforlinux-64.deb VER=`dpkg --info skypeforlinux-64.deb | grep Version | sed -e 's| Version: ||g'` DEST=/home/shared/opt/software/skype-${VER} mkdir -p "${DEST}" dpkg -x skypeforlinux-64.deb "${DEST}" chown -R root:users "${DEST}"
Run
- If needed,
export LD_LIBRARY_PATH="/usr/lib/i386-linux-gnu:/usr/lib/i386-linux-gnu/libv4l:${LD_LIBRARY_PATH}"; export LD_PRELOAD_32="v4l1compat.so v4l2convert.so"; exec nice -1 "${SKYPE_PATH}"/skype;