WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Questions to FAQ about TCL  (Read 29980 times)

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: Questions to FAQ about TCL
« Reply #30 on: July 30, 2020, 03:37:54 AM »
At the end of marking wine for deletion the apps gui states which extensions will be removed.

I just made a test, marking wine for deletion and rebooting - only wine was deleted.

What exact error do you get with the following:
Code: [Select]
$ tce-load -w Xorg-7.7-3d
« Last Edit: July 30, 2020, 03:42:00 AM by Juanito »

Offline GNUser

  • Hero Member
  • *****
  • Posts: 1343
Re: Questions to FAQ about TCL
« Reply #31 on: July 30, 2020, 06:51:07 AM »
2) What some desire is to "free" TinyCore from the TCZ format.  Not because of anything technical, but because of the submission/approval process of those in charge of the project.
Hi, PDP-8. Interesting observation. I, for one, have never had any problems with the submission/approval process. The rare time a tcz contribution of mine was rejected was when I had done shoddy work and I knew it. If some folks want to "free" TCL from its caretakers' sensible QA, it must be because their work is not very good.

Being built on FOSS, TCL is amenable to being forked. Anyone can fork it into a distro without QA or with more lax QA if they want. I wish them luck--they'll need it :D

Offline PDP-8

  • Hero Member
  • *****
  • Posts: 915
Re: Questions to FAQ about TCL
« Reply #32 on: July 30, 2020, 11:31:57 PM »
We're splitting the thread into two directions, so I'll say this and drop out of thread.

Of course I agree.  One could fork.  But it's quite another to support that fork by building and supporting that community, otherwise it's just a flash in the pan.

.. outta' the thread ...
That's a UNIX book! - cool  -- Garth

TinyCoreLinux

  • Guest
Re: Questions to FAQ about TCL
« Reply #33 on: July 31, 2020, 02:41:58 AM »
Hello @Juanito

$ tce-load -w Xorg-7.7-3d
Xorg-7.7.tcz.dep OK
...
xf86-input-libinput.tcz.dep OK
Downloading: mtdev.tcz
Connecting to mirrors.163.com (59.111.0.251:80)
wget: server returned error: HTTP/1.1 416 Requested Rang Not Statisfiable
md5sum: WARNING: 44of 44 computed checksums did NOT match
Error on mtdev.tcz

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: Questions to FAQ about TCL
« Reply #34 on: July 31, 2020, 03:06:09 AM »
mtdev.tcz.md5.txt is OK on the server, so maybe you have a corrupted download - perhaps you could delete mtdev.tcz* and try again?

TinyCoreLinux

  • Guest
Re: Questions to FAQ about TCL
« Reply #35 on: July 31, 2020, 04:18:00 AM »
I did this before, but it still didn't work. I guessed later that it might be due to missing mtdev.tcz.md5.txt, but it was too late. I did something impulsive: I had deleted all of md5.txt. The solution I've come up with now is to use WGET to download md5.txt from the repository for all the extensions, but I don't know exactly how to write the command because I'm really new. My friend, can you tell me exactly how to write this command? Or do you have any other way? If not, I won't bother you, I have to reinstall the system.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: Questions to FAQ about TCL
« Reply #36 on: July 31, 2020, 04:22:40 AM »
For example:
Code: [Select]
$ wget http://tinycorelinux.net/11.x/x86_64/tcz/mtdev.tcz.md5.txt

TinyCoreLinux

  • Guest
Re: Questions to FAQ about TCL
« Reply #37 on: July 31, 2020, 04:27:11 AM »
@Juanito
I know. But I'd be suffocated.
Because I'm going to repeat this command for a hundred variations.

TinyCoreLinux

  • Guest
Re: Questions to FAQ about TCL
« Reply #38 on: July 31, 2020, 04:30:19 AM »
@Juanito
Is there a way or command to simplify this duplication of work?
 I knew I could probably do it through shell programming, but I really didn't know anything about these things.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: Questions to FAQ about TCL
« Reply #39 on: July 31, 2020, 04:35:08 AM »
Something like:
Code: [Select]
$ cd /etc/sysconfig/tcedir/optional
$ ls *.tcz > files
$ for file in `cat files`; do wget http://tinycorelinux.net/11.x/x86_64/tcz/"$file".md5.txt ; done
$ rm files

TinyCoreLinux

  • Guest
Re: Questions to FAQ about TCL
« Reply #40 on: July 31, 2020, 04:41:04 AM »
@Juanito
Thanks

TinyCoreLinux

  • Guest
Re: Questions to FAQ about TCL
« Reply #41 on: July 31, 2020, 04:55:31 AM »
Q5: How do I install Flash in Firefox or Chromium?
I followed the official Firefox approach, which doesn't seem to work because there isn't a ".mozilla/Firefox /plugins" directory, and it doesn't work if I put the libflashPlayer.so file in each lib directory listed in the PATH variable.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: Questions to FAQ about TCL
« Reply #42 on: July 31, 2020, 05:02:48 AM »
What happens when you create /home/tc/.mozilla/firefox/plugins and put the file in there?

TinyCoreLinux

  • Guest
Re: Questions to FAQ about TCL
« Reply #43 on: July 31, 2020, 05:11:39 AM »
@Juanito
I also created it by hand like you before, but it still doesn't work.  :(

A side note: Although H5 is now the mainstream, a large part of the website still uses Flash. I feel the same frustration as Adobe!!! >:(
« Last Edit: July 31, 2020, 05:15:08 AM by NOOB »

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Re: Questions to FAQ about TCL
« Reply #44 on: July 31, 2020, 05:23:20 AM »
Does this give an error:
Code: [Select]
$ ldd /home/tc/.mozilla/firefox/plugins/*.so
« Last Edit: July 31, 2020, 07:28:15 AM by Juanito »