Raspberry Pi 3에서 Opensuse LEAP 설치후 10가지 작업
Raspberry Pi 3에서 Opensuse LEAP 설치후 10가지 작업
jeos가 아닌 E20, LXQT 같은 데스크탑을 설치후 할 일을 정리했다.
Install Gnome Tweak Tool & dconf editor
By default GNOME 3 settings and options are looking good but if you want make your desktop more beautiful. Better you can install Gnome Tweak Tool & dconf editor which will give lots of cool options to make your desktop more beautiful which was not there in GNOME Application.
Install Icon theme
packman repository
라이센스와 특허 문제로 몇몇 중요한 저장소가 빠져서 배포되고 있다. opensuse 커뮤니티에서 이런 패키지를 제공하는 packman 저장소를 운영하고 있다. packman은 4가지 저장소 이루어저 있다.
- Essensials: 오디오/비디오 앱을 위한 코덱
- Multimedia: 멀티미디어 관련 앱
- Extra: 멀티미디어 이외의 앱과 네트워크 관련
- Games: 게임 패키지
Packman repository 활성화
1 | ~> sudo zypper addrepo http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Leap_42.3/ Packman-Repository |
혹은
1 | ~> sudo zypper ar -f -n packman http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Leap_42.3/ packman |
Tumbleweed [^4]
1 | ~> sudo zypper ar -p 1 -f -n packman http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Tumbleweed/ packman |
그리고 저장소 정보를 갱신한다.
1 | ~> sudo zypper ref |
이 저장소를 지우려면
1 | sudo zypper lr -d |
해당 저장소 번로를 zypper rr [no]
명령으로 삭제한다.
1 | sudo zypper rr 3 |
Media applications [^5]
vlc 설치
1 | ~> sudo zypper install vlc vlc-codecs |
Transcode 혹은 비디오 변환작업을 하면 Hanbrake 가 적절한다.
1 | ~>sudo zypper install handbrake-cli handbrake-gtk |
Install Media Codecs
H264/AVC streams support on your PC: [^4]
1 | ~> sudo zypper install x264 libx265-130 libx264-148 |
k3b-codecs [^5]
ffmpeg 와 lame 설치
1 | ~> sudo zypper install ffmpeg lame |
GStreamer 플러그인 설치
1 | ~> sudo zypper install gstreamer-plugins-bad gstreamer-plugins-ugly gstreamer-plugins-ugly-orig-addon gstreamer-plugins-libav |
Chrome
Install Chrome [^5]
sudo zypper in chromium
OpenSUSE comes with Firefox as the default browser. But since Firefox isn’t capable of playing restricted media such as Netflix, I recommend installing Chrome. This takes some extra work. First you need to import the trusted key from Google. Open the terminal app and run the ‘wget’ command to download the key:
wget https://dl.google.com/linux/linux_signing_key.pub
Then import the key:
sudo rpm –import linux_signing_key.pub
Now head over to the Google Chrome website and download the 64 bit .rpm file. Once downloaded run the following command to install the browser:
sudo zypper install /PATH_OF_GOOGLE_CHROME.rpm
yast2 모듈
Leap 42.3 에는 yast -l
로 모듈을 확인해 bootloader, checkmedia
disk
firewall
host
inst_release_notes
keyboard
lan
language
proxy
remote
repositories
security
services-manager
sw_single, timezone, users, view_anymsg
추가적인 yast2 모듈을 설치하기 위해 아래 같이 검색할 수 있다.
1 | sudo zypper search yast2- |
앱
VLC is one of the best multimedia players out there. It’s free and open source. You can install it via:
sudo zypper in vlc
you are a gamer, then you may probably want to install Steam:
sudo zypper in steam
Dropbox is probably the most famous solution on Linux desktops. You can install it using:
sudo zypper in dropbox
참고
[^1]: System Upgrade
[^2]: net-tools deprecated
[^4]: Things to do after installing opensuse
[^5]: 8 things to do after Opensue
Raspberry Pi 3에서 Opensuse LEAP 설치후 10가지 작업