Nurettin Alp

30 Ekim 2009

grub da kernel seçimi

Filed under: Kategorilenmemiş — Etiketler: — admin @ 23:18

sudo aptitude install startupmanager programını kur. sonra çalıştır.
ya da sudo gedit /boot/grub/menu.lst dosyasını düzenle.

29 Ekim 2009

kaffeine programının dvb-s i çalıştıramamasının sebebi

Filed under: Kategorilenmemiş — Etiketler: — admin @ 17:14

şayet aynı makinaya mythtv kurulduysa mythtv tv kartını ele geçiriyor. o yüzden kaffeine çalıştıramıyor. çözümü sudo /etc/init.d/mythtv-backend stop komutunu çalıştırmak.

25 Ekim 2009

virtualbox-ose-modules hatası

Filed under: Kategorilenmemiş — Etiketler: — admin @ 09:49

just found the info:

one command a time

sudo apt-get install virtualbox-ose-source module-assistant
sudo module-assistant auto-install virtualbox-ose-source
sudo /etc/init.d/vboxdrv start

https://help.ubuntu.com/community/VirtualBox/Previous

21 Ekim 2009

kaffeine turksat tp listesi

Filed under: Kategorilenmemiş — Etiketler: — admin @ 22:19

S 10970000 V 30000000 5/6
S 10982000 H 9600000 5/6
S 11012000 V 30000000 5/6
S 11028000 H 2963000 3/4
S 11048000 V 2400000 5/6
S 11054000 H 30000000 5/6
S 11064000 V 13000000 5/6
S 11096000 H 30000000 5/6
S 11096000 V 30000000 5/6
S 11194000 H 7200000 3/4
S 11524000 V 4557000 3/4
S 11554000 H 2916000 2/3
S 11577000 H 2590000 3/4
S 11607000 H 3750000 2/3
S 11627000 H 6666000 5/6
S 11651000 H 2222000 5/6
S 11658000 H 2222000 5/6
S 11712000 V 2963000 3/4
S 11717000 V 2590000 5/6
S 11729000 V 15555000 5/6
S 11742000 V 2965000 5/6
S 11746000 H 27500000 5/6
S 11777000 H 4800000 5/6
S 11804000 V 24444000 5/6
S 11830000 V 7200000 5/6
S 11839000 V 4444000 3/4
S 11845000 V 4444000 5/6
S 11857000 V 3150000 5/6
S 11862000 H 27500000 5/6
S 11870000 V 8888000 3/4
S 11879000 V 2815000 5/6
S 11885000 H 2960000 3/4
S 11906000 H 4800000 5/6
S 11912000 H 3333000 5/6
S 11919000 V 24444000 3/4
S 11932000 H 17500000 3/4
S 11949000 H 10000000 5/6
S 11953000 V 2980000 3/4
S 11957000 V 2960000 3/4
S 11962000 V 3333000 3/4
S 11964000 H 5925000 3/4
S 11973000 H 7200000 3/4
S 11981000 H 5200000 5/6
S 11996000 V 27500000 5/6
S 12015000 H 27500000 5/6
S 12130000 V 27500000 5/6
S 12130000 V 12130000 5/6
S 12139000 H 11111000 5/6
S 12525000 V 30000000 5/6
S 12593000 H 8888000 3/4
S 12594000 V 2500000 5/6
S 12602000 H 4400000 3/4
S 12605000 V 2962000 3/4
S 12608000 H 2950000 5/6
S 12609000 V 3700000 5/6
S 12613000 H 4800000 5/6
S 12615000 V 4800000 5/6
S 12618000 H 2800000 5/6
S 12620000 V 2400000 5/6
S 12628000 V 2180000 5/6
S 12632000 V 2222000 5/6
S 12640000 V 2400000 7/8
S 12643000 H 4800000 5/6
S 12650000 H 4250000 5/6
S 12653000 V 4444000 5/6
S 12656000 H 4444000 5/6
S 12679000 V 8888000 3/4
S 12685000 H 30000000 5/6
S 12695000 V 3333000 3/4
S 12729000 V 30000000 5/6
S 12729000 H 30000000 5/6

http://www.google.com.tr/#hl=tr&source=hp&q=falez+bilgisayar&btnG=Google%27da+Ara&meta=&aq=f&oq=falez+bilgisayar&fp=d6200cebbe7be1d9 linkine tıklarsanız bize destek vermiş olacaksınız teşekkürler.

15 Ekim 2009

postgresql kurulumu

Filed under: Kategorilenmemiş — Etiketler: — admin @ 19:57

PostgreSQL is my preferred database on a Linux environment.This is the sequence I used to install it on my development machine. It is running Ubuntu 8.10 (Intrepid Ibex) beta on a VMware Workstation virtual machine.

I referred to https://help.ubuntu.com/community/PostgreSQL, http://bioinformaticsonline.co.uk/2007/02/26/postgresql_on_ubuntu_linux_how_to and http://hocuspokus.net/2007/11/05/install-postgresql-on-ubuntu-710/ and adapted the instructions a little bit.

Installing the server and basic tools

sudo apt-get install postgresql postgresql-client postgresql-contrib

That got me PostgreSQL 8.3.

Basic Server Setup

First, changing the password of the postgres user:

sudo -u postgres psql postgres
ALTER USER postgres WITH ENCRYPTED PASSWORD ‘<***password***>‘;
\q

Creating the initial databases

sudo -u postgres createdb dev
sudo -u postgres createdb test

That creates a database named “dev”, for development, and another named “test”, for testing.

I use schemas to have multiple applications using a single database.

Setting Up the Admin Pack

The admin pack is said enable better logging and monitoring within pgAdmin.

sudo -u postgres psql < /usr/share/postgresql/8.3/contrib/adminpack.sql

Installing pgAdmin III

pgAdmin III is a database design and management application for use with PostgreSQL.

sudo aptitude install pgadmin3

Using pgAdmin

pgadmin3

I clicked on the “Add a connection to a server” button (top left). I filled in the host (localhost) and password of the postgres user (from the previous ALTER USER command). Then I clicked OK and was connected to the local PostgreSQL server.

Incidentally, I noticed that the databases I created were set to UTF-8 encoding. Great, exactly what I wanted.

Restarting the server

If there is any need, the server can be restarted this way:

sudo /etc/init.d/postgresql-8.3 restart

Other tasks

Some times I might want to open up the server for network access and/or install phpPgAdmin to control it with a Web interface. The articles mentioned in the introduction can help with that. I don’t think I’ll have to do either thing on this development environment, though.

Conclusion

That’s it. Quick, easy and powerful. I really like Ubuntu.

virtualbox ose de host interface ayarı

Filed under: Kategorilenmemiş — Etiketler: — admin @ 06:33

We have already discussed how to install virtualbox and create virtual machines in ubuntu.This tutorial will explain How to set up host interface networking for VirtualBox on Ubuntu.

To start, NAT is by far the easiest way to get your guests connected to the interweb, but you may want to use the guests as servers. For this you need Host Networking.

To configure Host Networking you need to configure network bridging, you basically go through four steps on the host machine

* Install necessary packages

* Declare bridge and real network interface you add to it

* Declare virtual interfaces

* Set permissions on /dev/net/tun

Preparing Your system

You need to install the following packages

sudo apt-get install uml-utilities bridge-utils

Now you need to take the backup of your networking file using the following command

sudo cp /etc/network/interfaces /etc/network/interfaces.backup

You have to edit /etc/network/interfaces on the host machine to declare the bridge, this procedure is slightly different if your host use static or dynamic IP.

sudo gedit /etc/network/interfaces

If you have Dynamic IP, on the host machine:

auto eth0
iface eth0 inet manual

auto br0
iface br0 inet dhcp
bridge_ports eth0 vbox0

# The loopback network interface
auto lo
iface lo inet loopback

“eth0″ is the name of your interface, it can be different depending on your machine.

“br0″ is an arbitrary name for the bridge.

“vbox0″ is an arbitrary name for the device VirtualBox will use, if you want more devices, you just add then like:

bridge_ports eth0 vbox0 vbox1 vbox2 vbox3 vbox4 and so on.

If you are using Static IP addresses modify the interfaces like this:

auto eth0
iface eth0 inet manual

auto br0
iface br0 inet static
address 192.168.0.100
netmask 255.255.255.0
gateway 192.168.0.1
bridge_ports eth0 vbox0 vbox1

# The loopback network interface
auto lo
iface lo inet loopback

Replace 192.168.0.100 with your IP, 255.255.255.0 with your netmask and 192.168.0.1 with your gateway. If you are using static IP addresses for eth0, eth1, etc; you will need to configure the br0 interface using the same settings! Otherwise your system will request an IP address via DHCP. You may add as many vbox# interfaces as you wish as long as they are also declared in /etc/vbox/interfaces; keep reading for details.

Save and exit the file.

You need to restart networking for the changes to take effect using the following command

sudo /etc/init.d/networking restart

Declare virtual interfaces in VirtualBox network file

To declare the virtual interfaces used by VirtualBox you need to edit /etc/vbox/interfaces on the host machine

sudo gedit /etc/vbox/interfaces

# Each line should be of the format :
#interface name user name [bridge]
vbox0 your user name br0
vbox1 your user name br0

Where “vbox#” is an arbitrary name. You may declare here as many virtual interfaces as you wish, as long as they have been properly declared in /etc/network/interfaces. In this specific article, we declared two vbox interfaces in /etc/network/interfaces, then finished setting them up in /etc/vbox/interfaces.

To take the modifications into account, restart the VirtualBox host networking script. If you installed VirtualBox OSE

sudo /etc/init.d/virtualbox-ose restart

If you installed the pre-compiled proprietary version

sudo /etc/init.d/vboxnet restart

The virtual interfaces are now created and added to the bridge.

That’s it! Now the different scripts will take care of cleanly create/configure/remove bridges and virtual interfaces when you boot and shut your system down.

Set permissions on /dev/net/tun

You need to have read/write permissions on the file /dev/net/tun to be able to use the bridge, to set permissions

sudo chown root:vboxusers /dev/net/tun

sudo chmod g+rw /dev/net/tun

This file is created with the default permissions every time the system restarts, to make the new permissions permanent you have to edit the file /etc/udev/rules.d/20-names.rules and change

KERNEL==”tun”, NAME=”net/%k”

to

KERNEL==”tun”, NAME=”net/%k”, GROUP=”vboxusers”, MODE=”0660″

Configure networking in VirtualBox

Once you have everything ready, you can start the VirtualBox management interface on the host machine, configure the network of your virtual machine, and by selecting “host networking”, enter the name of one of the virtual adapter you have configured. Start your virtual machine, it gets a network card presented, that you can set up as you wish (static IP address, DHCP) using the network configuration tools inside the virtual machine.

09 Ekim 2009

eth0 eth1 leri değiştirmek

Filed under: Kategorilenmemiş — Etiketler: — admin @ 17:15

/etc/udev/rules.d/70-persistent-net.rules dosyasından düzenleniyor.

08 Ekim 2009

joomla template modül gürünümü

Filed under: Kategorilenmemiş — Etiketler: — admin @ 06:57

http://www.falezbilgisayarhastanesi.com/?tp=1

veya

http://www.falezbilgisayarhastanesi.com/index.php?tp=1

03 Ekim 2009

vcd datalarını çekmek için kullanılan komut.

Filed under: Kategorilenmemiş — Etiketler: — admin @ 23:45

vcdxrip -C /dev/cdrom -p

Powered by WordPress