Linux graphical interface disappeared
Please Log in or Create an account to join the conversation.
- tommylight
- Away
- Moderator
- Posts: 19196
- Thank you received: 6434
www.google.com/search?q=debian+x+server+...IcAkMQ4dUDCAY&uact=5
Please Log in or Create an account to join the conversation.
- BeagleBrainz
- Offline
- User is blocked
- Posts: 1437
- Thank you received: 570
1: copy everything in you home directory to a USB stick.
2: Reinstall your OS.
3: Copy USB stick to your home directory. Or basically just copy the linuxcnc folder to your new home directory as this holds all your configs.
Done.
Refer to this to setup touchscreen
forum.linuxcnc.org/18-computer/42384-touch-screens#207192
Please Log in or Create an account to join the conversation.
X failed to start, Linux issue so LinuxCNC can not work
Thanks for the direction of the search. At first glance it seems insanely challenging job for someone who saw linux for the first time, but i'm trying my best to learn all of this.
Quick and dirty method.
Sound like a plan. It remains to figure out exactly how can do this from the command line.
Refer to this to setup touchscreen
forum.linuxcnc.org/18-computer/42384-touch-screens#207192
I found this topic before, but I didn’t understand how to install/run this programm.
Please Log in or Create an account to join the conversation.
- BeagleBrainz
- Offline
- User is blocked
- Posts: 1437
- Thank you received: 570
Clone the git repository
Install the python3 dependencies, tkinter, numpy, via your package manager. Be warned that you will need the python versions of tkinter & nump.
For buster these are named:
python3-numpy
python3-tk
cd into the directory you cloned the repository into
./xcalibrate
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- tommylight
- Away
- Moderator
- Posts: 19196
- Thank you received: 6434
Please Log in or Create an account to join the conversation.
Sound like a plan. It remains to figure out exactly how can do this from the command line.
There are a few ways to do it described here:
askubuntu.com/questions/37767/how-to-acc...ve-from-the-terminal
Basically you need to "mount" the USB drive, which means setting it up to be a directory in your file system. From that point on any file that you place in that directory will end up physically on the USB drive.
Once you have it mounted, you would use the "cp" copy command. something like
sudo cp -r ~/linuxcnc/ /media/usbdrive
"sudo" because you might not have access rights to where the usb drive is mounted. Unless you mount it somewhere in your home folder, which you can, if you want.
"cp" is copy
"~" is a shortcut to your own home directory, then from there we select the linuxcnc subdirectory
"-r" for "recursive", ie iterate through everything in the directory.
"/media/usbdrive" should be whatever mount-point you chose to mount the USB.
Please Log in or Create an account to join the conversation.
First I started to deal with this X server, researched this question a little, found logs, even understood what exactly was the matter. The issue was in one file "xinput calibrator", i commented out problem line and the system is working again. But my happiness was not long, i got multiple issues with "joint following error". I do not know if these problems were somehow related.
After a many days of struggling with this issues i decided completely replace the computer to another one, install the fresh system and copy backup.
So, only now I finally got a working system again. I'm still want to setup touchscreen, install the required programs for "xcalibrate", but still no luck.
Please Log in or Create an account to join the conversation.
- BeagleBrainz
- Offline
- User is blocked
- Posts: 1437
- Thank you received: 570
chmod +x xcalibrate
Or you can right click on the file in your file manager and navigate thru the menus. Sorry I rarely use the file manager for stuff like that. I use the terminal.
Anyways glad you found your issue, X can be a bit of a PITA to diagnose. You on your way to being a Linux master, you have the right attitude.
Hmmm that is funny I just cloned the repo and xcalibrate had the permissions set to execute.
Ok I see what happened, you downloaded the zip file rather than cloning the repo.
Please Log in or Create an account to join the conversation.