| Fedora This forum is for the discussion of the Fedora Project. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
10-03-2011, 07:09 AM
|
#1
|
|
LQ Newbie
Registered: Oct 2011
Posts: 5
Rep: 
|
can not access dbus-/usr/local/var/run/system_bus_socket
i am trying to solve my question.
|
|
|
|
10-04-2011, 12:43 AM
|
#2
|
|
Guru
Registered: Apr 2005
Location: /dev/null
Distribution: technixOS
Posts: 5,723
|
Hello,
What is giving you this issue? What are you doing to get this problem? Sure, this error can occur for many issues, but without any other information, and not knowing what exactly you are trying to do, we can not troubleshoot your issue with you.
Cheers,
Josh
|
|
|
|
10-04-2011, 02:09 AM
|
#3
|
|
LQ 5k Club
Registered: Jan 2008
Location: Copenhagen, DK
Distribution: pclos2012.8, Slack1337 DebSqueeze, +50+ other Linux OS, for test only.
Posts: 11,615
|
Fedora : No system files are supposed to be located in /usr/local/.
So either you have some dbus files in /usr/local/ (which is a mistake).
Or an unknown application is by mistake searching dbus in /usr/local/.
Which Fedora is it about ? Which application causes the error ?
..
|
|
|
|
10-04-2011, 08:21 AM
|
#4
|
|
LQ Newbie
Registered: Oct 2011
Posts: 5
Original Poster
Rep: 
|
i used Fedora 15 and tried to test open source code which is boc-wimax S/W.
MS simulator S/W used dbus (/usr/local/var/run/dbus/system_bus_socket) and error message (no file or directory....)
Dbus S/W version was v1.4.16
i found system_bus_socket on /var/run/dbus.
i changed confure option (./configure --localstatedir=/usr/local/var)
but i cound not solve problem
|
|
|
|
10-04-2011, 08:54 AM
|
#5
|
|
LQ 5k Club
Registered: Jan 2008
Location: Copenhagen, DK
Distribution: pclos2012.8, Slack1337 DebSqueeze, +50+ other Linux OS, for test only.
Posts: 11,615
|
"boc-wimax" http://opensource.bolloretelecom.eu/projects/boc-wimax/
git clone git://git.bolloretelecom.eu/boc-wimax.git
cd boc-wimax/ && mkdir build && cd build/ && cmake ../ : No errors.
cd src/ && ./boc-<any-command> : No errors.
Please tell how you started the install.
If dbus was missing at install time, this will do :
# yum install dbus-devel : The Fedora 15 version is 1.4.6 !
Better delete all "dbus-1.4.16".
The system version is not supposed to be changed, and also :
It is a must that the system version is used at compile time.
..
|
|
|
|
10-04-2011, 09:21 AM
|
#6
|
|
LQ Newbie
Registered: Oct 2011
Posts: 5
Original Poster
Rep: 
|
There was no complie error with building boc-wimax S/W
I had a just problem when i executed boc-ms(execution file) as follows
===============================================================
ytjeon@MS-Simulator build]$ sudo src/boc-ms -f ms.conf
[sudo] password for ytjeon:
main: Reading config file ms.conf
main: Using fake R1 interface
wimax_modules_run: starting module DBus Interface
connect: Could not connect to DBus: Failed to connect to socket /usr/local/var/run/dbus/system_bus_socket: No such file or directory
wimax_modules_run: starting module EAP module
[ytjeon@MS-Simulator build]$
|
|
|
|
10-04-2011, 12:48 PM
|
#7
|
|
LQ 5k Club
Registered: Jan 2008
Location: Copenhagen, DK
Distribution: pclos2012.8, Slack1337 DebSqueeze, +50+ other Linux OS, for test only.
Posts: 11,615
|
Of course you can compile with any alien dbus, etc.
But doing so will just make it impossible to use the application.
Code:
[root@localhost ~]# cd /home/knudfl/boc-wimax/
[root@localhost boc-wimax]# ./build/src/boc-ms -f examples/ms.conf
main: Reading config file examples/ms.conf
main: Using fake R1 interface
wimax_modules_run: starting module DBus Interface
wimax_modules_run: starting module EAP module
wimax_modules_run: starting module Tunnel Interface
wimax_run: cmd: ifconfig wimax0 hw ether 00:11:22:33:44:55
wimax_ms_tun_init: opened TAP interface wimax0 (00:11:22:33:44:55)
wimax_modules_run: starting module R1 Interface
wimax_ms_r1_init: listening on R1 socket 32100
It should be no big deal to remove the alien dbus-1.4.16
and then recompile : About one minute would do.
..
|
|
|
|
10-06-2011, 07:10 AM
|
#8
|
|
LQ Newbie
Registered: Oct 2011
Posts: 5
Original Poster
Rep: 
|
i removed dbus-1.4.16 and installed dbus-1.4.6
$./configure --localstatedir=/var
i could solve my problem redarding dbus
i realy appreicate your help
|
|
|
|
10-08-2011, 06:05 AM
|
#9
|
|
LQ Newbie
Registered: Jan 2010
Posts: 8
Rep:
|
Try ./configure --prefix=/usr
|
|
|
|
06-22-2012, 07:25 AM
|
#10
|
|
LQ Newbie
Registered: Jun 2012
Posts: 10
Rep: 
|
[help] error instalation boc-wimax
Quote:
Originally Posted by knudfl
"boc-wimax" http://opensource.bolloretelecom.eu/projects/boc-wimax/
git clone git://git.bolloretelecom.eu/boc-wimax.git
cd boc-wimax/ && mkdir build && cd build/ && cmake ../ : No errors.
cd src/ && ./boc-<any-command> : No errors.
Please tell how you started the install.
If dbus was missing at install time, this will do :
# yum install dbus-devel : The Fedora 15 version is 1.4.6 !
Better delete all "dbus-1.4.16".
The system version is not supposed to be changed, and also :
It is a must that the system version is used at compile time.
..
|
I want to help something for you, I don't have any idea about how to configure AAA wimax security in opnet please help me.
i need help because i found many problems in my final study project.
I'm trying to install boc-wimax, but I met the problem,
For the first step I've managed to install support packet boc-wimax by running the command:
$ sudo apt-get install git-core git libdbus-1-dev libdbus-glib-1-2-dbg libdbus-glib-1-dev libdbus-glib-1-doc pkg-config 2.0 libglib-dev libgnutls-dev cmake libnet1-dev libpcap-dev build-essential
in the second step, when running the command:
git clone git://git.bolloretelecom.eu/boc-wimax.git
I'm having problems with error messages are as follows:
Cloning into ' boc-wimax ' ...
fatal: unable to connect to git.bolloretelecom.eu:
git.bolloretelecom.eu: Name or service not known
Yes ...
when I open http://git.bolloretelecom.eu/
Name the project his only
qnetio.git and gmppextra.git
When in the open one by one, his was no shortlog that lead to project that the boc-wimax
nothing is impossible, because the previous user and can get boc-wimax packet, possibly removed from party bollore?? why?? I'm confused. Help Me!
At the time of opening http://git.bolloretelecom.eu/boc-wimax.git,
the output is coming out
Not Found
The requested URL/boc-wimax.git was not found on this server.
Can anybody help me on this, give link to step by step documentation, hints, or suggestions?
please : palupi.indah3@gmail.com
|
|
|
|
06-22-2012, 07:32 AM
|
#11
|
|
LQ Newbie
Registered: Jun 2012
Posts: 10
Rep: 
|
[help] error instalation boc-wimax
Quote:
Originally Posted by Yong_Jeon
There was no complie error with building boc-wimax S/W
I had a just problem when i executed boc-ms(execution file) as follows
===============================================================
ytjeon@MS-Simulator build]$ sudo src/boc-ms -f ms.conf
[sudo] password for ytjeon:
main: Reading config file ms.conf
main: Using fake R1 interface
wimax_modules_run: starting module DBus Interface
connect: Could not connect to DBus: Failed to connect to socket /usr/local/var/run/dbus/system_bus_socket: No such file or directory
wimax_modules_run: starting module EAP module
[ytjeon@MS-Simulator build]$
|
Hi, Yong Jeon.
Can you help me on this, give link to step by step documentation, hints, or suggestions?
How to build boc-wimax S/W
I have problem when i cloning boc-wimax.
Thanks for advance
|
|
|
|
12-18-2012, 03:03 AM
|
#12
|
|
LQ Newbie
Registered: Dec 2012
Posts: 9
Rep: 
|
Guys I am new in this issue , I am appreciated if you can tell me step by step installation and configuration for boc-ASN , by the way I have all physical elements for wimax only left is ASN-GW
I have :
1- Mobile station (CPE)
2- Base Station
3- AAA Radius server
Thanks a lot
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 07:02 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|