Terminal does not exit and can not be drag or move

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
0
down vote

favorite












I'm using kubuntu 17.10 (with the default DE KDE)SCREEN SHOT 1SCREEN SHOT 2



last night im using my terminal and suddenly my laptop freeze and when it comes back to life my terminal came to resize it self. Now it does not move or resize or exit it still setting there. I try to open another terminal window and it works normal. I try to shutdown/restart/log off my laptop nothing happen it still there. I even boot to different OS and come back is still there..



can anyone help me for this..










share|improve this question























  • Did someone make fun of you, took a screenshot while the window was open and then put that screenshot as your background image? (I admit, I already did such things... ;-))
    – PerlDuck
    Feb 5 at 18:19










  • See ubuntuforums.org/showthread.php?t=2256778
    – PerlDuck
    Feb 5 at 18:30






  • 1




    I works...i follow your comments in ububtuforums.org.....I disable the terminal..
    – Giovanne Mar
    Feb 5 at 18:44














up vote
0
down vote

favorite












I'm using kubuntu 17.10 (with the default DE KDE)SCREEN SHOT 1SCREEN SHOT 2



last night im using my terminal and suddenly my laptop freeze and when it comes back to life my terminal came to resize it self. Now it does not move or resize or exit it still setting there. I try to open another terminal window and it works normal. I try to shutdown/restart/log off my laptop nothing happen it still there. I even boot to different OS and come back is still there..



can anyone help me for this..










share|improve this question























  • Did someone make fun of you, took a screenshot while the window was open and then put that screenshot as your background image? (I admit, I already did such things... ;-))
    – PerlDuck
    Feb 5 at 18:19










  • See ubuntuforums.org/showthread.php?t=2256778
    – PerlDuck
    Feb 5 at 18:30






  • 1




    I works...i follow your comments in ububtuforums.org.....I disable the terminal..
    – Giovanne Mar
    Feb 5 at 18:44












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm using kubuntu 17.10 (with the default DE KDE)SCREEN SHOT 1SCREEN SHOT 2



last night im using my terminal and suddenly my laptop freeze and when it comes back to life my terminal came to resize it self. Now it does not move or resize or exit it still setting there. I try to open another terminal window and it works normal. I try to shutdown/restart/log off my laptop nothing happen it still there. I even boot to different OS and come back is still there..



can anyone help me for this..










share|improve this question















I'm using kubuntu 17.10 (with the default DE KDE)SCREEN SHOT 1SCREEN SHOT 2



last night im using my terminal and suddenly my laptop freeze and when it comes back to life my terminal came to resize it self. Now it does not move or resize or exit it still setting there. I try to open another terminal window and it works normal. I try to shutdown/restart/log off my laptop nothing happen it still there. I even boot to different OS and come back is still there..



can anyone help me for this..







command-line kubuntu






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 6 at 9:19









Nisse Engström

321246




321246










asked Feb 5 at 16:54









Giovanne Mar

205




205











  • Did someone make fun of you, took a screenshot while the window was open and then put that screenshot as your background image? (I admit, I already did such things... ;-))
    – PerlDuck
    Feb 5 at 18:19










  • See ubuntuforums.org/showthread.php?t=2256778
    – PerlDuck
    Feb 5 at 18:30






  • 1




    I works...i follow your comments in ububtuforums.org.....I disable the terminal..
    – Giovanne Mar
    Feb 5 at 18:44
















  • Did someone make fun of you, took a screenshot while the window was open and then put that screenshot as your background image? (I admit, I already did such things... ;-))
    – PerlDuck
    Feb 5 at 18:19










  • See ubuntuforums.org/showthread.php?t=2256778
    – PerlDuck
    Feb 5 at 18:30






  • 1




    I works...i follow your comments in ububtuforums.org.....I disable the terminal..
    – Giovanne Mar
    Feb 5 at 18:44















Did someone make fun of you, took a screenshot while the window was open and then put that screenshot as your background image? (I admit, I already did such things... ;-))
– PerlDuck
Feb 5 at 18:19




Did someone make fun of you, took a screenshot while the window was open and then put that screenshot as your background image? (I admit, I already did such things... ;-))
– PerlDuck
Feb 5 at 18:19












See ubuntuforums.org/showthread.php?t=2256778
– PerlDuck
Feb 5 at 18:30




See ubuntuforums.org/showthread.php?t=2256778
– PerlDuck
Feb 5 at 18:30




1




1




I works...i follow your comments in ububtuforums.org.....I disable the terminal..
– Giovanne Mar
Feb 5 at 18:44




I works...i follow your comments in ububtuforums.org.....I disable the terminal..
– Giovanne Mar
Feb 5 at 18:44










1 Answer
1






active

oldest

votes

















up vote
0
down vote













See if this works,
In the command line type the following-



$ ps -A


A list of processes will be displayed along with a number which is their id process id. It might be something like this.



19982 ? 00:00:00 kworker/0:2
20019 tty2 00:00:43 chromium-browse
20034 tty2 00:00:01 chromium-browse
20081 ? 00:00:01 gnome-terminal-
20138 pts/1 00:00:00 bash
20176 pts/0 00:00:00 bash
20187 pts/0 00:00:00 ps


The 5 digit number on the left is the process id or pid,



In the command line type - $ killall pid



for example, The pID for the gnome-terminal from the above example is 20081



Therefore, I am going to give the command - $ killall 20081



P.S. Killing a program using its process name, only works for executable files that are kept open during execution. Programs that run in the background cannot be killed using the process name.






share|improve this answer






















  • I see only 4 digit number, like this one, 3013? 00:00:01 konsole
    – Giovanne Mar
    Feb 5 at 17:51










  • I see only 4 digit number, like this one, 3013? 00:00:01 konsole, and, ...killall 3013.......3013: no process found. killall pid 3013,..pid: no process foound, 3013: no process found..
    – Giovanne Mar
    Feb 5 at 18:00










  • Instead of $ ps -A try this - $ ps -u 'yourusername'
    – Faisal Ahmed Farooq
    Feb 5 at 19:20










  • Then you get the same view of processes- type the command - $ kill -1 fourdigitnumber
    – Faisal Ahmed Farooq
    Feb 5 at 19:22











Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1003305%2fterminal-does-not-exit-and-can-not-be-drag-or-move%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote













See if this works,
In the command line type the following-



$ ps -A


A list of processes will be displayed along with a number which is their id process id. It might be something like this.



19982 ? 00:00:00 kworker/0:2
20019 tty2 00:00:43 chromium-browse
20034 tty2 00:00:01 chromium-browse
20081 ? 00:00:01 gnome-terminal-
20138 pts/1 00:00:00 bash
20176 pts/0 00:00:00 bash
20187 pts/0 00:00:00 ps


The 5 digit number on the left is the process id or pid,



In the command line type - $ killall pid



for example, The pID for the gnome-terminal from the above example is 20081



Therefore, I am going to give the command - $ killall 20081



P.S. Killing a program using its process name, only works for executable files that are kept open during execution. Programs that run in the background cannot be killed using the process name.






share|improve this answer






















  • I see only 4 digit number, like this one, 3013? 00:00:01 konsole
    – Giovanne Mar
    Feb 5 at 17:51










  • I see only 4 digit number, like this one, 3013? 00:00:01 konsole, and, ...killall 3013.......3013: no process found. killall pid 3013,..pid: no process foound, 3013: no process found..
    – Giovanne Mar
    Feb 5 at 18:00










  • Instead of $ ps -A try this - $ ps -u 'yourusername'
    – Faisal Ahmed Farooq
    Feb 5 at 19:20










  • Then you get the same view of processes- type the command - $ kill -1 fourdigitnumber
    – Faisal Ahmed Farooq
    Feb 5 at 19:22















up vote
0
down vote













See if this works,
In the command line type the following-



$ ps -A


A list of processes will be displayed along with a number which is their id process id. It might be something like this.



19982 ? 00:00:00 kworker/0:2
20019 tty2 00:00:43 chromium-browse
20034 tty2 00:00:01 chromium-browse
20081 ? 00:00:01 gnome-terminal-
20138 pts/1 00:00:00 bash
20176 pts/0 00:00:00 bash
20187 pts/0 00:00:00 ps


The 5 digit number on the left is the process id or pid,



In the command line type - $ killall pid



for example, The pID for the gnome-terminal from the above example is 20081



Therefore, I am going to give the command - $ killall 20081



P.S. Killing a program using its process name, only works for executable files that are kept open during execution. Programs that run in the background cannot be killed using the process name.






share|improve this answer






















  • I see only 4 digit number, like this one, 3013? 00:00:01 konsole
    – Giovanne Mar
    Feb 5 at 17:51










  • I see only 4 digit number, like this one, 3013? 00:00:01 konsole, and, ...killall 3013.......3013: no process found. killall pid 3013,..pid: no process foound, 3013: no process found..
    – Giovanne Mar
    Feb 5 at 18:00










  • Instead of $ ps -A try this - $ ps -u 'yourusername'
    – Faisal Ahmed Farooq
    Feb 5 at 19:20










  • Then you get the same view of processes- type the command - $ kill -1 fourdigitnumber
    – Faisal Ahmed Farooq
    Feb 5 at 19:22













up vote
0
down vote










up vote
0
down vote









See if this works,
In the command line type the following-



$ ps -A


A list of processes will be displayed along with a number which is their id process id. It might be something like this.



19982 ? 00:00:00 kworker/0:2
20019 tty2 00:00:43 chromium-browse
20034 tty2 00:00:01 chromium-browse
20081 ? 00:00:01 gnome-terminal-
20138 pts/1 00:00:00 bash
20176 pts/0 00:00:00 bash
20187 pts/0 00:00:00 ps


The 5 digit number on the left is the process id or pid,



In the command line type - $ killall pid



for example, The pID for the gnome-terminal from the above example is 20081



Therefore, I am going to give the command - $ killall 20081



P.S. Killing a program using its process name, only works for executable files that are kept open during execution. Programs that run in the background cannot be killed using the process name.






share|improve this answer














See if this works,
In the command line type the following-



$ ps -A


A list of processes will be displayed along with a number which is their id process id. It might be something like this.



19982 ? 00:00:00 kworker/0:2
20019 tty2 00:00:43 chromium-browse
20034 tty2 00:00:01 chromium-browse
20081 ? 00:00:01 gnome-terminal-
20138 pts/1 00:00:00 bash
20176 pts/0 00:00:00 bash
20187 pts/0 00:00:00 ps


The 5 digit number on the left is the process id or pid,



In the command line type - $ killall pid



for example, The pID for the gnome-terminal from the above example is 20081



Therefore, I am going to give the command - $ killall 20081



P.S. Killing a program using its process name, only works for executable files that are kept open during execution. Programs that run in the background cannot be killed using the process name.







share|improve this answer














share|improve this answer



share|improve this answer








edited Feb 5 at 17:39









user68186

14.4k84461




14.4k84461










answered Feb 5 at 17:36









Faisal Ahmed Farooq

11




11











  • I see only 4 digit number, like this one, 3013? 00:00:01 konsole
    – Giovanne Mar
    Feb 5 at 17:51










  • I see only 4 digit number, like this one, 3013? 00:00:01 konsole, and, ...killall 3013.......3013: no process found. killall pid 3013,..pid: no process foound, 3013: no process found..
    – Giovanne Mar
    Feb 5 at 18:00










  • Instead of $ ps -A try this - $ ps -u 'yourusername'
    – Faisal Ahmed Farooq
    Feb 5 at 19:20










  • Then you get the same view of processes- type the command - $ kill -1 fourdigitnumber
    – Faisal Ahmed Farooq
    Feb 5 at 19:22

















  • I see only 4 digit number, like this one, 3013? 00:00:01 konsole
    – Giovanne Mar
    Feb 5 at 17:51










  • I see only 4 digit number, like this one, 3013? 00:00:01 konsole, and, ...killall 3013.......3013: no process found. killall pid 3013,..pid: no process foound, 3013: no process found..
    – Giovanne Mar
    Feb 5 at 18:00










  • Instead of $ ps -A try this - $ ps -u 'yourusername'
    – Faisal Ahmed Farooq
    Feb 5 at 19:20










  • Then you get the same view of processes- type the command - $ kill -1 fourdigitnumber
    – Faisal Ahmed Farooq
    Feb 5 at 19:22
















I see only 4 digit number, like this one, 3013? 00:00:01 konsole
– Giovanne Mar
Feb 5 at 17:51




I see only 4 digit number, like this one, 3013? 00:00:01 konsole
– Giovanne Mar
Feb 5 at 17:51












I see only 4 digit number, like this one, 3013? 00:00:01 konsole, and, ...killall 3013.......3013: no process found. killall pid 3013,..pid: no process foound, 3013: no process found..
– Giovanne Mar
Feb 5 at 18:00




I see only 4 digit number, like this one, 3013? 00:00:01 konsole, and, ...killall 3013.......3013: no process found. killall pid 3013,..pid: no process foound, 3013: no process found..
– Giovanne Mar
Feb 5 at 18:00












Instead of $ ps -A try this - $ ps -u 'yourusername'
– Faisal Ahmed Farooq
Feb 5 at 19:20




Instead of $ ps -A try this - $ ps -u 'yourusername'
– Faisal Ahmed Farooq
Feb 5 at 19:20












Then you get the same view of processes- type the command - $ kill -1 fourdigitnumber
– Faisal Ahmed Farooq
Feb 5 at 19:22





Then you get the same view of processes- type the command - $ kill -1 fourdigitnumber
– Faisal Ahmed Farooq
Feb 5 at 19:22


















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1003305%2fterminal-does-not-exit-and-can-not-be-drag-or-move%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

pylint3 and pip3 broken

Missing snmpget and snmpwalk

How to enroll fingerprints to Ubuntu 17.10 with VFS491