***JNewstarのためのセットアップ [#maca6e8d]
-
#pre{{
sudo apt-get install default-jre
}}
-
#pre{{
sudo apt-get install lib32gcc1
sudo apt-get install libgcc1:i386
}}
([[https://forums.ubuntulinux.jp/viewtopic.php?id=18931>https://forums.ubuntulinux.jp/viewtopic.php?id=18931]])
***supermongo [#l798251a]
-sm2_4_7.linux-vine65.tar.gz を使わないとコンパイルエラーをおこす。
-オリジナルとの違いは, sm2_4_7/src/bison/new.h で
#pre{{
//#define FREE(x) (x && free((char *) (x)))
#define FREE(x) (free((char *) (x)))
}}
と変えただけ
***ブート途中で固まる問題(2019.06.24) [#ra1b5c4a]
-リカバリモードでは立ち上がった
-まずブートメッセージを表示するようにする : [[http://fj.hatenablog.jp/entry/2016/04/01/004620>http://fj.hatenablog.jp/entry/2016/04/01/004620]]
#pre{{
/etc/default/grubを編集して、
GRUB_CMDLINE_LINUX_DEFAULT="nosplash"
とする。その後、
# update-grub2
と打つと、/boot/grub/grub.cfgが更新される。
}}
-"Started User Manager for UID 120"と表示された後で固まっている。
-[[https://askubuntu.com/questions/1037922/ubuntu-18-04-hangs-on-booting-with-message-started-user-manager-for-uid-120-on>https://askubuntu.com/questions/1037922/ubuntu-18-04-hangs-on-booting-with-message-started-user-manager-for-uid-120-on]]
#pre{{
Enter Ubuntu by recovery mode, from the main menu choose the first option,
the one about the restart, give always ok and you should arrive to the desktop;
once in, update and upghrade everithing and after that open a terminal and type
"sudo nano /etc/gdm3/custom.conf",
once the file is opened, in the [daemon] section
uncoment "WaylandEnable=false" ,
save and restart, problem fixed ;-) .
}}
で解決