WeChat

Talk about and post software packages known to work or packaged for Puppy.
Post Reply
Message
Author
Zhu Bajie
Posts: 1
Joined: Thu 09 Mar 2017, 03:02

WeChat

#1 Post by Zhu Bajie »

WeChat (or WeXin) is an app common on smartphones in China. It lets you transfer documents as well as written messages, and audio clips. It's slowly replacing e-mail for sending documents.

Supposedly one can download it to a Windows computer and transfer documents. Although at home on Android phones, it does not seem to yet have a version for Ubuntu. Is there WeChat for Puppy Linux? I know that Puppy in Chinese exists.

Thanks!

Zhu Bajie

User avatar
nilsonmorales
Posts: 972
Joined: Fri 15 Apr 2011, 14:39
Location: El Salvador

#2 Post by nilsonmorales »

this come from google:
Go to github and download the tar.gz file. Choose linux-x64.tar.gz or linux-ia32.tar.gz according to your OS architecture. Once downloaded, open a terminal window and navigate to the download folder where the tar.gz file is located. Then issue the following command to extract it.

Code: Select all

tar xvf linux-x64.tar.gz
or

Code: Select all

tar xvf linux-x64.tar.gz
Once it’s extracted, go to electronic-wechat-linux-x64 or electronic-wechat-linux-ia32 folder, then run this command to open Wechat.

Code: Select all

./electronic-wechat
You will see the QR code to scan
What we need to now is to log into WeChat on our phone (Install WeChat mobile app if you haven’t already done so.) then go to Discover > Scan QR Code to scan the above QR code and confirm login with the desktop client. You need to scan this QR code only once.
To make our file system clean, we can move the folder to /opt/ directory.

Code: Select all

mv electronic-wechat-linux-x64/ /opt/
or

Code: Select all

mv electronic-wechat-linux-ia32/ /opt/
Then make a symbolic link.

Code: Select all

ln -s /opt/electronic-wechat-linux-x64/electronic-wechat /usr/bin/wechat
or

Code: Select all

ln -s /opt/electronic-wechat-linux-ia32/electronic-wechat /usr/bin/wechat
So now we just need to make a desktop file in /usr/share/applications to see it in the menu
[Desktop Entry]
Encoding=UTF-8
Name=Wechat
Comment=Wechat IM
Comment[es]=Wechat Mensajería Internet
Exec=/usr/bin/wechat
Icon=path-to.some-chat-icon.png
Terminal=false
Type=Application
Categories=X-Internet; #or Internet;
StartupNotify=true
[b][url=http://nilsonmorales.blogspot.com/]My blog |[/url][/b][b][url=https://github.com/woofshahenzup]| Github[/url][/b]
[img]https://i.postimg.cc/5tz5vrrX/imag018la6.gif[/img]
[img]http://s5.postimg.org/7h2fid8pz/botones_logos3.png[/img]

stemsee

#3 Post by stemsee »

WeChat is available as an extension/addon for google chrome and firefox. I use 'Multi-Messenger' it supports many other messenger apps such as whatsapp, skype, hangouts, QQ, etc etc

Post Reply