dil_bert Posted September 12, 2018 Share Posted September 12, 2018 dear community, i am using Manjaro 64 bit with kernel 4.14.68-1-Manjaro and KDE-Plasma-Version 5.13.5 and KDE-Frameworks Version 5.49 and Qt-Version 5.11.1 ona 2 x InteU B960 with 3.7 GB Ram My LibreOffice suite (especially Writer) freezes. How can I kill LibreOffice and Can I kill only the writer? (not the Calc,Impress,..) I tried to search for the executable process at System Monitor and command line (ps) but didn't find it. EDIT: I want something like this: pkill -xy writer I need some kind of minified command. so i runned this command: [martin@martin-pc ~]$ ps aux | grep libre martin 812 49.0 1.4 520348 58432 ? Rl Sep12 131:47 /usr/lib/libreoffice/program/lo_kde5filepicker -session 10139cf9fe4000153600568300000007900017_1536713472_775031 martin 818 49.0 1.5 520460 58808 ? Rl Sep12 131:34 /usr/lib/libreoffice/program/lo_kde5filepicker -session 10139cf9fe4000153627528000000007460033_1536713472_772458 martin 823 49.2 1.5 520476 59896 ? Rl Sep12 132:14 /usr/lib/libreoffice/program/lo_kde5filepicker -session 10139cf9fe4000153627451900000007460031_1536713472_782620 martin 2364 0.0 0.1 182208 5708 ? Sl Sep12 0:00 /usr/lib/libreoffice/program/oosplash --writer file:///tmp/mozilla_martin0/Finanzamt_2015_Feb_13___friday_final_15_00_word.doc martin 2386 8.1 6.5 4321664 256896 ? Rl Sep12 9:26 /usr/lib/libreoffice/program/soffice.bin --writer file:///tmp/mozilla_martin0/Finanzamt_2015_Feb_13___friday_final_15_00_word.doc --splash-pipe=5 martin 2867 0.0 2.1 699284 83472 ? Sl 00:27 0:00 /usr/lib/libreoffice/program/lo_kde5filepicker martin 3065 0.0 0.0 8516 2256 pts/0 S+ 00:48 0:00 grep --colour=auto libre [martin@martin-pc ~]$ but what should i do then sudo kill -xy ID the ID is the second number for (soffice.bin) not for oosplash see some example here https://askubuntu.com/questions/433171/how-to-kill-libreoffice-from-command-line/433179 ``` sudo kill -9 21445 You need professional Ok: ps aux | grep -i office | awk {'print $2'} | xargs kill -9 hope this is professional in your evaluation!! or more minified command kill -9 `pgrep -lf soffice.bin | awk {'print $1'}` or more minified minified minified command pkill soffice.bin ``` please advice - what should i do what could i do!? Should i try to update / upgrade the libreoffice!? Loook forward to hear from you ! greetings Quote Link to comment https://forums.phpfreaks.com/topic/307680-my-libreoffice-suite-especially-writer-freezes-how-to-kill-it-gracefully-on-terminal/ Share on other sites More sharing options...
dil_bert Posted September 13, 2018 Author Share Posted September 13, 2018 Run the following command sudo kill 812 sudo kill 818 sudo kill 823 and close LibreOffice. You can also kill the others whether LibreOffice does not close. Quote Link to comment https://forums.phpfreaks.com/topic/307680-my-libreoffice-suite-especially-writer-freezes-how-to-kill-it-gracefully-on-terminal/#findComment-1560782 Share on other sites More sharing options...
dil_bert Posted September 13, 2018 Author Share Posted September 13, 2018 btw, if i close the system and shutdown the whole machine - i think i am rid of the issue - then it is cloesd. Should i try to update / upgrade the libreoffice!? This is the first thing that immediately leapt to my mind. how to do that - can i do this via command-line!? Quote Link to comment https://forums.phpfreaks.com/topic/307680-my-libreoffice-suite-especially-writer-freezes-how-to-kill-it-gracefully-on-terminal/#findComment-1560783 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.