Posts

Showing posts from September, 2012

Kişisel Çalışma Notlarım

Notlarım ls -l (sorting in various criteria) ls -la (shows hidden files) ls -lt (displays newest first) ls -lx (displays files with no extension first) ls -lS (displays largest first) ls -ltr (r indicates sorting the files in reverse) command --help (help about the command) man command (manual pages about the command) info command mkdir /tmp/test (makes a directory called test in the tmp directory) touch ~/Documents/myfile.txt (Usually, the touch command updates the modification and access date for an existing file. If you use touch with a filename which does not exist in your target directory, it creates a new file.) cp ~/Documents/myfile.txt . (Do not forget the dot at the end. This command tells Bash to go to your home directory and to copy myfile.txt from the Documents subdirectory to the current directory, /tmp/test, without changing the name of the file.) mv myfile.txt tuxfile.txt (To rename the file) rm tuxfile.txt (Bash deletes the file without any confirmation.)...

Android Notları

Android Notları --> 1. Android sdk linux indirip platform-tools altında bulunan adb executable dosyayı shell de kullanarak android cihazın konsoluna girmeyi başardık. Bunun için usb bağlantımızı yaptık ve shell'de platform-tools dizini içinde sırasıyla; ./adb kill-server (server durdur) ./adb devices (bağlı olan cihazları bul) ./adb shell (cihazın konsoluna eriş) komutlarını yazdık. Böylece android cihazın içinde bulunan dosyalara erişebildik. 2. Video performansını test etmek amacıyla daha önceden elimizde bulunan video dosyaları üzerinde oynamalar yaparak cihaza göndermeyi ve oynatmayı planladık. Bunun için konsolda; ffmpeg -i video.avi (video.avi hakkında bütün teknik video ayrıntısını verir) ffmpeg -i video.avi -ss 10 -t 20 -r 24 -b:v 1000k -minrate 1000k -s 640x360 -vcodec copy -acodec copy video.mp4 (argümanlar sırasıyla; -ss başlangıç süresi -t duration -r fps oranı -b:v bitrate oranı (kB cinsinden) -minrate minimum bitrate or...

Jetway Server'a Linux Kurulumu

JETWAY MINI KASA LINUX KURULUMU VE ÇIKAN PROBLEMLERE ÇÖZÜMLER Bootable Usb Kurulum Medyasını Oluşturma İşlemi: Ubuntu web sitesi üzerindeki 32-bit ubuntu 12.04 LTS sürümü download edilir: http://www.ubuntu.com/download/desktop/thank-you?distro=desktop&release=lts&bits=32 download işlemi bittikten sonra, usb stick kullanarak kurulum yapmak için, ilk önce konsolda, “fdisk -l“ komutu girilir ve usb stick'in hangi sürücüde olduğu görülür. Örneğin dev/sdb üzerinde ise, kurulum dosyasını usb içine atarak bootable yapabilmek için şu komut satırı girilir: “dd if=/home/ibrahim/Downloads/linuxmint-11-gnome-cd-nocodecs-32bit.iso of=/dev/sdb” (Bu komut satırı çok dikkatli girilmelidir, zira if ve of parametrelerinin yer değiştirilerek girilmesi sonucu istenmeyen sonuçlar doğabilir.). Belli bir süre bekledikten sonra bootable usb hazır durumdadır.   Ubuntu'yu Kurma İşlemi: Bilgisayarı başlatıp ESC tuşuna basarak (basılı tutmadan) boot menu açılır ve buradan USB boot seçi...