How can I copy-paste following command:
rm -r ~/.gconf/apps/gnome-terminal
gconftools --recursive-unset /apps/gnome-terminal
into a virtual-terminal?
How can I copy-paste following command:
rm -r ~/.gconf/apps/gnome-terminal
gconftools --recursive-unset /apps/gnome-terminal
into a virtual-terminal?
If you can't use the standard terminal:
...I cannot use the terminal normally ...
start your installed packet manager Synaptic and install an other terminal xterm
.
Use Alt+F2 and type xterm
and Return
Now you can copy and paste:
Alternatively write a short script and start the script in the virtual terminal:
Start gedit and add the lines below:
#!/bin/bash
rm -r ~/.gconf/apps/gnome-terminal
gconftools --recursive-unset /apps/gnome-terminal
Save the file as foo
in your home
folder and switch to tty.
Login and make the script executable
chmod +x ~/foo
Start the script
./foo
gnome-terminal
and something went wrong , right ? There's alsoxterm
. Ubuntu comes with two GUI terminal emulators by default – Sergiy Kolodyazhnyy Jun 18 '15 at 15:53rm -r ~/.gconf/apps/gnome-terminal; gconftools --recursive-unset /apps/gnome-terminal
As one line. See the semicolon ? – Sergiy Kolodyazhnyy Jun 18 '15 at 15:55