Saturday, July 20, 2013

Ubuntu 11.10 waiting up to 60 more seconds for network configuration 'problem'

!-- google_ad_client = "ca-pub-9384858954425908"; /* eeecoder_footer_AdSense1_728x90_as */ google_ad_slot = "5232400677"; google_ad_width = 728; google_ad_height = 90; // --> I upgaded my ubuntu 11.04 Natty to ubuntu 11.10 Oneiric Ocelot a few weeks ago. To handle some issues I have needed to modify /etc/network/interfaces file. After some modifations I get the message:"waiting up to 60 more seconds for network configuration"...
Read More

Friday, July 19, 2013

Modelling a Digital Communication System using Matlab

I modelled the digital communication system by a simple script. In first, if you haven't installed Matlab in your system yet, you can see my article about installation of matlab on Linux. A digital telephone converts an analog signal(our voice) to a digital signal before transmission. While the analog signal takes on real number...
Read More

Vodafone Mobile Connect Software in Ubuntu

To install vodafone mobile connect software enter the following commands into terminal: wget https://forge.betavine.net/frs/download.php/626/vodafone-mobile-connect_2.25.01-1_all.deb sudo dpkg -i vodafone-mobile-connect_2.25.01-1_all.deb After the installation you can run the software from Applications->Internet Category. The picture...
Read More

Android x86 Wifi-Wireless Problem

Hi guys! Nowadays most of the people have a trouble with Android x86 wifi-wireless problem. To handle this I figured out a solution. If you haven't tried Android on a pc, you may  wanna see my post about how to install android on pc. Solution: Open Android  and press Ctrl+Alt+F1 to open terminal then type the following rows: netcfg        --to see what you have as connection devices in your computer  ...
Read More

Thursday, July 18, 2013

Worldlist Maker with Python

Fistly, if you haven't installed python in your system, you can wanna read my post about installation of python on linux. Some peoples, especially hackers and that who wanna be a hacker :)  needs wordlistmaker scripts to hack passwords. A wordlistmaker script required to be very fast and very efficient. Because, most wordlists have...
Read More

Sunday, May 26, 2013

How to Encrypt Files in Linux

To encrypt a file we are going to use gpg software. That software is a command line executable software. First you need to install it if it is not installed before in your pc. To do this open a terminal and type: sudo apt-get install gpg After that compress the file you want to encyrpt. And type in the terminal gpg -c fodername.tar.gz and then type your password twice. It's done :). Delete the file you encrypted. Use foldername.tar.gz.gpg...
Read More

How to shutdown the Linux PC automatically at a specific time

Linux has a beautiful code which provides the PC can close itself at a specific time which is determine by the user. :) To do this use the command given the next line: sudo shutdown -h x here x is the time with unit of minutes....
Read More