看到幾次這個詞,一開始一直不理解這個概念
後來才知道這是商用終端
[Failed 1]
標題沒有command也未訂月
信件內容有東西,自帶的簽名檔
Command has failed:
> Best Regards,
Command not understood: ignoring end of message.
-----------==========================================-----------
For further information, check the mailing list web site
https://lists.eurecom.fr/sympa
[Failed 2]
標題格式不合
==========================================
No command found in message.
-----------==========================================-----------
For further information, check the mailing list web site
https://lists.eurecom.fr/sympa
[Successed]
Welcome to list openair5g-user@lists.eurecom.fr
Your subscription email is __________________
The OpenAirInterface5G User mailing list
The list homepage: https://lists.eurecom.fr/sympa/info/openair5g-user
General informations about mailing lists:
https://lists.eurecom.fr/sympa/help/introduction
Several mailing lists are hosted on Eurecom's sympa server.
這是另一個自己獨立出來的郵件列表
有在開發相關的建議訂閱
Some projects have their own mailing list
Clicking on the link [subscribe] (or [unsubscribe]) above should open your email client. You then simply need to send the email.
If clicking the above link does not work, manually send an email to sympa@lists.eurecom.fr with the subject subscribe [list name] [your first name] [your last name] (unsubscribe instead of subscribe to unsubscribe).
[list name] is one of openair5g-user, openair5g-devel, openaircn-user, openaircn-devel depending on which mailing list you want to subscribe to (or unsubscribe).
如何對信箱列表提問
Refer to this page.
中文論壇
There is also a forum in Chinese dedicated to OpenAirInterface hosted at the Open5G Lab.
我自己連是看起來是這個中文論壇網站掛掉了
提問
Read this post before asking questions on the mailing lists.
郵件列表用途
對openairinterface5g User 提問的問題,不要包括開發的問題
針對openairinterface5g 項目開發提問
對openair-cn User 提問的問題,不要包括開發的問題
針對openair-cn項目開發提問
提問時將網路設定的資訊列出,這邊給了兩個建議的指令
不要將相同問題寄給多個郵件列表,會對大家會造成垃圾郵件
社群會限制對你的幫助資源跟時間,請謹慎閱讀這一個確保你能得到正確的回應
請告訴大家你的branch/commit ID, linux kernel version還有CPU種類等
(其他軟硬體資訊也可以一併附上,有助於大家幫你除錯)
在這些裝置放core network 或者gNB通常是在server或者usrp上
一般來說不太會是個人開發用的電腦
因此會建議建立SSH連線
這裡有兩部分
1.建立SSH
這樣可以用console連線
2.讓VSCode可以SSH同步修改程式碼
https://linuxhint.com/generate-ssh-key-ubuntu/
建議跳過step4不用禁用密碼
SSH建立
https://linuxhint.com/generate-ssh-key-ubuntu/
https://www.bilibili.com/read/cv9303578
Permission denied (publickey).
換成需要密碼就可以了
Please select password used, or sometimes it will connection error
斷線方法
https://linuxconfig.org/how-to-disconnect-from-ssh-connection
在瀏覽OAI資料時,遇到http2網站問題
範例: https://gitlab.eurecom.fr/oai/openairinterface5g/-/wikis/OpenAirSystemRequirements
下面在這兩個瀏覽器出現的錯誤訊息代表,想瀏覽的網站是http2的
Firefox NS_ERROR_NET_INADEQUATE_SECURITY
Chrome ERR_HTTP2_INADEQUATE_TRANSPORT_SECURITY
在蘋果裝置Safari可直接瀏覽
但windows跟linux裝置的瀏覽器通常不行了
目前實測Firefox ESR在windows跟ubuntu可以正常瀏覽
https://www.mozilla.org/zh-TW/firefox/enterprise/
安裝好另外做下面設定
新的空白分頁網址列輸入 about:config
If a warning screen comes up, press the I Accept the Risk button. At the top of the screen is a search bar.
搜尋network.http.spdy.enabled.http2
將其改成false
Setting
NS_ERROR_NET_INADEQUATE_SECURITY indicates that the server initiates a HTTP/2 connection, but Firefox detects an invalid TLS configuration in the server response (server negotiated HTTP/2 with blacklisted cipher suites). This is likely not an issue with the certificate, but this is a problem with the server setup and there are invalid cipher suites for HTTP/2 claimed (INADEQUATE_SECURITY).
http://httpwg.org/specs/rfc7540.html#TLSUsage There might also be other software that acts as a MITM and is interfering. When HTTP/2 is enabled and used then the requirements are much stricter than with HTTP/1.1 You can get the NS_ERROR_NET_INADEQUATE_SECURITY error message in case the server isn't configured properly.
A workaround to fix this ANNOYING issue is; network.http.spdy.enabled.http2 = false in about:config
Type about:config<enter> in the address bar. If a warning screen comes up, press the I Accept the Risk button. At the top of the screen is a search bar.
但是Ubuntu會跟一般的firefox在同一個圖示下
我會建議用chrome跟firefox給OAI官網專用
以安全性來說會比較好,畢竟這個ESR的安全性是比較差的
Problem
$sudo apt-get install -y libcppunit-1.14-0
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libcppunit-1.14-0
E: Couldn't find any package by glob 'libcppunit-1.14-0'
E: Couldn't find any package by regex 'libcppunit-1.14-0'
Reason
When we try to search the version, we will find that the version is only 1.15-0 now.
So install it mannually.
$ sudo apt-cache search libcppunit
libcppunit-subunit-dev - SubunitTestProgressListener for CPPUnit - Development headers
libcppunit-subunit0 - SubunitTestProgressListener for CPPUnit - C++ shared library
libcppunit-1.15-0 - Unit Testing Library for C++
libcppunit-dev - Unit Testing Library for C++
libcppunit-doc - Unit Testing Library for C++
Solution1
sudo apt-get install libcppunit=1.14-0
Solution2
Go to the page
Follow below setting and download the install file
Install the package
$ sudo dpkg -i [filename.deb]