Linux « Różności …

Różności …

1 lipca 2021

systemctl apachectl apache disable service

Zaszufladkowany do: Linux — Jacek @ 15:43

sudo systemctl status apache2
sudo systemctl is-enabled apache2
sudo systemctl disable apache2
sudo systemctl stop apache2
sudo systemctl mask apache2

sudo apt remove apache2

8 stycznia 2021

MongoDB, Node.js – install

Zaszufladkowany do: JS,Linux,Programowanie — Jacek @ 11:21

sudo systemctl start mongod

sudo systemctl status mongod
sudo systemctl enable mongod
sudo systemctl stop mongod
sudo systemctl restart mongod
Node.js
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash source ~/.bashrc
nvm list-remote
nvm install v13.6.0 nvm use v13.6.0 nvm current
node -v

29 grudnia 2020

Ubuntu post install

Zaszufladkowany do: Angular,JavaScript,Linux,Programowanie,React — Jacek @ 08:23
sudo apt-get update
sudo apt-get install build-essential

17 grudnia 2020

Ubuntu application icon favourities ulubione

Zaszufladkowany do: Linux — Jacek @ 17:25

/usr/share/applications

[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=Blender
Comment=Blender
Exec=blender
Icon=/home/tigran/bin/blender-2.91.0-linux64/blender.svg
Terminal=false

1 grudnia 2020

Ubuntu – disable history of files

Zaszufladkowany do: Linux — Jacek @ 10:17
$ rm ~/.local/share/recently-used.xbel # clear current file history
$ touch ~/.local/share/recently-used.xbel # create a 0-byte history file
$ sudo chattr +i ~/.local/share/recently-used.xbel # make it readonly

25 listopada 2020

Ubunutu 20 workspace shortcuts

Zaszufladkowany do: Linux — Jacek @ 13:46

install gnome-tweaks

jacek@comp:~$ gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-5 ‘["<Alt>5"]‘
jacek@comp:~$ gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-6 ‘["<Alt>6"]‘
jacek@comp:~$ gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-7 ‘["<Alt>7"]‘
jacek@comp:~$ gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-8 ‘["<Alt>8"]‘
jacek@comp:~$ gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-9 ‘["<Alt>9"]‘

14 listopada 2020

ubuntu no working init found

Zaszufladkowany do: Linux — Jacek @ 11:36
lsinitramfs
update-initramfs -u -k 5.4.0-53-generic

26 lipca 2020

ubuntu display problems

Zaszufladkowany do: Linux — Jacek @ 12:24

sudo apt update

sudo apt upgrade

ubuntu-drivers devices

sudo ubuntu-drivers autoinstall

lub

sudo apt install nvidia-420

16 lipca 2019

gnome system monitor

Zaszufladkowany do: Linux — Jacek @ 16:33

https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet

http://ubuntuhandbook.org/index.php/2019/03/display-cpu-memory-network-usage-in-ubuntu-18-04-panel/

22 grudnia 2017

Mount google drive on Ubuntu

Zaszufladkowany do: Linux — Tagi: — Jacek @ 10:40
sudo add-apt-repository ppa:alessandro-strada/ppa
sudo apt update && sudo apt install google-drive-ocamlfuse
google-drive-ocamlfuse
mkdir ~/googleDrive
podmontowanie:
google-drive-ocamlfuse ~/googleDrive
odmontowanie:
fusermount -u ~/googleDrive
google-drive-ocamlfuse -- help

8 grudnia 2017

linux deb packages

Zaszufladkowany do: Linux — Tagi: — Jacek @ 09:28
sudo apt install gdebi-core
sudo gdebi teamviewer*.deb

15 lutego 2017

silverlight ubuntu linux

Zaszufladkowany do: Linux — Tagi: — Jacek @ 17:03

# stop browser
killall firefox
# remove old version if you have it
sudo apt-get remove pipelight

sudo apt-add-repository ppa:pipelight/stable
sudo apt-get update
sudo apt-get install –install-recommends pipelight-multi
sudo pipelight-plugin –update

pipelight-plugin –enable silverlight

firefox
about:plugins

check for silverlight

http://bubblemark.com/silverlight2.html

www.horizon.tv

23 listopada 2016

avi mkv webm – change format – format filmów – movie

Zaszufladkowany do: Linux — Tagi: — Jacek @ 16:48

ffmpeg -i film.mkv film.avi

ffmpeg -i input.flv -ar 22050 -b 2048k output.avi
ffmpeg -async 1 -i inputVideo.flv -f avi -b 700k -qscale 0 -ab 160k -ar 44100 outputVideo.avi
ffmpeg -loglevel 0 -async 1 -i inputVideo.flv -f avi -b 700k -sameq -ab 160k -ar 44100 outputVideo.avi
ffmpeg.exe -i video.flv -qscale 0 outputVideo.avi
ffmpeg -i film.webm -qscale 0 -strict -2 film.mp4

28 października 2016

linux webdav

Zaszufladkowany do: Linux — Tagi: — Jacek @ 16:41

dav://alfresco.firm.com:8080/alfresco/webdav
davs://alfresco.firm.com:8080/alfresco/webdav

nautilus mounts in:
/run/user/1000/gvfs

13 października 2016

Linux 32 or 64 bit

Zaszufladkowany do: Linux — Tagi: — Jacek @ 10:13

Try uname -m. It seems like the uname -m actually gives

x86_64 ==> 64-bit kernel
i686   ==> 32-bit kernel

Source:
http://stackoverflow.com/questions/246007/how-to-determine-whether-a-given-linux-is-32-bit-or-64-bit

10 września 2016

Ubuntu – dropbox.

Zaszufladkowany do: Linux — Tagi: — Jacek @ 07:31

echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf; sudo sysctl -p

19 sierpnia 2016

ubuntu mysql disable autostart

Zaszufladkowany do: Linux — Tagi: — Jacek @ 08:49

sudo systemctl disable mysql

3 sierpnia 2016

How to enable exFAT in Ubuntu 14.04

Zaszufladkowany do: Linux — Tagi: — Jacek @ 13:08
sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install exfat-fuse exfat-utils
sudo mkdir /media/exfat
sudo mount -t exfat /dev/sdxx /media/exfat

Source

http://askubuntu.com/questions/451364/how-to-enable-exfat-in-ubuntu-14-04

12 kwietnia 2016

ubuntu shutdown at specific time

Zaszufladkowany do: Linux — Tagi: — Jacek @ 21:55

To shutdown run the command

sudo shutdown -P 60

That is 60 mins.

You could do

sudo shutdown -P 1:00

to shutdown at 1am and

6 kwietnia 2016

usb bootable disk

Zaszufladkowany do: Linux — Tagi: — Jacek @ 10:20

usb-creator-gtk

Starsze wpisy »

Strona startowa: www.jaceksen.pl