WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: TC & NVidia  (Read 24885 times)

Offline mutantape

  • Newbie
  • *
  • Posts: 3
Re: TC & NVidia
« Reply #75 on: April 30, 2020, 02:18:12 PM »
Thanks for the code tags info,  i wondered about that, but did not feel like hunting for the way to do it...

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11213
Re: TC & NVidia
« Reply #76 on: April 30, 2020, 04:47:59 PM »
Hi mutantape
... but when i go startx i get a black screen and the machine is completely stuck, it is not even possible to exit the Gui with Ctrl Alt Backspace. ...
Ctrl-Alt-F1  should get you back to the console. From there, running:
Code: [Select]
ps aux | grep -i xshould allow you to find which  PID  X  was assigned so you can kill it.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14535
Re: TC & NVidia
« Reply #77 on: April 30, 2020, 10:33:39 PM »
By the way is there a magic TC tool to automatically extract new files added in the rootfs by such an installer ? There seems to be no way to do a simple make install to a folder.

If you cannot use $DESTDIR, you could try this:
Code: [Select]
$ tce-load -i findutils
$ touch mymarker
$ sudo make install
$ sudo find / -not -type 'd' -cnewer mymarker | grep -v "\/proc\/" | grep -v "^\/sys\/" | tee files
$ vi files