Difference between revisions of "OpenBTS: dari GIT ttsou"
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
Onnowpurbo (talk | contribs)  (New page:  autoreconf -i  ./configure --with-usrp1  make  ==Referensi==  * http://gnuradio.org/redmine/projects/gnuradio/wiki/OpenBTSUHD  ==Pranala Menarik==  * OpenBTS  ===Persiapan===  * [[USR...)  | 
				Onnowpurbo (talk | contribs)   | 
				||
| Line 1: | Line 1: | ||
| + | * [[GNURadio: Ubuntu 11.10 Install | Compile dan Install GNURadio]]. Tanpa [[GNURadio]] terinstall maka [[OpenBTS]] tidak mungkin di instalasi.  | ||
| + | |||
| + | ==Instalasi Paket Pendukung dan Asterisk==  | ||
| + | |||
| + | Instalasi paket / library pendukung tambahan  | ||
| + | |||
| + |  sudo apt-get install autoconf libtool libosip2-dev libortp-dev \  | ||
| + |  libusb-1.0-0-dev g++ sqlite3 libsqlite3-dev erlang \  | ||
| + |  asterisk asterisk-mysql cmake  | ||
| + | |||
| + | Load [[GNURadio]]  | ||
| + | |||
| + |  sudo ldconfig  | ||
| + |  export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/  | ||
| + | |||
| + | ==Download Source Code OpenBTS-UHD ttsou via GIT==  | ||
| + | |||
| + |  sudo su  | ||
| + |  cd /usr/local/src  | ||
| + |  svn co http://wush.net/svn/range/software/public openbts  | ||
| + | |||
| + | |||
| + | ===Edit OpenBTS===  | ||
| + | |||
| + |  sudo su  | ||
| + |  cd /usr/local/src/openbts/openbts/trunk/apps  | ||
| + | |||
| + | Edit  | ||
| + | |||
| + |  vi OpenBTS.cpp  | ||
| + | |||
| + | Edit  | ||
| + | |||
| + |  // Start the transceiver interface.  | ||
| + |  // Sleep long enough for the USRP to bootload.  | ||
| + |  sleep(5);  | ||
| + | |||
| + | supaya menjadi  | ||
| + | |||
| + |  sleep(15);  | ||
| + | |||
| + | ==Install OpenBTS==  | ||
| + | |||
| + | Compile & Instalasi [[OpenBTS]]  | ||
| + | |||
| + |  sudo su  | ||
| + |  cd /usr/local/src/openbts/openbts/trunk  | ||
| + |  autoreconf -i  | ||
| + |  ./configure --with-usrp1  | ||
| + |  make clean  | ||
| + |  make  | ||
| + |  make install  | ||
| + |  cd /usr/local/src/openbts/openbts/trunk/apps  | ||
| + |  ln -s ../Transceiver52M/transceiver   | ||
| + |  cd /usr/local/src/openbts/openbts/trunk/  | ||
| + |  sudo mkdir -p /usr/local/share/usrp/rev4/  | ||
| + |  sudo cp Transceiver52M/std_inband.rbf /usr/local/share/usrp/rev4/  | ||
| + | |||
| + | |||
| + | |||
  autoreconf -i  |   autoreconf -i  | ||
  ./configure --with-usrp1  |   ./configure --with-usrp1  | ||
| Line 6: | Line 66: | ||
* http://gnuradio.org/redmine/projects/gnuradio/wiki/OpenBTSUHD  | * http://gnuradio.org/redmine/projects/gnuradio/wiki/OpenBTSUHD  | ||
| + | * http://gnuradio.org/redmine/projects/gnuradio/wiki/OpenBTSBuildingAndRunning  | ||
| + | * http://wush.net/trac/rangepublic/wiki/BuildInstallRun  | ||
| + | * http://en.wikipedia.org/wiki/Regular_expression  | ||
| + | * http://www.mentby.com/modesto-aguirre-gomez/is-it-possible-to-run-the-usrp-at-64mhz-with-openbts28.html  | ||
| + | * http://www.mentby.com/Group/openbts-discuss/is-it-possible-to-run-the-usrp-at-64mhz-with-openbts28.html  | ||
==Pranala Menarik==  | ==Pranala Menarik==  | ||
Revision as of 10:14, 26 April 2012
- Compile dan Install GNURadio. Tanpa GNURadio terinstall maka OpenBTS tidak mungkin di instalasi.
 
Instalasi Paket Pendukung dan Asterisk
Instalasi paket / library pendukung tambahan
sudo apt-get install autoconf libtool libosip2-dev libortp-dev \ libusb-1.0-0-dev g++ sqlite3 libsqlite3-dev erlang \ asterisk asterisk-mysql cmake
Load GNURadio
sudo ldconfig export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/
Download Source Code OpenBTS-UHD ttsou via GIT
sudo su cd /usr/local/src svn co http://wush.net/svn/range/software/public openbts
Edit OpenBTS
sudo su cd /usr/local/src/openbts/openbts/trunk/apps
Edit
vi OpenBTS.cpp
Edit
// Start the transceiver interface. // Sleep long enough for the USRP to bootload. sleep(5);
supaya menjadi
sleep(15);
Install OpenBTS
Compile & Instalasi OpenBTS
sudo su cd /usr/local/src/openbts/openbts/trunk autoreconf -i ./configure --with-usrp1 make clean make make install cd /usr/local/src/openbts/openbts/trunk/apps ln -s ../Transceiver52M/transceiver cd /usr/local/src/openbts/openbts/trunk/ sudo mkdir -p /usr/local/share/usrp/rev4/ sudo cp Transceiver52M/std_inband.rbf /usr/local/share/usrp/rev4/
autoreconf -i ./configure --with-usrp1 make
Referensi
- http://gnuradio.org/redmine/projects/gnuradio/wiki/OpenBTSUHD
 - http://gnuradio.org/redmine/projects/gnuradio/wiki/OpenBTSBuildingAndRunning
 - http://wush.net/trac/rangepublic/wiki/BuildInstallRun
 - http://en.wikipedia.org/wiki/Regular_expression
 - http://www.mentby.com/modesto-aguirre-gomez/is-it-possible-to-run-the-usrp-at-64mhz-with-openbts28.html
 - http://www.mentby.com/Group/openbts-discuss/is-it-possible-to-run-the-usrp-at-64mhz-with-openbts28.html
 
Pranala Menarik
Persiapan
- USRP: High Precision Clock
 - USRP: Menyambungkan ClockTamer ke USRP1
 - USRP: Kalibrasi ClockTamer
 - USRP: ClockTamer Control Protocol
 - USRP: Instalasi Board
 - OpenBTS: GIT Source Code
 
OpenBTS 2.6
- GNURadio
 - GNURadio: Ubuntu Install
 - GNURadio: Ubuntu Install GNURadio 3.4.2 *RECOMMENDED*
 - GNURadio: Ubuntu Install GNURadio 3.4.2 Clock 52MHz *RECOMMENDED*
 - GNURadio: Contoh Aplikasi
 - GNURadio: Spectrum Analizer GSM
 - GNURadio: Mengubah board RFX1800 menjadi RFX900
 - GNURadio: Programming Untuk Pemula
 - OpenBTS: Ubuntu Install
 - OpenBTS: Ubuntu Install OpenBTS 2.6 Clock 52MHz
 - OpenBTS: Konfigurasi
 - OpenBTS: Kalibrasi
 - OpenBTS: Konfigurasi Asterisk untuk OpenBTS
 - OpenBTS: Menjalankan smqueue
 - OpenBTS: Mengoperasikan BTS
 - OpenBTS: Tampilan di Nokia saat pakai OpenBTS
 - OpenBTS: Operasi 1800 MHz
 - OpenBTS: Beberapa Tips
 - OpenBTS: USRP2
 - OpenBTS: Amplifier
 - OpenBTS: SMS
 - AirProbe
 
OpenBTS 2.8
- GNURadio: Ubuntu 11.10 Install NOT RECOMMENED
 - GNURadio: Ubuntu 11.10 instalasi menggunakan Repo NOT RECOMMENDED
 - GNURadio: Ubuntu 11.10 Instal GNURadio 3.3.0
 - GNURadio: Ubuntu 11.10 Instal GNURadio 3.4.2
 - GNURadio: Ubuntu 11.10 Install dari GIT GNURadio RECOMMENDED
 - GNURadio: Ubuntu 11.10 cek USRP Daughter Board
 - GNURadio: UHD
 - GNURadio: UHD Image
 - GNURadio: UHD Identifikasi Device
 - OpenBTS: Ubuntu 11.10 Install
 - OpenBTS: dari GIT ttsou RECOMMENDED
 - OpenBTS: 2.8 dari SVN Install RECOMMENDED
 - OpenBTS: 2.8 Instalasi Real Time Asterisk
 - OpenBTS: 2.8 Konfigurasi
 - OpenBTS: Database SQLite
 
Ettus E110
- OpenBTS: E110 Cara Login
 - OpenBTS: E110 Install Image di MicroSD
 - OpenBTS: E110 Cek Daughter Board
 - OpenBTS: E110 Mengubah Master Clock
 - OpenBTS: E110 Kalibrasi Clock
 - OpenBTS: E110 Bekerja dengan opkg
 - OpenBTS: E110 GNURadio
 - OpenBTS: E110 Install UHD Image
 - OpenBTS: E110 Instalasi OpenBTS
 - OpenBTS: E110 Instalasi OpenBTS 2.6 NOT RECOMMENDED
 
Lain Lain
- OpenBTS: Materi Magang di ICTWATCH
 - OpenBTS: Seminar Outline
 - OpenBTS: Workshop Outline
 - Membuat Base Station GSM Open Source
 - Teknologi Selular
 - GSM: Daftar Channel Frekuensi
 - Wireless Internet
 - OpenBSC
 - AirProbe
 - Base station subsystem
 - GSM
 - Asterisk
 - Mobile phone
 
Catatan Legal dan Pendukung
- Siapa Bilang OpenBTS Ilegal?
 - OpenBTS: Catatan MNC dan MCC Indonesia
 - OpenBTS: Catatan MNC dan MCC COOL
 - OpenBTS : Alokasi Frekuensi Operator GSM Indonesia
 - GSM: Daftar Channel Frekuensi