sudo apt-get install -y nodejs
を見ながら
$ curl -sL https://deb.nodesource.com/setup | sudo bash –
$ sudo apt-get install -y nodejs
確認
$ node -v
v0.11.13
$ npm -v
1.4.9
なんか古いですね..
とりあえず急場はこれでしのぎました
ひびのきろく
sudo apt-get install -y nodejs
を見ながら
$ curl -sL https://deb.nodesource.com/setup | sudo bash –
$ sudo apt-get install -y nodejs
確認
$ node -v
v0.11.13
$ npm -v
1.4.9
なんか古いですね..
とりあえず急場はこれでしのぎました
Ubuntu 14.04 でLineを使ってみました
wineというソフトを使えば、Windowsアプリが動かせたりします
準備として、パソコンでログインできるようにLineの設定をしておくことが必要です
まずは、リポジトリ登録
$ sudo add-apt-repository ppa:ubuntu-wine/ppa
$ sudo apt-get upgrade
インストール
$ sudo apt-get install wine1.7 winetricks
truetype core fonts for the web eula
のライセンスに同意しないと使えないので、同意します
wineのバージョン確認
$ wine –version
$ wine-1.7.34
このバージョンだと大丈夫でした
Lineを入れてみます
http://line.me/ja/download
からWindows用をダウンロード
ダウンロードしたインストーラーEXEを実行
指示に従っていきます
インストール場所を指定
パソコンでログインするときのメールアドレス、パスワードを打ちこみ
スマホ側で認証
いけた
スタンプが押せなかったりするので、また調べます
スマホアプリの認証後、フリーズしました
$ wine –version
wine-1.6.2
一旦削除
$ sudo apt-get purge winetricks
$ sudo apt-get install wine1.7 winetricks
でLineインストールをやり直すといけました
スタンプが押せないみたいです..
Ubuntu 12.04の起動時にエラーがでてるのみつけました
rpcbind: Cannot open '/run/rpcbind/rpcbind.xdr' file for reading
https://bugs.launchpad.net/ubuntu/+source/rpcbind/+bug/835833
を参考に
$ vim /etc/init/portmap.conf
script
if [ -f /etc/default/rpcbind ]; then
. /etc/default/rpcbind
elif [ -f /etc/rpcbind.conf ]; then
. /etc/rpcbind.conf
fi
if [ -e /run/rpcbind/portmap.xdr ] || [ -e /run/rpcbind/rpcbind.xdr ] ; then
OPTIONS="$OPTIONS -w"
fi
exec rpcbind $OPTIONS
end script
と言った感じに修正
エラーが出なくなりました
Ubuntu 14.04で vimを使っています
vimは
$ sudo apt-get install vim
とすれば入ります
vim内だと
yy
p
とかで、ヤンクして1行コピー、ペーストができますが、他のエディタに貼り付ける時(いわゆるコピペ)ができるかは
vimで
:version
で
:version
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Jan 2 2014 19:39:59)
適用済パッチ: 1-52
Modified by pkg-vim-maintainers@lists.alioth.debian.org
Compiled by buildd@
Huge 版 with GTK2 GUI. 機能の一覧 有効(+)/無効(-)
+acl +cmdline_compl +diff +find_in_path +keymap +modify_fname +mouse_xterm +profile -sniff +termresponse +vreplace -xterm_save
+arabic +cmdline_hist +digraphs +float +langmap +mouse +multi_byte +python +startuptime +textobjects +wildignore +xpm
+autocmd +cmdline_info +dnd +folding +libcall +mouseshape +multi_lang -python3 +statusline +title +wildmenu
+balloon_eval +comments -ebcdic -footer +linebreak +mouse_dec -mzscheme +quickfix -sun_workshop +toolbar +windows
+browse +conceal +emacs_tags +fork() +lispindent +mouse_gpm +netbeans_intg +reltime +syntax +user_commands +writebackup
++builtin_terms +cryptv +eval +gettext +listcmds -mouse_jsbterm +path_extra +rightleft +tag_binary +vertsplit +X11
+byte_offset +cscope +ex_extra -hangul_input +localmap +mouse_netterm +perl +ruby +tag_old_static +virtualedit -xfontset
+cindent +cursorbind +extra_search +iconv +lua +mouse_sgr +persistent_undo +scrollbind -tag_any_white +visual +xim
+clientserver +cursorshape +farsi +insert_expand +menu -mouse_sysmouse +postscript +signs +tcl +visualextra +xsmp_interact
-clipboard +dialog_con_gui +file_in_path +jumplist +mksession +mouse_urxvt +printer +smartindent +terminfo +viminfo +xterm_clipboard
とずらーとでますが
-clipboard
となっているとコピペが効きません
$ sudo apt-get install vim-gtk
とやるだけで
+clipboard
になりヤンクするだけで、他のエディタなどにペースト(貼り付け)できます