Linux

Raspbian: samba で特定のディレクトリを共有する

インストール $ sudo apt-get install samba samba-common-bin 設定 /etc/samba/smb.conf ファイルに以下の内容を追加する。 [<共有名>]comment = music folder for mpdpath = <共有するディレクトリ>browseable = yeswriteable = yescreate mask = 0777dire…

Linux: ユーザー・グループの基本操作

ユーザー ユーザーの一覧表示 $ getent passwd $ cat /etc/passwd より確実。 ユーザーの追加 $ useradd [ユーザー] ユーザーの削除 $ userdel [ユーザー] パスワードの変更 $ passwd ユーザーが所属しているグループを表示 $ id [ユーザー] 引数ナシの場合…