Showing posts with label linux. Show all posts
Showing posts with label linux. Show all posts

Thursday, October 10, 2013

Shared Folder on Virtualbox on Linux Host

There are  a lot of people who use windows on virtualbox which is hosted by a linux distribution. For example, I installed virtualbox on Linux Mint 1.14 to setup Windows XP on it and use this for some software that I need for my education on Electrical & Electronics Engineering. Let's start with the most known problem. Problem : When we use virtualbox the most important problem is that how to share folders or directories...
Read More

Wednesday, August 21, 2013

Firefox Babylon Add-on and More

Everyone knows Babylon dictionary, it is one of the most common dictionary that used in the world. A free babylon extension for firefox is available here. It works quite enough, the requirement is just clicking the word that you wanna search twice. Babylon Dictionary But missing part is that: It doesn't save the word you search...
Read More

Wednesday, August 7, 2013

CPU Temperature Alarm System

Hi,  I want to write about Cpu Temperature Alarm System I have done by using advantages of linux kernel and linux shell. (I used bash shell in my script by the way.) One of the biggest advantages of linux is to reach hardware components easily through kernel. The communication with hardware comes true as given in the following steps: 1....
Read More

Monday, August 5, 2013

Tuning Processes

Introduction In real-time systems some processes can cause huge problems, or slowing down the system performance. In such situations we need to tune the running processes. With tuning I mean stopping or killing the process. To be able to do this and to know when we need to know what processes currently runnig and when process start up? Especially, administrators need this. Because unexpected processes needs to be down or...
Read More

Saturday, August 3, 2013

System Logs in Linux

Introduction to syslogd syslog daemon responsible from syslog. This structure collects all messages from running programs to the logs. It categorizes all of messages according to its types and priority, and presents to us. This is very useful for error debugging. We can use this messages to find the actual problem if we have any one at any time. Actually I used that in my previous post. You may wanna see it. Reading Logs Now,...
Read More

Wednesday, July 31, 2013

Wireless networks are not being seen by network manager

Summary: In this article I am going to show you the solution of the problem: wireless networks are not being seen by network manager even if wireless card drivers are installed. Yesterday, I reinstalled Linux 1.14 Nadia in my pc. After that I installed my wireless card driver which is Broadcom Corporation BCM4312. I learned its name and version from lspci command. lspci is a command on Unix-like operating systems...
Read More

Thursday, July 25, 2013

CPU Sıcaklık Alarmı Sistemi

Merhabalar, bu yazımda linux kernel ve linux shell in verdiği harika avantajlardan faydalanarak yaptığım CPU Sıcaklık Alarmı Sistemini anlatmak istedim. Linux un bize sağladığı en büyük avantajlardan biri kolaylıkla hardware bileşenlerine ulaşabilmemizdir. Hardware ile iletişim şu şekilde gerçekleşir : 1. Kullanıcı isteklerini kodlar...
Read More

Monday, July 22, 2013

Install Android SDK on Eclipse On Linux Distributions

To start developing Android apps we need to first choose an IDE platform or environment. I recommend Eclipse. It is really good and efficient to develop android apps. I will give the step by step installation of Eclipse and set up it to develop android apps. Reqired Steps: 1. Open a terminal by typing Ctrl+F2 2. Type 'sudo apt-get install eclipse' enter, enter your password , this will install Eclipse platform. 3.  After...
Read More

Sunday, July 21, 2013

Linux Mint 1.14 Nadia Wireless Problem

I installed Linux Mint 1.14 Nadia a few months ago. Wireless  wasn't working because of the driver was not installed. In some linux mint distributions you can have this problem, nadia is one of them. Also, in some ubuntu distributions you can have the wireless problem too. To solve this problem you need to install wireless driver and reboot your computer or restart network services. To doing this there is several methods....
Read More

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

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

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

Sunday, March 17, 2013

Linux Dağıtımlarına Matlab Kurmak

Kuruluma başlamadan önce matlab2012a iso dosyasını aşağıdaki torrent linkinden indiriyoruz. http://thepiratebay.se/torrent/7834627/Mathworks_Matlab_R2012b_UNIX_ISO İndirdiğimiz iso dosyasını /home/kullanıcı-isminiz/Matlab dizinine çıkartıyoruz. Çıkarma işlemi bazı bilgisayarlarda 10 dakikayı bulabilir malum iso dosyası 5GB..  Bu...
Read More

Linux'a Python Kurmak

Normalde linuxun bütün sürümlerinde python kuruludur. Ancak bu kurulu olan sürüm python2x dir.Eğer ki python3x sürümlerinden birini kurmak istiyorsanız yazıyı okumaya devam edin.  Python kurulumuna geçmeden önce bazı ayarlamalar yapmamız lazım. Birinci Adım: Gerekli paketlerin kurulması Alt+F2 ile terminali açıyoruz. Ve şu kodları...
Read More