Dr. Nikolaus Klepp wrote:
> What about using "pidof" inside a popen() call? If returns number ->
> program lives, if not, it's not running.
>
Hi,
I ended up with a mixture of dcop and your suggested pidof inside a popen().
pidof inside popen() I can use for non TDE application. dcop I used for TDE
unique application. It works nice.
thank you
regards
Hi,
where can I look for examples on how konqueror handles specific and also
customly defined protocols.
Also how can I trigger konqueror with specific protocol - for example list
directory and in this directory trigger a link to sftp connection?
Also how specific device can appear on the side bar?
Especially I am interested how the connection to the remote device is
managed and for example how it is terminated.
Thank you in advance
regards
Hello!
I was trying to build my own KDE3-based LiveCD (based on Slackware 14.1!).
While most things worked - samba configuration using KDE's own config module from kcontrol
showed mostly greyed-out fields.
Aw ....
I looked at
http://mirror.git.trinitydesktop.org/cgit/tdenetwork/tree/filesharing/advan…
and tadam!
=========
int SambaFile::getSambaVersion() {
if (_sambaVersion > -1)
return _sambaVersion;
TDEProcess testParam;
testParam << "testparm";
testParam << "-V";
_parmOutput = TQString("");
_sambaVersion = 2;
connect( &testParam, TQT_SIGNAL(receivedStdout(TDEProcess*,char*,int)),
this, TQT_SLOT(testParmStdOutReceived(TDEProcess*,char*,int)));
if (testParam.start(TDEProcess::Block,TDEProcess::Stdout)) {
if (_parmOutput.find("3") > -1)
_sambaVersion = 3;
}
kdDebug(5009) << "Samba version = " << _sambaVersion << endl;
return _sambaVersion;
}
============
and next it checks this version ...
So, I added similar block testing for samba 4 (Slackware 14.1 uses 4.6.16)
See patch (attached). While this one is for KDE's kdenetwork-3.5.10 - I think this
fix should be applicable to TDE's tdenetwork.
Of course this is not everything - Samba log files for example moved and apparently changed format.
And smbpasswd command stores Samba users by default in new format, not readable by old loader
But there is workaround!
Just reverse this command:
http://www.novell.com/linux/releasenotes/i386/openSUSE/11.1.42/RELEASE-NOTE…
pdbedit -i smbpasswd:/etc/samba/smbpasswd -e tdbsam:/etc/samba/passdb.tdb
I actually used /etc/samba/private patch for Slackware 14.1, but for 14.2 path is different!
smb passwd file = /var/lib/samba/private/smbpasswd
as reported (among many different things) by "testparm -v"
At least file sharing started to work - I can share folder, and set it writable.
But broswing in KDE3's actually require full smb://host/Share_Name form,
otherwise it shows nothing (at least in qemu, may be built-in smb server
interferes with normal OS-level samba server?).
ISO file for testing (700Mb!)
https://yadi.sk/d/HYZ9rwcykB3Fzg
sha256sum CDROM-4.4.194_5.iso
0f49ddf10089de2e802825ea03b994644c9253e7330daacccb6258a18b180d1b CDROM-4.4.194_5.iso
password for root user: toor
for guest: guest
[those actually defaults from old Slax 6.x line of live CD]
You can type "slax autoexec=kdm" at isolinux boot prompt - then it will load X/kdm by default.
Sources (for components I modified) in root/src
qemu command line:
qemu-system-i386 -cdrom /dev/shm/CDROM-4.4.194_5.iso -m 1.9G -enable-kvm -soundhw es1370 -smp 2 -display sdl,gl=on -usb -cpu host
but you can simplify it down to
qemu-system-i386 -cdrom /dev/shm/CDROM-4.4.194_5.iso -m 512 -enable-kvm
Hi,
many times we've discussed the issues around scm.trinitydesktop.org
Entering 'main/applications/kpowersave/admin'
fatal: unable to
access 'http://scm.trinitydesktop.org/scm/git/tde-common-admin/': The
requested URL returned error: 503
fatal: run_command returned non-zero status for
main/applications/kpowersave/admin
.
fatal: run_command returned non-zero status while recursing in the nested
submodules of main/applications/kpowersave
.
I have this on different packages from time to time.
The problem is if I change the url to Gitea on my side git would complain
that I have unstashed changes and will refuse to work.
What is the proper way to solve this?
thank you
On Friday 23 August 2019 02:36:05 Slávek Banko wrote:
> Hi Denis,
>
> that sounds very interesting. If I understand this correctly, the result is
> basically a Debian with the Solaris kernel? Something similar to Debian
> with the FreeBSD kernel? Awesome.
yes, it is. illumos, OpenIndiana and OmniOS use IPS as package manager
delivered by Oracle Solaris. We took Debian as the base.
> I remember your patches related to OpenIndiana - I still have them
> somewhere on my disk... Now the best way to provide patches that are
> suitable for pushing into the main tree is to use the TGW - see wiki page:
>
> https://wiki.trinitydesktop.org/TDE_Gitea_Workspace
>
> Once you create a TGW account, let us know to add you to the Contributors
> team. Then you will be able to create pull-requests directly on the main
> tree, where we can discuss, review patches and merge them.
I've read about it before I wrote this letter. Thank you.
> If it seems to be useful, a folder with DilOS packaging files could be
> created in the tde-packaging repository, which could then contain other
> patches that are specific to DilOS only.
Debian packages could be shared with DilOS target something like:
ifeq ($(DEB_HOST_ARCH_OS),solaris)
PLATFORM_ARG = dilos-g++
else # solaris
ifeq ($(DEB_HOST_ARCH_OS),hurd)
PLATFORM_ARG = hurd-g++
else #hurd
ifeq ($(DEB_HOST_ARCH),sparc)
PLATFORM_ARG = linux-g++-sparc
else #sparc
PLATFORM_ARG = linux-g++
endif #sparc
endif #hurd
endif #solaris
it's from tqt-x11-free-14.0.6~pre5/debian/rules, of course, as example
--
denk@RusNet
Hello, developers.
We are the DilOS Team, it is an illumos based system
with apt+dpkg package manager.
(http://www.dilos.org/)
We ported most of the packages of TDE to our platform.
We would like to share some patches, including platform specific
for target __dilos__
We can start it in a zone as xdmcp server:
http://witch.tambov.ru/~denis/dilos/tde/
(I ported some packages to OpenIndiana and use it as desktop,
now I'd like to use it under dilos and I hope the project is still alive)
--
denk@RusNet
François Andriot composed on 2017-12-10 18:41 (UTC+0100):
> ... at following URL:
> http://mirror.ppa.trinitydesktop.org/trinity/trinity/rpm/osstw/
Zypper cannot find valid metadata for osstw any more. Have the TW repos been
removed? tde-mirror.yosemite.net doesn't work either. :-(
--
Evolution as taught in public schools is religion, not science.
Team OS/2 ** Reg. Linux User #211409 ** a11y rocks!
Felix Miata *** http://fm.no-ip.com/
TDE Devs,
I hesitate to send this to a do-ocracy when I don't have the time
to do it myself but I think this warrants a ping.
I rate myself as a software engineer with an excellent track record
in (proprietary) database managers, AI, and systems software. I've
designed software, lead software teams, and picked up other's failing
projects and literally worked and slept in my office to ship on time.
But I would never have thought that what Tim did was possible. The
solo fork and improvement of TDE was a massive undertaking in which
Tim succeeded brilliantly. Whether or not Tim ever touches TDE again
I have an enormous respect for his courage, talent, and achievement.
But now others have taken up the mantle.
The original TDE infrastructure has been broken in various ways
for a long time. The stable mirrors have been unable to update
for eight months. The trinitydesktop.org domain expires in March
and there is no guarantee that the original TDE infrastucture will
continue to stumble along even that long.
TDE 14.0.7 is currently in PSB. Waiting for 14.0.8 might be too
late. I would like to see TDE 14.0.7, either when it goes stable
or soon thereafter, on community-managed infrastructure.
--Mike
due to unsatisfied /etc/ssl/certs/ca-bundle.crt
for package trinity-tdelibs-14.0.6-1.mga7.x86_64
host big41
Where is this ca-bundle.crt file supposed to come from?
--
Evolution as taught in public schools is religion, not science.
Team OS/2 ** Reg. Linux User #211409 ** a11y rocks!
Felix Miata *** http://fm.no-ip.com/