Search found 82 matches

by laurentius77
Tue 14 Jun 2016, 19:53
Forum: Puppy Projects
Topic: Fatdog64-710 Alpha/2 [29 April 2016] [CLOSED]
Replies: 201
Views: 123210

Re: Kodi unable to start

I'm running Fatdog 710a2 with included 4.4.3 kernel. kodi-14.1.sfs fails to start with error message: /usr/lib/kodi/kodi.bin: error while loading shared libraries: libcap.so.2: wrong ELF class: ELFCLASS64 kodi-15.2-x86_64.sfs fails to start with error message: /usr/lib/kodi/kodi.bin: error while lo...
by laurentius77
Sun 05 Jun 2016, 21:09
Forum: Puppy Projects
Topic: Fatdog64-710 Alpha/2 [29 April 2016] [CLOSED]
Replies: 201
Views: 123210

@James C - thanks @laurentius77 - a) xrandr - that's too bad. Your only choice is playing with the DPI settings but frankly Fatdog64 is never designed to support high-DPI devices (high resolution is okay, but high-DPI is another matter ...), so you will have to do some tweaking there. b) for the ke...
by laurentius77
Sat 04 Jun 2016, 14:30
Forum: Puppy Projects
Topic: Fatdog64-710 Alpha/2 [29 April 2016] [CLOSED]
Replies: 201
Views: 123210

1) 2736x1824 is the only resolution available with xrandr command 2) Surface 4 cover is both a keyboard, multitouch touchpad and screen cover, connected to tablet using 6 metallic mag dots. The tablet runs Windows 10 desktop OS and has a touchscreen. It is a great piece of hardware and running FatDo...
by laurentius77
Sat 04 Jun 2016, 14:27
Forum: Puppy Projects
Topic: Fatdog64-710 Alpha/2 [29 April 2016] [CLOSED]
Replies: 201
Views: 123210

@step - no special reason. cp is part of "coreutils" and was built very early in the build process, I suppose the extended-attribute library wasn't built yet at that time. @laurentius77 - For the xorg resolution, try opening a terminal and then type "xrandr". What do you see? If...
by laurentius77
Sat 04 Jun 2016, 14:21
Forum: Puppy Projects
Topic: Fatdog64-710 Alpha/2 [29 April 2016] [CLOSED]
Replies: 201
Views: 123210

@step - no special reason. cp is part of "coreutils" and was built very early in the build process, I suppose the extended-attribute library wasn't built yet at that time. @laurentius77 - For the xorg resolution, try opening a terminal and then type "xrandr". What do you see? If...
by laurentius77
Sat 04 Jun 2016, 14:17
Forum: Puppy Projects
Topic: Fatdog64-710 Alpha/2 [29 April 2016] [CLOSED]
Replies: 201
Views: 123210

Surface 4 cover

- 2736x1824 is the only resolution available with xrandr command - Surface 4 cover is both a keyboard, multitouch touchpad and screen cover, connected to tablet using 6 metallic mag dots. The tablet runs Windows 10 desktop OS and has a touchscreen. It is a great piece of hardware and running FatDog6...
by laurentius77
Thu 02 Jun 2016, 19:09
Forum: Puppy Projects
Topic: Fatdog64-710 Alpha/2 [29 April 2016] [CLOSED]
Replies: 201
Views: 123210

FatDog64 710a2 on Surface Pro 4 (128 GB)

Hello, I tried FatDog 710a2 with latest 4.4.3 kernel on my Surface Pro 4 and for now that is what I have functional: - booted FatDog64 by using GPT FAT 32 partition - wireless and bluetooth devices are functional - glxinfo direct rendering=YES Problems - the Microsoft touch cover with keyboard is no...
by laurentius77
Fri 15 Apr 2016, 04:07
Forum: Puppy Projects
Topic: Not working Googleearth in FD64
Replies: 14
Views: 4076

Not working Googleearth in FD64

I tried to have googleearth working in FD64 with no success. I tried in wine 1.9.6, it installs fine, I can see the menu but the main screen stays black. I tried also to install 64 bit linux version from Google website but I get an error /usr/bin/googleearth.bin not found. Have anyone here had succe...
by laurentius77
Sun 11 Oct 2015, 19:07
Forum: Programming
Topic: Need file3 with ONLY differences between file1 and file2
Replies: 20
Views: 3174

Thank you

Thank you sir and I'm sorry for my lack of attention. Yes, indeed, one file has more values than another. In the second example (in reality) file2 have less values than file1. But I will addapt the script in order to have it funcional. Thank you a lot! Try #!/bin/sh IFS=${IFS}, CONTENT_FILE1=$(< /ro...
by laurentius77
Sun 11 Oct 2015, 13:54
Forum: Programming
Topic: Need file3 with ONLY differences between file1 and file2
Replies: 20
Views: 3174

Real example

I'm so sorry that I was confusing... Here is a real example file1 0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,5,6,7,8,9 file2 0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,...
by laurentius77
Sun 11 Oct 2015, 12:42
Forum: Programming
Topic: Need file3 with ONLY differences between file1 and file2
Replies: 20
Views: 3174

I need a method for real sorting from lower to higher values

Thanks The script is working but I need more, but the results are not that I expected because my files should first be sorted like: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 and they are like 1 10 11 12 13 14 2 3 4 5 6 7 8 9 How can I sort them ascending with lower number first and bigger number last? sort -...
by laurentius77
Sun 11 Oct 2015, 10:26
Forum: Programming
Topic: Need file3 with ONLY differences between file1 and file2
Replies: 20
Views: 3174

Empry result...I will try more, maybe I misspelled something

MochiMoppel wrote:Many ways. As long as your real file contents are as simple as in your example you can try

Code: Select all

#!/bin/sh
CONTENT_FILE1=$(< /root/tmp/file1)
CONTENT_FILE2=$(< /root/tmp/file2)
echo -n ${CONTENT_FILE2/$CONTENT_FILE1}  > /root/tmp/file3
Change the path as needed.
by laurentius77
Sun 11 Oct 2015, 09:51
Forum: Programming
Topic: Need file3 with ONLY differences between file1 and file2
Replies: 20
Views: 3174

Need file3 with ONLY differences between file1 and file2

I have a simple problem for many but for me was unsolvable until now: file1 with only a single line content 01 02 03 04 05 06 file2 also with only single line content 01 02 03 04 05 06 07 08 09 10 I want to get file3 also single line, having as content only the differences found between file1 and fi...
by laurentius77
Wed 01 Jul 2015, 03:47
Forum: Puppy Projects
Topic: Fatdog64-700/701 [April 22 2015] [CLOSED]
Replies: 1172
Views: 514271

Re: wine64

Does anyone have wine64 running in Fatdog? I have illutorum's Wine64-1.7.34-FtDgB2.sfs from the contributed packages thread. ldd wine64 shows no missing libs. Following up on error messages, I have installed winbind and 20M of samba libs. It claims it can't find ntlm_auth (from winbind), though it'...
by laurentius77
Tue 13 Jan 2015, 19:56
Forum: Puppy Projects
Topic: Fatdog64-700 beta2 [Closed]
Replies: 439
Views: 212334

eztables

Could anyone make eztables working in FD64-700-b2? There is a wrong point out of iptables binary which shoud be changend in IPT=/usr/bin/iptables But after that everything mess up with an error Staring eztables... iptables v1.4.21: invalid port/service 'INPUT' specified I think a firewall is a cruci...
by laurentius77
Tue 13 Jan 2015, 07:47
Forum: Users ( For the regulars )
Topic: [SOLVED] FatDog64 kernel - Woof-CE - fail to compile modules
Replies: 4
Views: 1252

Here you can find the build kit that I used https://github.com/puppylinux-woof-CE/woof-CE/tree/master/kernel-kit . Try with kernel-kit from testing branch: https://github.com/puppylinux-woof-CE/woof-CE/tree/testing/kernel-kit Greetings! The new kernel kit works flawlessly. Thank you very much!
by laurentius77
Mon 12 Jan 2015, 20:36
Forum: Users ( For the regulars )
Topic: [SOLVED] FatDog64 kernel - Woof-CE - fail to compile modules
Replies: 4
Views: 1252

amigo wrote:You say you have the file 'aufs_type.h' Where is it located? It should be under /usr/include/linux.
I compiled 3.17.1 version, so
in my case aufs_type.h is in dist/packages/kernel_headers-3.17.1-/usr/include/linux.

It's supposed to be in other place?

Thank you for your answer.
by laurentius77
Mon 12 Jan 2015, 09:48
Forum: Users ( For the regulars )
Topic: [SOLVED] FatDog64 kernel - Woof-CE - fail to compile modules
Replies: 4
Views: 1252

[SOLVED] FatDog64 kernel - Woof-CE - fail to compile modules

I used Woof-CE compiling script in creating my own kernel for FatDog64. The script managed to compile the kernel but failed to compile modules with git checkout -b new_branch_name HEAD is now at 0c0785b... aufs-util 20141208 cc -O -Wall -I ../dist/packages/kernel_headers*/usr/include -D_GNU_SOURCE -...
by laurentius77
Sat 10 Jan 2015, 08:49
Forum: Puppy Projects
Topic: [SOLVED] Problems in creating LUKS partition in FD64 700 b2
Replies: 2
Views: 1578

Works now

Thank you Jamesbond it works now.
Have a good day!
by laurentius77
Sat 10 Jan 2015, 08:47
Forum: Puppy Projects
Topic: Fatdog64-700 beta2 [Closed]
Replies: 439
Views: 212334

Iptables setup problem in costomed 3.17.1 kernel

Hello there, I tried to setup eztables on my FatDog64 beta 2 with my own kernel compiled usin original DOTconfig and I get an error: iptables v1.4.21: can't initialize iptables table 'nat': Table does not exist (do you need to insmod?) Perhaps iptables or your kernel needs to be upgraded. Did anyone...