Thursday, September 21, 2017
Turpial twitter client
Turpial twitter client
It�s been a wee while since we last heard a peep from desktop Twitter application �Turpial�, but a new release with some notable new changes has finally arrived.
Turpial 1.5
- Support for lists and personalized columns
- Colored tweets according to their status (yellow when read. blue when unread, etc)
- Identi.ca support
- Enhanced Notifications (with further options)
- Autoscrolling
Drawbacks
Download/Install
- sudo add-apt-repository ppa:effie-jayx/turpial
- sudo apt-get update && sudo apt-get install turpial
download file now
Thursday, September 14, 2017
Ubuntu One for Windows Cloud App Client is Released!
Ubuntu One for Windows Cloud App Client is Released!
"Ubuntu One" is the brand name for the cloud computing (storage specific) model of the Ubuntu Linux operating system. Although the Ubuntu Cloud model is an open one unlike with other models such as iClould or MS Windows Cloud version which are proprietary in nature.
I dont know much about the business oriented cloud... but Im against the idea of the personal cloud "module", because something doesnt feel right man :). Anyhow, whether its necessary or not, it doesnt matter because its at our doorsteps. And if you use Ubuntu as your primary OS then youre aware that it comes highly integrated with the Ubuntu One account which easily lets you manage your data in the Ubuntu Cloud.
![]() |
| Its here! ... |
As a result of this, Ubuntu One has already released its desktop front-end to other platforms such as Android and iPhone recently but the MS Windows version was still in beta. But today, Ubuntu One team announced that the Ubuntu One for MS Windows is officially available to download!.

So if you dont like to pay for anything, then Ubuntu One will give you about 5GB of Cloud space for free! (a free sign-up is necessary first). And as long as youre using any device thats powered by a the MS Windows platform and have this app installed, youll be able sync/access your data with ease.

You can create new folders, manage music, delete files, upload/download files, etc using this utility. Its about 22.3MB in size and if interested, you can get it from this official Ubuntu One for Windows page.
download file now
Saturday, September 9, 2017
Trillian 5 3 0 15 Messenger Client Free Download
Trillian 5 3 0 15 Messenger Client Free Download
Trillian has great featured, standalone, user friendly skin chat client that support with Facebook, Skype, Google, MSN, AIM, ICQ, XMPP, Yahoo Messenger!, and more chat networks. (for using Skype you need to know more about this here)
Whats New in This Version:
- Fixed [Contact List] Always show medium icon for meta contact children
- Fixed [Contact List] Default theme should be blue, rather than follow windows
- Fixed [Contact List] Icons show red for idle and dont show red for some dnd
- Fixed [Crash] Fix a crash with auto-joining IRC
- Fixed [Game] IRC and other group chats not appearing in renderer
- Fixed [Game] Minecraft crash fixes
- Fixed [Group Chats] Contact status will be determined without resource name if given
- Fixed [Group Chats] Double scrollbar is seen sometimes
- Fixed [Group Chats] If action toolbar is turned off, nick-list will show (since there is no way to access it otherwise)
- Fixed [Group Chats] "Only flash when my name is mentioned in a chat room" should be off by default
- Fixed [Group Chats] Setting auto join and other settings may not save properly
- Fixed [Group Chats] Show save to contacts right click option for non saved chats
- Fixed [History] Connection history is no longer saving
- Fixed [Mail] Fixes for mail not showing up for some servers
- Fixed [Message Windows] Dragging in a link should show send button
- Fixed [Message Windows] Hitting home on irc does not go to the front of the line, but front of the full message
- Fixed [Message Windows] If action toolbar is turned off, things are not shown correctly
- Fixed [Message Windows] Stop logging spell check errors in diagnostic log
- Fixed [Notifications] Mouse over should show alert buttons
- Fixed [Preferences] Editing of first and last name in account screen
- Fixed [Preferences] Option to show the status icon or hide
- Fixed [Preferences] Show a "Make new folder" option when browsing for folders
- Fixed [Preferences] Show the send button [ Always | After Keyboard or Mouse Input | After Mouse Input | Never ]
- Fixed [Wizard] Do not show the network wizard for domain users who have policies disabled
- Fixed [ASTRA] Group chats can visually dupe outgoing messages in certain situations
- Fixed [HTTP] Connectivity improvements with corporate proxies and injection of self-signed certificates
- Fixed [History] Auto-history not showing display names correctly
- Fixed [Skype] Use display name when approving new contacts
- Fixed [Skype] Better support for deleting Messenger contacts
- Fixed [Skype] Better support for message history and Messenger contacts
- Fixed [XMPP] Various crashes with nick lists
- Fixed [XMPP] urn:xmpp:timestamp not parsed correctly in MUC rooms
download file now
Tuesday, August 29, 2017
Ubuntu Setting up an NFS Server and Client
Ubuntu Setting up an NFS Server and Client
What is NFS?
"NFS stands for Network File System, a file system developed by Sun Microsystems, Inc. It is a client/server system that allows users to access files across a network and treat them as if they resided in a local file directory"
"The NFS protocol is designed to be independent of the computer, operating system, network architecture, and transport protocol. This means that systems using the NFS service may be manufactured by different vendors, use different operating systems, and be connected to networks with different architectures. These differences are transparent to the NFS application, and thus, the user. "
[ source ]
Host Installation Steps
To set up an NFS host in Ubuntu, you need to run the following command to install the necessary packages:
sudo apt-get install nfs-kernel-server nfs-common -y
Add lines to your
sudo $EDITOR /etc/exports

Heres another example with comments explaining each part.
# Share the top level files directory
# Allow access from computers accessing from the IPs in the range of 192.168.1.1 -> 192.168.1.255
# The client can access/edit files as if they were a root user on the host
# Grant both read and write access (rw)
/files 192.168.1.1/24(rw,no_root_squash,async)
root_squash or no_root_squash?
The option root_squash prevents root users connected remotely from having root privileges and assigns them the nfsnobody user ID. This effectively "squashes" the power of the remote root user to the lowest local user, preventing unauthorized alteration of files on the NFS host.
The alternative option no_root_squash, allows the root user on the client to access/create files as root on the NFS host which is dangerous, so dont enable this unless you know that you need to. Typically this is needed if one is hosting root filesystems on an NFS server for diskless clients (e.g. AWS EC2).
async or sync?
Async mode (which is the default) means that the system will reply to a clients write request, stating that it has completed, as soon as it has handled the request by passing it off to the filesystem to manage, rather than waiting for it to be written to stable storage (e.g. replying as soon as it has gone into cache rather than disk). This yields much better performance at the expense in a risk of data corruption should the server reboot or lose power whilst still holding data in cache.
If your system needs to work with other proprietary systems that work with NFS (Solaris, HP-UX, RS/6000, etc.), you will need to enable sync mode.
subtree_check or no_subtree_check?
Applying Export Changes
Whenever you make changes to the /etc/exports file, for them to take effect you need to run the following command which will let you know if there are any issues, and tell you about any defaults it assumes.
sudo exportfs -a
Restart NFS Service
You can restart the NFS service at any point with the following command:
sudo /etc/init.d/nfs-kernel-server restart
Client Steps
To be able to mount NFS shares as a client, you need to run the following command to install the relevant packages:
sudo apt-get install nfs-common -y
Mount the NFS by adding a line to your /etc/fstab file like below:
$NFS_HOST_IP:$HOST_EXPORT_DIR_PATH $LOCAL_DIR nfs auto 0 0

Now run the following command to mount everything in your fstab.
sudo mount -a
sudo mount $NFS_HOST_IP:$HOST_EXPORT_DIR_PATH $LOCAL_DIR
References
- Indiana University - What is NFS?
- Ubuntu Forums - HOWTO: NFS Server/Client
- Ubuntu Geek - NFS Server And Client Configuration In Ubuntu
- Optimizing NFS Performance
- What is the use of "root_squash" and "no_root_squash" in NFS"
download file now
Saturday, August 26, 2017
Friday, August 25, 2017
Tutorial Cara Setting BGP Client Menggunakan Tunnel BGP Over VPN PPTP
Tutorial Cara Setting BGP Client Menggunakan Tunnel BGP Over VPN PPTP
Untuk dapat menghubungkan jaringan kita perlu yang namanya routing, routing sendiri ada 2 metode yaitu :
- Routing Static ( Digunakan untuk routing skala kecil )
- Routing Dinamic ( Digunakan untuk routing skala besar )
- Hubungkan dulu VPN CLient ke VPN Server dulu dengan PPTP
- Buat BGP Peer di router client ke BGP Server Debian dengan Dinamic Route dari quagga, dan langkah-langkahnya adalah sebagai berikut :


Remote AS : AS Number di BGP VPN Server





Source/Reference :
- http://mikrotik.co.id
- Syaifuddin JW
download file now
Thursday, August 24, 2017
Tweaking dhcp client configuration to change the default DNS servers to Open DNS
Tweaking dhcp client configuration to change the default DNS servers to Open DNS
The DNS servers of my ISP is always behaving erratically. The DNS look up times are abysmally large and some times I get an address not found error while browsing. On ubuntu/debian systems the DNS servers are specified in /etc/resolv.conf. I tried to edit /etc/resolv.conf and put open dns servers as default DNS servers. But, my ISP supplies their DNS server address along with IP address for the system via DHCP. Every time my system renews its DHCP lease. my /etc/resolv.conf is also rewritten with their DNS address.
My /etc/resolv.conf ( supplied by ISP) looks like this.
$ cat /etc/resolv.conf
domain asianetindia.com
search asianetindia.com
nameserver 202.88.238.3
nameserver 202.88.238.5
nameserver 202.88.231.2
There is a trick I used to make Open DNS servers as my default DNS server.
Edit /etc/dhcp3/dhclient.conf and look for the line.
#prepend domain-name-servers 127.0.0.1;
Add the following line immediately below the above line.
prepend domain-name-servers 208.67.222.222;
prepend domain-name-servers 208.67.220.220;You can also put any other DNS servers.
Now renew the lease with
$ sudo dhclient eth0
The new /etc/resolve.conf looks like this.
$ cat /etc/resolv.conf
domain asianetindia.com
search asianetindia.com
nameserver 208.67.220.220
nameserver 208.67.222.222
nameserver 202.88.238.3
nameserver 202.88.238.5
nameserver 202.88.231.2
DNS look up is made from open dns.
download file now
Friday, August 18, 2017
Tutorial Server Router Client pada Debian
Tutorial Server Router Client pada Debian
Tutorial Server Router Client pada Debian
download file now
Wednesday, August 16, 2017
Twitter Client ‘Corebird’ 1 0 Released PPA for Ubuntu 15 04
Twitter Client ‘Corebird’ 1 0 Released PPA for Ubuntu 15 04
- All dialogs now use client-side decorations if the environment dictates it, otherwise they fall back to server-side decorations (compose dialog is excluded).
- Many layout updates
- The compose window now allows for up to 4 pictures to be uploaded.
- now save additional information about the account which makes it possible for blocked users to be actually blocked, i.e. streamed tweets won�t appear in your timeline anymore.
- When (un)following someone, now also correctly show/hide their retweets in the stream.
- The DM page now sorts threads with unread messages first.
- The @handle completion known from the compose window is now also available when composing Direct Messages, as well as in the account settings for the description.
- Everything app-specific should now be hidpi ready, the only thing missing are assets loaded from Twitter directly, i.e. avatars and media.
- Notifications should now get withdrawn whenever it makes sense, i.e. if you read a Direct Message before dismissing the notification, it should get withdrawn automatically.
- The hover buttons moved to a right-click menu on every tweet.
- Plurals are properly localized.
- We now also respect muted users (even though there�s no UI to mute someone)
- A user�s verification status is now also shown in the tweet info page.
- Everything should now work when the user�s @handle (aka screen_name) changes.
- Switching to the same page (i.e. going to a profile from the profile page) now works much better, including the swipe transition as well as proper equality checking.
- Invalid inline media (file size too big, 404, �) should now be properly detected and reacted upon (i.e. remove the widget in the stream, add the link back).
- Underlines in @handles are now properly displayed in the app menu (i.e. the �open account� submenu)
- Animated gifs from Twitter are now also handled (just like other videos).
- Tweets in timelines are now single-click activated. This unifies the behavior with all other lists in the application. Since this interferes with certain user behaviors, there�s a setting to switch back to double-click activation.
- Based on a user�s protection status, we now disable (or hide) retweet buttons of tweets.
sudo add-apt-repository ppa:ubuntuhandbook1/corebird
sudo apt-get update
sudo apt-get install corebird
download file now
Tuesday, August 15, 2017
tTorrent Lite Torrent Client 1 1 2 1 Apk For Android
tTorrent Lite Torrent Client 1 1 2 1 Apk For Android
tTorrent Lite Torrent Client 1.1.2.1 Apk For Android




download file now
Wednesday, August 9, 2017
Tutorial Install Cacti di Ubuntu Server Untuk Kebutuhan Monitoring Trafik Client
Tutorial Install Cacti di Ubuntu Server Untuk Kebutuhan Monitoring Trafik Client
Cacti adalah aplikasi open source yang yang merupakan solusi pembuatan grafik network yang lengkap yang didesign untuk memanfaatkan kemampuan fungsi RRDTool sebagai peyimpanan data dan pembuatan grafik. Cacti menyediakan pengumpulan data yang cepat, pola grafik advanced, metoda perolehan multiple data, dan fitur pengelolaan user. Semuanya dikemas secara intuitif, sebuah interface yang mudah digunakan mudah dipahami untuk jaringan LAN hingga jaringan yang kompleks dengan ratusan perangkat.
- MySQL
- PHP
- RRDTool
- Net-SNMP
- Apache atau IIS (Webserver yang support PHP)
## Install Apache, Mysql, dan PHP
$ sudo apt-get install apache2 mysql-server php5 libapache2-mod-php5
## Install RRDtools
$ sudo apt-get install rrdtools
## Install SNMP dan SNMPD
$ sudo apt-get install snmp snmpd
## Instalasi dan Konfigurasi Cacti
$ sudo apt-get install cacti
Configuring libphp-adodb <ok>
Web Server apache2
Configure database for cacti <ok>
Password of the database administrative user isipasswordrootmysqlanda
## Konfigurasi selesai,selanjutnya restart pada servise SNMP
$ sudo /etc/init.d/snmpd restart
Copy - Paste di Terminal



Cara Konfigurasi Cacti :
- Menambahkan Device :
- Cara menampilkan grafik monitor dari device :

- Lalu pilih Graph Templates yang ingin anda tampilkan. Pilih apa saja yang ingin anda monitor (misal Aktifitas CPU : CPU Usage, Load Average, dan Memory usage, aktifitas interface (eth0 mengenai Total bandwidth) maupun penggunaan ruang HDD). Saya memilih yang In/Out Bytes with Total Bandwidth untuk mengamati inbound dan outbond dari Total Bandwidth pada ethernet saya.3. Jika sudah lengkap maka, klik tombol create.Contoh Hasil Monitoring :Terlihat semua interface yang digunakan didalam router kampus serta grafik IN/OUT Bytes total Bandwidth dari tiap interface yang telah kita pilih untuk dimonitoring sebelumnya. Berikut beberapa tampilan grafik yang saya peroleh setelah beberapa jam.


Source/Reference :
- http://www.cacti.net/
7. Cara Mengalihkan Pelanggan Hotspot Mikrotik Yang Expired Ke Halaman Isolir
download file now
Thursday, August 3, 2017
Ubuntu Setting Deluge as the default bittorrent client
Ubuntu Setting Deluge as the default bittorrent client
I got a tip that Deluge will work way more reliably than the default client of Ubuntu, Transmission. Installing is easy enough, just type:
sudo apt-get install deluge
In the settings I also set it to handle magnet files, but it didnt work out-of-the-box. I had to issue the following command too, to make it work as intended:
gvfs-mime --set x-scheme-handler/magnet deluge.desktop
download file now
Tutorial Setting AirGrid M5 HP Sebagai Client Bridge
Tutorial Setting AirGrid M5 HP Sebagai Client Bridge
Setting AirGrid M5-HP sebagai client ada 3 mode : Bridge, Router dan Soho Router, menurut pengalaman yang saya terapkan, tipe bridge lebih bagus data troughput TX dan RX nya dari pada mode ROuter. kemungkinan itu terjadi karna jika router masih turun kebawah lagi dalam subnet IP yang berbeda, istilahnya perlu translate data sekali lagi untuk dapat sampai pada tujuan.
Oke sekarang langsung saja kita ke menu settingan :
- Masuk user login ke radio user : ubnt password : ubnt
- Masuk Airmax dan sesuaikan seperti gambar :

- Kemudian masuk menu Wirelless dan setting seperti gambar :

- Masuk menu Network, sesuaikan dengan IP Lokal anda



7. Cara Mengalihkan Pelanggan Hotspot Mikrotik Yang Expired Ke Halaman Isolir
download file now
Tuesday, August 1, 2017
tTorrent Torrent Client App 1 2 4
tTorrent Torrent Client App 1 2 4

- Download App
- Install APK
- multiple torrent downloading, queuing
- search for torrents
- Wifi only mode, Wifi or WiMAX mode
- able to limit Upload/Download speed
- web browser integration
- magnet link support
- trackerless torrent (DHT) support
- RSS support(automatically download torrents published in feeds)
- UPnP and NAT-PMP support
- IP filtering support
- proxy support(SOCKS, HTTP)
- encryption
- Fix FC with completed notification on some devices.
- Always play notification sound when a torrent completes.
- Fixed color of highlight in light theme on tablets.
- Use "tTorrent v1.2.4" as user agent string.
.jpg)
.jpg)
.jpg)
.jpg)

Download tTorrent Pro - Torrent Client 1.2.4 APK
download file now

