WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: piCore-11beta GUI desktop install  (Read 17611 times)

Offline danny

  • Jr. Member
  • **
  • Posts: 73
Re: piCore-11beta GUI desktop install
« Reply #30 on: April 29, 2020, 01:27:10 AM »
OK. Thanks to reply.
Can I use instruction open a Web in command line?
By the way, Will epiphany browser work on piCore 11.X ?

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: piCore-11beta GUI desktop install
« Reply #31 on: April 29, 2020, 03:13:28 AM »
epiphany works in piCore-11.x

You could try "epiphany http://forum.tinycorelinux.net" from the command line.

Offline danny

  • Jr. Member
  • **
  • Posts: 73
Re: piCore-11beta GUI desktop install
« Reply #32 on: April 30, 2020, 12:53:03 AM »
I have installed epiphany on piCore.
But nothing happened when I clicked it.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: piCore-11beta GUI desktop install
« Reply #33 on: April 30, 2020, 01:11:02 AM »
Open a terminal window and enter the command "epiphany" - you should see an error message.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: piCore-11beta GUI desktop install
« Reply #34 on: April 30, 2020, 06:53:20 AM »
I just tested as follows:
Code: [Select]
$ tce-load -i Xorg-3d flwm aterm wbar
$ sudo rm /usr/local/share/X11/xorg.conf.d/fbturbo.conf
$ startx
$ tce-load -i epiphany
$ epiphany

..and epiphany opens.

Did you use the apps gui maintenance/check for updates to verify everything is up to date?

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: piCore-11beta GUI desktop install
« Reply #35 on: April 30, 2020, 11:41:47 PM »
piCore-11.x now has a few apps to run in the weston wayland compositor.

Create a configuration file such that:
Code: [Select]
$cat ~/.config/weston.ini
[launcher]
icon=/usr/local/share/weston/icon_terminal.png
path=/usr/local/bin/weston-terminal

[launcher]
icon=/usr/local/share/icons/Adwaita/22x22/apps/accessories-text-editor.png
path=/usr/local/bin/gedit

[launcher]
icon=/usr/local/share/icons/Adwaita/22x22/apps/system-file-manager.png
path=/usr/local/bin/nautilus

[launcher]
icon=/usr/local/share/icons/Adwaita/22x22/apps/web-browser.png
path=/usr/local/bin/epiphany

[shell]
num-workspaces=4

Enable hardware acceleration

Then load weston and the apps and start weston:
Code: [Select]
$ tce-load -i weston gedit epiphany nautilus
$ XDG_RUNTIME_DIR=/run/user/1001 weston-launch

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: piCore-11beta GUI desktop install
« Reply #36 on: May 02, 2020, 04:54:50 AM »
Here's a summary of where things stand with the gui in piCore-11.x

RPi3
vc4-fkms-v3d works
vc4-kms-v3d works
x11 videos play in browser
wayland videos play in browser

RPi4
vc4-fkms-v3d works
vc4-kms-v3d does not work
x11 videos play in browser
wayland graphics problem in browser

If I understand correctly:

The code still remains to be written for vc4-kms-v3d on RPi4
There is some kind of issue with v3d and drm with wayland/weston on RPi4

Offline danny

  • Jr. Member
  • **
  • Posts: 73
Re: piCore-11beta GUI desktop install
« Reply #37 on: May 03, 2020, 06:11:23 PM »
I tried the following:
Code: [Select]
$ tce-load -i Xorg-3d flwm aterm wbar
$ sudo rm /usr/local/share/X11/xorg.conf.d/fbturbo.conf
$ startx
$ tce-load -i epiphany
$ epiphany
and then I got
Code: [Select]
epiphany: symbol lookup error: /usr/local/lib/libgtk-3.so.0: undefined symbol: g_mount_operation_set_is_tcrypt_hidden_volume

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: piCore-11beta GUI desktop install
« Reply #38 on: May 03, 2020, 06:43:48 PM »
Hi danny
... and then I got
Code: [Select]
epiphany: symbol lookup error: /usr/local/lib/libgtk-3.so.0: undefined symbol: g_mount_operation_set_is_tcrypt_hidden_volume
Either the version of  epiphany  or the version of  gtk3  you have installed is not up to date.

Try updating your system. Run these commands:
Code: [Select]
tce-audit builddb
tce-audit updatedeps
tce-audit fetchmissing
tce-update
Click the  Exit  icon and select reboot.

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: piCore-11beta GUI desktop install
« Reply #39 on: May 03, 2020, 09:46:43 PM »
Hi danny
Please paste the following command into a terminal:
Code: [Select]
for i in `ls -1 /etc/sysconfig/tcedir/optional/*.tcz`; do ls $i.md5.txt 2>&1 | grep -i "no such"; done > missingmd5.txtThen paste the contents of  missingmd5.txt  in your next post.

Offline danny

  • Jr. Member
  • **
  • Posts: 73
Re: piCore-11beta GUI desktop install
« Reply #40 on: May 04, 2020, 08:04:06 PM »
Hi Rich,
I pasted the command into a terminal.
But there was nothing in missingmd5.txt.

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: piCore-11beta GUI desktop install
« Reply #41 on: May 04, 2020, 08:17:27 PM »
Hi danny
That's good. It means you're not missing any  md5.txt  files.

Offline danny

  • Jr. Member
  • **
  • Posts: 73
Re: piCore-11beta GUI desktop install
« Reply #42 on: May 04, 2020, 09:47:29 PM »
But when I paste epiphany in terminal.
I got the following message:
Code: [Select]
symbol lookup error: /usr/local/lib/libgtk-3.so.0: undefined symbol: g_mount_operation_set_is_tcrypt_hidden_volume

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: piCore-11beta GUI desktop install
« Reply #43 on: May 04, 2020, 10:01:16 PM »
Since you are using the gui, can you double-check that you’re not missing anything with the apps gui “check for updates”?

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: piCore-11beta GUI desktop install
« Reply #44 on: May 04, 2020, 10:52:56 PM »
Here's what I get - I don't see any errors with epiphany on an RPi3 or RPi4:
Code: [Select]
$ cd /etc/sysconfig/tcedir/optional
$ md5sum -c gtk3.tcz.md5.txt
gtk3.tcz: OK
$ md5sum -c epiphany.tcz.md5.txt
epiphany.tcz: OK


$ cat gtk3.tcz.md5.txt
2ed23728271b1b52e990431db171b256  gtk3.tcz
$ cat epiphany.tcz.md5.txt
5561279506df19c83c8dcef38b6db99e  epiphany.tcz

http://tinycorelinux.net/11.x/armv7/tcz/gtk3.tcz.md5.txt
2ed23728271b1b52e990431db171b256  gtk3.tcz

http://tinycorelinux.net/11.x/armv7/tcz/epiphany.tcz.md5.txt
5561279506df19c83c8dcef38b6db99e  epiphany.tcz