2018-01-01から1年間の記事一覧
次のメッセージが表示される qwt-6.0.1> mingw32-make qwt_clipper.cpp: In instantiation of 'Polygon QwtPolygonClipper<Polygon, Rect, Point, T>::clipPolygon(const Polygon&, bool) const [with Polygon = QPolygon; Rect = QRect; Point = QPoint; T = int]': qwt_clipper.cpp:</polygon,>…
Organizations ≒ タグ HasComponent ≒ フォルダー 参考 https://opcfoundation.org/forum/opc-ua-standard/difference-between-referencetype-organizes-and-hascomponent/
エラーメッセージ autoheader: error: AC_CONFIG_HEADERS not found in configure.ac 訳 autoheader: エラー: configure.ac に AC_CONFIG_HEADERS がありません 環境 autoheader (GNU Autoconf) 2.69 原因 "AM_CONFIG_HEADER" が使われていた。 対処 "AC_CON…
エラーメッセージ configure.ac: error: no proper invocation of AM_INIT_AUTOMAKE was found. 原因と対処 typo してた。 誤:AC_INIT_AUTOMAKE 正:AM_INIT_AUTOMAKE 修正後は、aclocal コマンドからやり直す。 $ aclocal $ automake -a -c
「そんなものはない」 ので次のコマンドで代用している。 $ grep ^\w\+: Makefile
環境 Ubuntu 14.04 対処 次のパッケージをインストールする。 * qtbase5-examples * qtbase5-doc-html 参考文献 https://askubuntu.com/questions/450983/ubuntu-14-04-qtcreator-qt5-examples-missing
SoMachine → 汎用 SoMachine Basic → M221 専用 https://www.schneider-electric.com/en/faqs/FA307649/
If multiple recipes provide an item, this variable determines which recipe should be given preference. You should always suffix the variable with the name of the provided item, and you should set it to the PN of the recipe to which you wan…
A list of aliases that a recipe also provides. These aliases are useful for satisfying dependencies of other recipes during the build (as specified by DEPENDS). レシピが提供するエイリアスのリストです。これらのエイリアスは、ビルド中に( DEP…
事象 python3 の実行が次のエラーで失敗する $ python3 Fatal Python error: Py_Initialize: Unable to get the locale encoding ImportError: No module named 'encodings' Aborted 翻訳: Python の致命的なエラー: Py_Initialize: ローカルのエンコードを…
問題 Qt Creator で UTF-8 の .pro ファイルを開く プロジェクトにファイルを追加する .pro ファイル内の日本語が文字化けしている ファイル追加前 # ハローワールド ファイル追加後 # ハローワール��? 環境 Qt Creator 3.2.1 (with Qt 5.3.2) Windows 7 Pro…
問題 Anaconda Prompt の起動時に次のエラーが発生する。 Python は動作を停止しました 原因 旧い環境変数 "PYTHONHOME=C:\Python27" が残っていたため。 解決方法 環境変数 "PYTHONHOME" を削除する。 参考 Issue 27054: Python installation problem: No m…
$ csplit 差分ファイル /^diff\ / {*} 例: $ csplit a.diff /^diff\ / {*}
結論 "rootfs" 行は無視して、"/dev/root" 行を見る。 説明 "rootfs" は RAM(メモリー)上に作られる起動初期のルートファイルシステム "/dev/root" が正規のルートファイルシステム 参考 linux - Mount ext2 as totally readonly system from busybox - St…
$ sudo x11vnc -auth /var/run/lightdm/root/:0
pamusb-conf(1) PAM_USB pamusb-conf(1) 名前 pamusb-conf - pam_usb 構成ツール 要項 pamusb-conf [--help] [--verbose] [--config=path] [--add-user=name | --add-device=name] 説明 pamusb-conf は pamusb.conf 構成ファイル生成を助けるよう設計された…
詳細 ログに次のメッセージが出力される。 checking for new_panel in -lpanelw... no configure: error: panelw library not found 原因 不明 対処 alsa-tools と ncurses をリビルドする。 $ bitbake alsa-tools -c cleansstate $ bitbake ncurses -c clea…
evtest コマンドを使う。 # evtest No device specified, trying to scan all of /dev/input/event* Available devices: /dev/input/event0: Power Button /dev/input/event1: Sleep Button /dev/input/event2: AT Translated Set 2 keyboard /dev/input/eve…
コード a.cpp: const char * const Hello = "Hello."; b.cpp: extern const char * const Hello; エラー b.cpp:001: エラー: undefined reference to `Hello' 原因 C++ では const は、暗黙 static になるため。 解決方法 定義行に "extern" を付加する。 a.…
問題 ネットワークアダプターのプロパティーで Microsoft Network Adapter Multiplexor Protocol をインストールしようとすると「必要なモジュールが見つかりません。」といった旨のエラーが表示され再インストールできない。 環境 Windows 10 Enterprise 20…
そもそもパッケージが足りてないっぽい。次のコマンドでインストール。 # apt install console-setup console-data dialog
できない。 この項目は、1つか全てかで考えるようだ。 環境 MariaDB 10.1.26 Debian 9.3 参考 https://serverfault.com/questions/139323/how-to-bind-mysql-server-to-more-than-one-ip-address
pamusb-agent(1) PAM_USB pamusb-agent(1) 名前 pamusb-agent - pam_usb イベントハンドラー 要項 pamusb-agent [--help] [--config=path] [--daemon] [--check=path] 説明 pamusb-agent は USB デバイス挿入時 (pam_usb を通して一度認証されます) と 抜取…
エラー: VIRTUAL-RUNTIME_init_manager (sysvinit) の設定が DISTRO_FEATURES で有効な項目と一致するようにしてください。
あれこれ検索して、やっとヒットしたのでメモ。 Up Down Left Right Up Left Up Right Down Left Down Right 8方向を英語で表すとそれぞれどうなるのでしょうか? - ゲームコン... - Yahoo!知恵袋 より
手順 sudo apt-get remove --purge `dpkg --get-selections | grep i386 | awk '{print $1}'` sudo dpkg --remove-architecture i386 参考文献 package management - How to disable multiarch support? - Ask Ubuntu