sudo apt-get install linux-386
Yazar: nurettin alp
-
mythtv için channels.conf dosyası oluşturma
scan -t 1 -s 0 turksat > channels.conf
-
medion akoya netbook
anatech firması ile yurtiçi kargo arasında yapılan sözleşme numarası: 166838511.
-
türksat symbol rate listesi
10000,12310,13000,15555,17500,2180,2222,2400,24444,2500,2590,27500,2800,2815,2916,2950,2960,2962,2963,2965,2980,30000,3150,3333,3700,3750,4250,4400,4444,4557,4800,5200,5925,6666,7200,8888,9600
-
linuxta ses aygıtı problemi
açıkça söylemek gerekirse bu problem beni çok zorladı. conexant modemimi linuxta çalıştırmak için kullandığım linuxant driver başıma fena halde bela oldu. sebebi oymuş. siz siz olun kernel güncellemelerini yaparken 3 kez düşünün. şu programı indirip kurdum düzeldi. ftp://nurettinalp.com/alsa-driver-linuxant_1.0.20.3_all.deb
-
grub da kernel seçimi
sudo aptitude install startupmanager programını kur. sonra çalıştır.
ya da sudo gedit /boot/grub/menu.lst dosyasını düzenle. -
kaffeine programının dvb-s i çalıştıramamasının sebebi
ş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.
-
virtualbox-ose-modules hatası
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 starthttps://help.ubuntu.com/community/VirtualBox/Previous
-
kaffeine turksat tp listesi
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 -
postgresql kurulumu
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***>‘;
\qCreating the initial databases
sudo -u postgres createdb dev
sudo -u postgres createdb testThat 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.