Today, I decided I need skype on my phone, because I didn't have mic on the computer. It turned out that you can install it trough skype.com/m but only after a "free sms". I don't care how free is that sms, I'm just very suspicious towards services which want my phone or address for no reason at all. So after some digging, I found this site, where you can install skype mobile directly.
What you do is to open this site trough Opera, and click on the link skype3G.apk. Then when Opera downloads it, you click open and install it happily. And that's it. Nice and easy. And no Android Market, no Skype dependence.
Enjoy!
вторник, 5 април 2011 г.
петък, 18 март 2011 г.
How to connect to internet trough terminal?
First, check out this cool site for Linux command. You probably already know most of them, but still, it's a useful reminder.
Now set up routing using route. Substitute ${GATEWAY} with your gateway IP address:
Now open /etc/resolv.conf with your favorite editor (in our example, we use nano):
Now fill in your nameserver(s) using the following as a template. Make sure you substitute ${NAMESERVER1} and ${NAMESERVER2} with the appropriate nameserver addresses:
source - Gentoo wiki
Also if you want to connect trough wifi, use this wiki:
ifconfig [interface] up (bring up specified interface)
ifconfig [interface] down (take down specified interface)
ifconfig [interface] hw ether [MAC] (Change the wireless cards MAC address, specify in format 11:11:11:11:11:11)
And finally, you can try this, if you want to automate the process.
Code Listing 3.11: Using ifconfig |
# ifconfig eth0 ${IP_ADDR} broadcast ${BROADCAST} netmask ${NETMASK} up |
Code Listing 3.12: Using route |
# route add default gw ${GATEWAY} |
Code Listing 3.13: Creating /etc/resolv.conf |
# nano -w /etc/resolv.conf |
Code Listing 3.14: /etc/resolv.conf template |
nameserver ${NAMESERVER1}
nameserver ${NAMESERVER2} |
Also if you want to connect trough wifi, use this wiki:
- Connecting to an OPEN / WEP WLAN (DHCP)
iwconfig yourinterface mode managed key yourwepkey(128 bit WEP use 26 hex characters, 64 bit WEP uses 10)iwconfig yourinterface essid youressid(Specify ESSID for the WLAN)dhclient yourinterface(to receive an IP address, netmask, DNS server and default gateway from the Access Point)
- Connecting to an OPEN / WEP WLAN (Manual IP Setup)
iwconfigyourinterfacemode managed keyyourwepkey(128 bit WEP use 26 hex characters, 64 bit WEP uses 10)iwconfig yourinterface essid youressid (Specify ESSID for the WLAN)ifconfig yourinterface youripaddress netmask yoursubnetmaskroute add default gw yourgateway(Configure your default gateway; usually the IP of the Access Point)echo nameserver yourdnsserver >> /etc/resolve.conf(Configure your DNS server)
ifconfig [interface] up (bring up specified interface)
ifconfig [interface] down (take down specified interface)
ifconfig [interface] hw ether [MAC] (Change the wireless cards MAC address, specify in format 11:11:11:11:11:11)
And finally, you can try this, if you want to automate the process.
вторник, 1 март 2011 г.
How to make Amarok see changes in tags?
I installed easytag to edit somewhat the tags of my songs, since Amarok has some problem going from cp1251 to unicode . So I edited my tags, but Amarok didn't update them. I searched a little and found this extremely useful command:
What it does is to change the date to all files in the directory and thus when Amarok rescan the collection (I forced it with update collection), it sees the new tags and everything is nice again.
find /media/music -exec touch {} \; Source
Абонамент за:
Публикации (Atom)