| Author |
Message |
RetroTechGuy

Joined: 15 Dec 2009 Posts: 2301 Location: USA
|
Posted: Wed 02 Mar 2011, 09:58 Post subject:
|
|
| Fishak wrote: | OK, so I figured it out. It is mounted in in: /mnt/truecrypt10. It even says so, right there in the TC Mound Directory column.
To find mnt, I clicked the little house icon on the desktop, clicked the up aerow to go up one directory, and found the mnt folder there. |
Yup.
I generally drag a link to /mnt/ to the desktop (if you drag it there, Puppy creates a shortcut to that folder).
Then you just look there for mounted partitions.
_________________ Wellminded Search
Add swapfile
|
|
Back to top
|
|
 |
wuwei

Joined: 15 Sep 2007 Posts: 739 Location: de
|
Posted: Tue 02 Aug 2011, 06:52 Post subject:
|
|
Just to confirm and bring this thread up-to-date:
Installed Truecrypt in Lucid 526rc. A direct install from the tar.gz or from the 7.0a Pet didn't work. It barks for a missing dmsetup.
So I installed the 6.3-pet first and then replaced /usr/bin/truecrypt (6.3 version) with the unpacked identical file from the tar.gz (7.0a version).
Changed the settings as described in this thread.
Started Truecrypt and it works fine as version 7.0a.
|
|
Back to top
|
|
 |
2ManyDogs
Joined: 25 Sep 2011 Posts: 5
|
Posted: Sun 25 Sep 2011, 12:50 Post subject:
|
|
Newbie here, so not sure if this is the right place for this question.
I'm running Wary Puppy 5.1.4.1 (and really like it) but I'm having problems with Truecrypt. I finally got Truecrypt 7.1 installed using the suggestions in this thread (I had the "dmsetuup not found" error until I disabled encryption in Truecrypt, and now I can mount and unmount Truecrypt containers, but when I try to open the mounted container, Truecrypt says "no such file or directory: nautilus" -- what's up with this, and is there an easy fix? Thanks.
|
|
Back to top
|
|
 |
2ManyDogs
Joined: 25 Sep 2011 Posts: 5
|
Posted: Sun 25 Sep 2011, 15:34 Post subject:
|
|
Never mind, I figured it out. I had to open the volume from /mnt/truecrypt1 rather than from directly in Truecrypt. It's all working now.
|
|
Back to top
|
|
 |
Barkin

Joined: 12 Aug 2011 Posts: 465
|
Posted: Wed 26 Oct 2011, 00:08 Post subject:
Truecrypt 7.0a on Puppy 525 directory names truncated Subject description: probably my fault, but don't know how |
|
Truecrypt 7.0a on Puppy 525, directory names in truecrypt file ("volume") have become truncated.
Truecrypt 7.0a running on lupu-525 kernel 2.6.33.2
originally Trucrypt worked flawlessly, however now it displays directory names truncated to six characters with “~1” added to the end, (see attached screengrabs).
If the truecrypt file is repeatedly mounted then unmounted, on the third mount the directory names are shown correctly.
I’ve been using Truecrypt for several years on windows and have never seen this problem before on windows ,
(BTW the same truecrypt "volume" (file) opens without truncated directory names in windows).
| Description |
|
| Filesize |
10.99 KB |
| Viewed |
2086 Time(s) |

|
| Description |
|
| Filesize |
21.45 KB |
| Viewed |
2107 Time(s) |

|
|
|
Back to top
|
|
 |
Barkin

Joined: 12 Aug 2011 Posts: 465
|
Posted: Wed 26 Oct 2011, 01:35 Post subject:
|
|
Now getting an error message when opening truecrypt volume (screengrab attached), still able to view contents of truecrypt file though.
It just occurred to me: the version of truecrypt I have running in windows is not the same as in puppy. Perhaps opening and saving the truecrypt volume in windows has made the truecrypt file slightly incompatible with the version in Puppy ?
| Description |
|
| Filesize |
11 KB |
| Viewed |
2109 Time(s) |

|
|
|
Back to top
|
|
 |
technosaurus

Joined: 18 May 2008 Posts: 3843
|
Posted: Wed 26 Oct 2011, 02:33 Post subject:
|
|
I just posted a set of poor man's steganography
(hide your encrypted file in another file) scripts here:
http://www.murga-linux.com/puppy/viewtopic.php?t=72807
_________________ Puppy Web Desktop Now with pet packages - Pet Packaging 100 & 101
|
|
Back to top
|
|
 |
EBScotty
Joined: 30 Apr 2011 Posts: 5 Location: Emeryville, California, U.S.A.
|
Posted: Sat 24 Mar 2012, 20:28 Post subject:
|
|
| Fishak wrote: | OK, so I figured it out. It is mounted in in: /mnt/truecrypt10. It even says so, right there in the TC Mound Directory column.
To find mnt, I clicked the little house icon on the desktop, clicked the up arrow to go up one directory, and found the mnt folder there. |
Thank you, Fishak!
I've been trying to figure this out for a couple of weeks, creating and mounting, and not being able to find TrueCrypt volumes.
Yes, it does say where its mounted right there in the TC Mound Directory column. All I needed to do was look!
Aaaagh!
|
|
Back to top
|
|
 |
SFR

Joined: 26 Oct 2011 Posts: 571
|
Posted: Thu 26 Apr 2012, 18:25 Post subject:
Nautilus issue... |
|
Hello.
If anyone is still interested in opening containters from within TC, here's a very simple hack.
It's enough to fool TC a little bit, by creating fake nautilus "binary":
| Code: | #! /bin/bash
CONTAINERPATH=`echo "$@" | cut -f3 -d ' '`
rox "$CONTAINERPATH" |
Save the code as "nautilus" (no quotes) in /usr/bin and make it executable.
Tested with TC 7.1
PS. rox can be replaced with your favourite filemanager, of course.
EDIT: Oops, small typo in code, corrected now.
HTH
Greetings!
_________________ [O]bdurate [R]ules [D]estroy [E]nthusiastic [R]ebels => [C]reative [H]umans [A]lways [O]pen [S]ource
Omnia mea mecum porto.
|
|
Back to top
|
|
 |
Arefacti
Joined: 10 Oct 2012 Posts: 163
|
Posted: Tue 27 Nov 2012, 02:39 Post subject:
Re: Nautilus issue... |
|
| SFR wrote: | Hello.
If anyone is still interested in opening containters from within TC, here's a very simple hack.
It's enough to fool TC a little bit, by creating fake nautilus "binary":
| Code: | #! /bin/bash
CONTAINERPATH=`echo "$@" | cut -f3 -d ' '`
rox "$CONTAINERPATH" |
Save the code as "nautilus" (no quotes) in /usr/bin and make it executable.
Tested with TC 7.1
PS. rox can be replaced with your favourite filemanager, of course.
EDIT: Oops, small typo in code, corrected now.
HTH
Greetings! |
thanks !
work fine !
|
|
Back to top
|
|
 |
Barkin

Joined: 12 Aug 2011 Posts: 465
|
Posted: Wed 28 Nov 2012, 12:24 Post subject:
Subject description: SFR's nautilus fix works for me too |
|
SFR's nautilus fix works for me too ...
| Description |
/before-after SFR's ''nautilus'' fix |
| Filesize |
43.07 KB |
| Viewed |
754 Time(s) |

|
|
|
Back to top
|
|
 |
idiopup
Joined: 04 Apr 2013 Posts: 10
|
Posted: Sat 06 Apr 2013, 08:40 Post subject:
Truecrypt -- help Subject description: Cannot run truecrypt |
|
HI All,
New user here, trying to get up and running with Puppy.
I installed Truecrypt in the same manner as I ahve with many other distros. I am running Puppy 5.5 Precise
The install went as expected with the comments others have mentioned about needing FUSE libraries and device mapping tools.
When I tried running Truecrypt from the command line, I get the error:
bash: /usr/bin/truecrypt: cannot execute binary file
What is wrong here?
Many thanks,
Idiopup
|
|
Back to top
|
|
 |
|