Re: A simple question

2022-07-16 Thread Joseph Loo
My understanding there is a plugin that provides an imap interface. Thus 
you can use thunderbird. I have not tried this.


On 7/16/22 19:22, olivares33561 via users wrote:





Sent from ProtonMail, encrypted email based in Switzerland.

Sent with Proton Mail secure email.

--- Original Message ---
On Saturday, July 16th, 2022 at 2:15 PM, ToddAndMargo via users 
 wrote:



On 7/16/22 12:06, olivares33561 via users wrote:


Sent from ProtonMail, encrypted email based in Switzerland.
Sent with Proton Mail secure email.



Hi Olivares,

Is ProtonMail supporting Thunderbird yet?


To be honest, I don't know
   I am using Brave web browser on Android phone to access protonmail.


-T


Best Regards,


Antonio

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


--
Joseph Loo
j...@acm.org
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: NFS server setup -

2018-04-13 Thread Joseph Loo
On 04/13/2018 07:11 PM, Earl Ramirez wrote:
> On Fri, 2018-04-13 at 15:34 -0400, Bob Goodwin wrote:

>> $ cat /etc/exports
>> /var/ftp/pub  192.168.1.0/255.255.255.0(ro)
>> /home/public  192.168.1.0/255.255.255.0(rw)
>>
>> var/ftp/pub 192.168.54.0/255.255.255.0(ro,sync,no_subtree_check)
>>
>> /var/ftp/pub 
>> 192.168.54.0/255.255.255.0(ro,sync,no_wdelay,no_subtree_check,nohide)
>>
>> Then from the client I get a refusal:
>>
>> # mount 192.168.1.86:/home/public  /mnt/test/
>> mount.nfs: Connection refused
>>
>> There is an ethernet path between them on my lan, ssh works from
>> each 
>> computer to the other ...
>>
>> Perhaps a problem with bind, I don't know how to troubleshoot this, 
>> would appreciate suggestions.
>>
>> Bob
>>
>>
> 
> Are you able to mount the share locally on the server that is hosting
> the shares?
> 
> 
> 
> 
> 
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> 

are you missing a "/" on va/ftp.pub on your 4th line on the cat
/etc/exports?

Try a showmount -e 192.168.1.86

this will help determine if the directories are actually exported.
Don't forget to restart the nfs server whenever you do changes on the
/etc/exports.
-- 
Joseph Loo
j...@acm.org



signature.asc
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: NFS server setup -

2018-04-13 Thread Joseph Loo
On 04/13/2018 04:01 PM, Ed Greshko wrote:
> On 04/14/18 06:16, Bob Goodwin wrote:
>> On 04/13/18 16:57, Rick Stevens wrote:
>>> By default F27 uses NFSv4. The access is far more restrictive. If you're
>>> NFS mounting a filesystem as a normal user on the client, then you have
>>> to make sure that user has the same UID and GID on the server and has
>>> access to that exported directory.
>>>
>>
>>> If you're mounting it as root on the client (as seems to be true by the
>>> "#" in the example command), make sure you add "no_root_squash" to the
>>> export at the server:
>>>
>>> /home/public    192.168.1.0/24(rw,no_root_squash)
>>>
>>> Otherwise the server will try to demote the root user down to the
>>> anonymous user, who probably doesn't have R/W access to /home/public
>>> (or whatever export you've specified).
>>>
>>> Make sense?
>>
>> .
>>
>> Just adding "no_root_squash" did not help, it still reports refused.
>>
>> Sometimes it seems nothing is ever easy, at least with NFS.
>>
>>
> 
> I hadn't set up an nfs server in a while so I did the following.
> 
> Server Side:
> 
> Created /etc/exports with the following contents
> 
> /var/ftp  192.168.1.0/24(rw,async,no_wdelay,no_root_squash)
> 
> Checked the nfs box in the firewalld settings
> 
> systemctl enable nfs-service (only need that if you want 
> the
> service started at boot)
> systemctl start nfs-service
> 
> Client side:
> 
> mount 192.168.1.191:/var/ftp /mnt
> 
> Result:
> 
> [root@meimei mnt]# df -T | grep mnt
> 192.168.1.191:/var/ftp nfs4   29098240  17908736    9688320  65% /mnt
> 
> I suppose, that this point,  you should run on the Server side
> 
> systemctl status nfs-server
> 
> 
> 
> 
> 
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> 
Have you tried showmounts -e 192.168.1.x to see if the nfs server is
exporting the directories.

e.g.
I get howmount -e taurus
Export list for taurus:
/export   *
/export/home1 127.0.0.0/8,192.168.21.0/24
/export/home0 127.0.0.0/8,192.168.21.0/24


My exports looks like this:

/export *(fsid=0,crossmnt,rw,root_squash,sync,no_subtree_check)
/export/home0   192.168.21.0/24(rw,root_squash,sync,no_subtree_check)
127.0.0.0/8(rw,root_squash,sync,no_subtree_check)
/export/home1   192.168.21.0/24(rw,root_squash,sync,no_subtree_check)
127.0.0.0/8(rw,root_squash,sync,no_subtree_check)

I believe you need the first line since nfs version 3


-- 
Joseph Loo
j...@acm.org



signature.asc
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Easily add text and arrows on images: what is the best tool?

2018-02-01 Thread Joseph Loo
On 02/01/2018 01:35 PM, Samuel Sieb wrote:
> On 02/01/2018 05:44 AM, Tom Horsley wrote:
>> On Thu, 1 Feb 2018 13:46:05 +0100
>> Frédéric wrote:
>>
>>> I would like to arrows/shapes + text on pictures. What is the best
>>> tool for that? With gimp, it is easy to add text but the arrow is
>>> difficult. Any tool?
>>
>> Gimp works for me:
>>
>> Find an arrow you like in an image with a transparent background,
>> paste as new layer, move around and rotate as you please.
> 
> This is what I would use as well.  Make sure the arrow image has a
> decent resolution and it's pretty easy to resize and move it around.
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
have you look at ArowCreator and arrow.scm python script and tool
extension for gimp?

-- 
Joseph Loo
j...@acm.org
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: post-mortem: f24 boot fails; need help.

2017-06-02 Thread Joseph Loo
On 06/02/2017 06:32 PM, William Mattison wrote:
> I tried badblocks last night.  I didn't realize how long it would take.  
> After over 3 hours, I had to abort it to do something else.
> 
> This morning, I retried it, this time with options to show its progress.  It 
> took between 3 1/2 and 3 3/4 hours.  Here are the results:
> ===
> bash.3[~]: badblocks -s -v /dev/sda
> Checking blocks 0 to 1953514583
> Checking for bad blocks (read-only test): done
>  
> Pass completed, 0 bad blocks found. (0/0/0 errors)
> bash.4[~]:
> ===
> I don't think this completely rules out the hard drive as the villain, but 
> it's now less of a suspect.  Am I correct in guessing that the 
> non-destructive read-write option (option "-n") would take over twice as long 
> (7 1/2 or more hours)?
> 
> Thanks,
> Bill.
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> 
It would take about 4 times longer. I believe it reads and writes with 4
different patterns. It will wipe the disk completely.

-- 
Joseph Loo
j...@acm.org
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: post-mortem: f24 boot fails; need help.

2017-05-31 Thread Joseph Loo
On 05/30/2017 09:09 PM, William Mattison wrote:
> I wasn't fully convinced these problems are due to the battery.  That's why I 
> listed the four things I found "odd".  On the other hand, I recall hearing 
> and reading that the output of lithium batteries is almost flat (better than 
> any other type of battery), but then very quickly drops (faster than any 
> other type of battery) as it reaches end-of-life.
> 
> Back to diagnosing the real cause of the problems...
> 
> Is there a Fedora command that I can use to check the hard drive (not the 
> file systems) for bad blocks, sectors, tracks, etc?  Is there a Fedora 
> command that I can use to check the controller?
> 
> Both problems occurred immediately after doing a "dnf upgrade".  What is that 
> telling us?  Does "dnf upgrade" access the hard drive or the controller in a 
> way that normal daily use does not?  Is there something different about the 
> first boot after a "dnf upgrade" vs other boots?  I shut down every night, 
> and boot up every morning.
> 
> When I bought the system 4+ years ago, I bought separate parts.  This is a 
> DIY desktop.  I was advised to buy more power supply than needed.  I did so.  
> So unless the power supply is failing, I would think it's not a good 
> candidate for the cause of the two problems.  There have been no problems 
> until this month, and I've been doing weekly patches since I got the system 
> in 2013.
> 
> I was/am not in the mood to change the battery!  Since I've already bought 
> the new one and have no other use for it, and since the old one is 4+ years 
> old, I plan to change the battery either Friday or Saturday.  But you know 
> what they say: "If you want to make God laugh, tell Him your plans!".  I did 
> watch the youtube that Tim provided.  I don't recall seeing screws on the 
> underside of the motherboard.  I'll look again Friday or Saturday (God 
> willing!).
> 
> Thanks,
> Bill.
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
> 
Have you tried badblocks? If you are not careful it will wipe your disk
completely. This will do a sector by sector scan.



-- 
Joseph Loo
j...@acm.org
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Booting from SSD or not

2016-09-01 Thread Joseph Loo
On 09/01/2016 04:58 AM, fred roller wrote:
> You could change the desktop for each system ;) low tech but effective
> in knowing which system you are on.
> 
> On Thu, Sep 1, 2016 at 6:23 AM, Ian Chapman <packa...@amiga-hardware.com
> <mailto:packa...@amiga-hardware.com>> wrote:
> 
> On 01/09/16 14:51, Kevin Wilson wrote:
> 
> Is there a way to know whether to boot was done from SSD or not ?
> (I know I can try to read the product name of the device from which
> boot was done, but in many cases this is not enough to know straight
> away whether it is SSD or not.
> 
> 
> cat /sys/block/sdX/queue/rotational
> 
> 1 = Spinning Disk
> 0 = SSD
> 
> Unless you're crudely assuming sda is your boot disk, you'll need to
> figure that out, but that's not too hard.
> 
> -- 
> Ian Chapman.
> 
> --
> users mailing list
> users@lists.fedoraproject.org <mailto:users@lists.fedoraproject.org>
> To unsubscribe or change subscription options:
> https://lists.fedoraproject.org/admin/lists/users@lists.fedoraproject.org
> 
> <https://lists.fedoraproject.org/admin/lists/users@lists.fedoraproject.org>
> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
> <http://fedoraproject.org/code-of-conduct>
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> <http://fedoraproject.org/wiki/Mailing_list_guidelines>
> Have a question? Ask away: http://ask.fedoraproject.org
> 
> 
> 
> 
> --
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://lists.fedoraproject.org/admin/lists/users@lists.fedoraproject.org
> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> Have a question? Ask away: http://ask.fedoraproject.org
> 
try running fstrim -av on a spinning vs ssd system


-- 
Joseph Loo
j...@acm.org
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://lists.fedoraproject.org/admin/lists/users@lists.fedoraproject.org
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: sudo disappears after latest update

2016-02-10 Thread Joseph Loo
On 02/10/2016 08:48 AM, Joe Zeff wrote:
> On 02/10/2016 04:53 AM, Timothy Murphy wrote:
>> Surely this takes substantially more time than sudo?
>> Presumably you have to give the argument in quotes,
>> and then give the password?
>>
> 
> So?  Time is not everything, and being retired, I have all that I need.
> 
>> And doesn't it give an alternative way for the hacker
>> to get the superuser password, eg by key-logging?
>> So is it even safer in the end?
> 
> If the hacker's gotten through my firewall and installed a key logger,
> it's already too late.
I am a little late in the discussion. Is your username in the wheel group?

-- 
Joseph Loo
j...@acm.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


gvim and gnupg plugin

2016-01-29 Thread Joseph Loo
I am having problems with gvim and gpupg plugin for gvim. Whenever I try
to open the open a .gpg file it comes back with
"Message could not be decrypted"

When I open the same file, with vim, it works with no problems. I
downloaded the git files for gnupg.vim from the git repository. It has
Dec 17, 2015 marked as the latest change.

I put the file in /usr/share/vim/vimfiles/plugin

I do notice that standard gpg will not start gpg-agent but if I run gpg2
it will start the gpg-agent

I have in the gpg.conf file
use-agent
uncommented

-- 
Joseph Loo
j...@acm.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Cannot access my phone storage from fc22

2016-01-02 Thread Joseph Loo
On 01/02/2016 06:11 PM, jd1008 wrote:
> 
> 
> On 01/02/2016 07:01 PM, Joe Zeff wrote:
>> On 01/02/2016 05:56 PM, jd1008 wrote:
>>>>
>>> Well, these are the same cables I used on my previous phones
>>> and they worked extremely well.
>>> My phone is less than 2 years old, and looks like brand new.
>>
>> Can you try using your phone with that cable on a different computer,
>> or borrow a cable to see what happens?  One of Jerry Pournelle's laws
>> of computer troubleshooting is "Check the cables first."
> Fair enough.
> I will check that and get back to you.
> 
have you added simple-mtpfs as one of your packages?

See https://wiki.archlinux.org/index.php/MTP

Until I added the udev rules, my phone would not mount

-- 
Joseph Loo
j...@acm.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: F22 and missing font Courier New 10

2015-10-29 Thread Joseph Loo
On 10/29/2015 08:10 PM, Tim wrote:
> Allegedly, on or about 29 October 2015, Gregory P. Ennis sent:
>> I created a new install of F22 64 and to my surprise the 'courier New
>> 10' is missing from Libreoffice.  Does anyone have an rpm
>> replacement. 
>>  I have a bunch of documents that use this font and would like to
>> continue it.  There are some other fonts that are close, but none that
>> is an exact duplicate which means the formatting will need to be
>> different on the new or edited old documents. 
> 
> I thought the Liberation font set was supposed to have a replacement for
> Courier New?  (May not be identical looking, but allegedly having the
> same metrics so that document layout didn't change.)
> 
> I'm curious if you've tried that one, to see if it actually lives up to
> the claim.
> 
> And I think the system is supposed to pick it as an equivalent,
> automatically, if something tries to use Courier when you don't have
> Courier installed.
> 
> 
Have you tried nimbus mono L or freemono?

-- 
Joseph Loo
j...@acm.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Bluetooth woes (again)

2015-10-26 Thread Joseph Loo
On 10/26/2015 04:26 AM, Patrick O'Callaghan wrote:
> On Sun, 2015-10-25 at 23:23 -0400, Jon LaBadie wrote:
>> On Sun, Oct 25, 2015 at 11:50:40PM +, Patrick O'Callaghan wrote:
>>> On Sun, 2015-10-25 at 14:05 -0600, jd1008 wrote:
>>>>
>>>> On 10/25/2015 01:57 PM, Patrick O'Callaghan wrote:
>>>>> On Sun, 2015-10-25 at 12:08 -0600, jd1008 wrote:
>>>>>> Had a similar problem. I changed the batteries with brand new
>>>>>> one
>>>>>> (Super Alkaline) and it worked.
>>>>> New battery made no difference.
>>>>>
>>>>> poc
>>>> Have trie re-authenticatinig the password? Usually 4 zeroes?
>>>
>>> The mouse is already paired. Furthermore, IIRC it has never asked
>>> me
>>> for a key.
>>
>> In the past when I had problems connecting to a device that "used to
>> work" I would deleted it from BT's list of known devices.
>>
>> However, recently I discovered that "deleting" and "unpairing" are
>> distinct operations.  I could not move a kbd to a different system
>> by deleting it from the first, I had to unpair the kbd before it 
>> would pair with the new system.
> 
> How do you unpair it? There is no such option in the settings dialogue
> in KDE, nor in Gnome. There is an option for removing it, which I've
> already tried.
> 
> poc
> 
Most blue tooth mouse has a button to enable connection to a blue tooth
device. Generally, you need to push the button , typically underneath
the mouse and force the mouse to start the pairing action.

-- 
Joseph Loo
j...@acm.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Bluetooth woes (again)

2015-10-25 Thread Joseph Loo
On 10/25/2015 05:38 PM, Patrick O'Callaghan wrote:
> On Sun, 2015-10-25 at 18:11 -0600, jd1008 wrote:
>>
>> On 10/25/2015 05:50 PM, Patrick O'Callaghan wrote:
>>> On Sun, 2015-10-25 at 14:05 -0600, jd1008 wrote:
>>>> On 10/25/2015 01:57 PM, Patrick O'Callaghan wrote:
>>>>> On Sun, 2015-10-25 at 12:08 -0600, jd1008 wrote:
>>>>>> Had a similar problem. I changed the batteries with brand new
>>>>>> one
>>>>>> (Super Alkaline) and it worked.
>>>>> New battery made no difference.
>>>>>
>>>>> poc
>>>> Have trie re-authenticatinig the password? Usually 4 zeroes?
>>> The mouse is already paired. Furthermore, IIRC it has never asked
>>> me
>>> for a key.
>>>
>>> poc
>> Have you by any chance or even by mistake changed the password?
> 
> To repeat: there is no password. This is a mouse. Not all BT devices
> use keys and I have never been asked for a password (key) for this
> device. I've even unconfigured the device and re-installed it. It still
> didn't ask for a key. I've also (separately) removed and re-inserted
> the dongle. On insertion I get this in dmesg:
> 
> [15213.164076] usb 3-1.2: Product: BCM20702A0
> [15213.164079] usb 3-1.2: Manufacturer: Broadcom Corp
> [15213.164081] usb 3-1.2: SerialNumber: 000272C6AB85
> [15213.172082] Bluetooth: hci0: BCM: chip id 63
> [15213.173129] Bluetooth: hci0: BCM20702A1 (001.002.014) build 
> [15213.173307] bluetooth hci0: Direct firmware load for 
> brcm/BCM20702A1-0a5c-21e8.hcd failed with error -2
> [15213.173312] Bluetooth: hci0: BCM: Patch brcm/BCM20702A1-0a5c-21e8.hcd not 
> found
> 
> i.e. there's a problem loading the firmware. This happened in the past
> and then stopped, but is now happening again. Googling for the error
> message led me to instructions for updating the firmware, all of which
> I followed last time this happened.
> 
> I've reported it to Bugzilla: 
> https://bugzilla.redhat.com/show_bug.cgi?id=1275122
> 
> BTW, this is the dongle: http://plugable.com/products/usb-bt4le#drivers
> 
> poc
> 
I had this problem with gnome. What I did, is to go to the bluetooth
device manager, delete the device, and then re-pair it again. This seems
to happen once when my battery in the mouse died.

-- 
Joseph Loo
j...@acm.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: openweather GNOME plugin and forecast.io

2015-10-25 Thread Joseph Loo
On 10/25/2015 10:27 AM, Matthew Saltzman wrote:
> On Sat, 2015-10-24 at 19:30 -0700, Joseph Loo wrote:
>> On 10/24/2015 02:54 PM, Matthew Saltzman wrote:
>>> My issue is the reverse of the thread about openweathermap.org.
>>> Openweathermap.org is working fine for me in the OpenWeather GNOME
>>> plugin, but if I switch to forecast.io, nothing loads. This used to
>>> work fine a couple of months ago, but now it fails on multiple
>>> machines. I have API keys for both sources and I can log into both
>>> from
>>> a browser.
>>>
>>> I find the forecast.io reports more accurate than
>>> openweathermap.org,
>>> so I'd prefer to switch, if I could get it working again.
>>>
>>> Any suggestions or related experiences?
>>>
>>> TIA.
>>>
>> Did you load the api key using the xxx.io registered key?
> 
> My API key appears in the OpenWeather settings window under Weather
> provider. Is that what you're asking, or is there something else I need
> to do? I can use that key to log into forecast.io's Web site.
> 
>>
I  am not sure, but remember there are 2 keys, one for .org and the
other for .io. Just a guess, since you are using the .io you might need
to get the api key from .io and put it in to make it work.

-- 
Joseph Loo
j...@acm.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: openweather GNOME plugin and forecast.io

2015-10-24 Thread Joseph Loo
On 10/24/2015 02:54 PM, Matthew Saltzman wrote:
> My issue is the reverse of the thread about openweathermap.org.
> Openweathermap.org is working fine for me in the OpenWeather GNOME
> plugin, but if I switch to forecast.io, nothing loads. This used to
> work fine a couple of months ago, but now it fails on multiple
> machines. I have API keys for both sources and I can log into both from
> a browser.
> 
> I find the forecast.io reports more accurate than openweathermap.org,
> so I'd prefer to switch, if I could get it working again.
> 
> Any suggestions or related experiences?
> 
> TIA.
> 
Did you load the api key using the xxx.io registered key?

-- 
Joseph Loo
j...@acm.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: acl

2015-09-22 Thread Joseph Loo
On 09/22/2015 05:53 AM, Patrick Dupre wrote:
> Yes,
> 
> I did:
> setfacl -m u:amsterdam:r out.pdf
> 
> but masterdam cannot access to the file:
> 
> ls /home/pdupre/out.pdf
> ls: cannot access /home/pdupre/out.pdf: Permission denied
> or
> I/O Error: Couldn't open file '/home/pdupre/out.pdf'
> 
> ===
>  Patrick DUPRÉ | | email: pdu...@gmx.com
>  Laboratoire de Physico-Chimie de l'Atmosphère | |
>  Université du Littoral-Côte d'Opale   | |
>  Tel.  (33)-(0)3 28 23 76 12   | | Fax: 03 28 65 82 44
>  189A, avenue Maurice Schumann | | 59140 Dunkerque, France
> ===
> 
> 
>> Sent: Tuesday, September 22, 2015 at 2:09 PM
>> From: "Cameron Simpson" <c...@zip.com.au>
>> To: "Community support for Fedora users" <users@lists.fedoraproject.org>
>> Subject: Re: acl
>>
>> On 22Sep2015 13:22, Patrick Dupre <pdu...@gmx.com> wrote:
>>> I am trying to use the acl, but I have not been successful.
>>
>> Do commands like setfacl fail?
>>
>>> I modified the /etc/fstab file:
>>> from
>>> dev/mapper/VolGrpUsr_DK0-home /home   ext4default   
>>> 1 2
>>> to
>>> dev/mapper/VolGrpUsr_DK0-home /home   ext4rw,acl   
>>> 1 2
>>> and
>>> mount -v -o remount /home
>>> mount: /dev/mapper/VolGrpUsr_DK0-home mounted on /home.
>>>
>>> This what I get:
>>> /dev/mapper/VolGrpUsr_DK0-home on /home type ext4 
>>> (rw,relatime,seclabel,stripe=2,data=ordered)
>>>
>>> This is the same with default or with acl.
>>> There is not indication that the acl are working!
>>
>> If rw and acl are default modes, then you won't see anything special.
>>
>> Test it with the setfacl command on something.
>>
>> Cheers,
>> Cameron Simpson <c...@zip.com.au>
>> -- 
>> users mailing list
>> users@lists.fedoraproject.org
>> To unsubscribe or change subscription options:
>> https://admin.fedoraproject.org/mailman/listinfo/users
>> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
>> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
>> Have a question? Ask away: http://ask.fedoraproject.org
>>
I suggest you do to getfacl /home/pdupre and getfacl /home/pdupre/out.pdf

-- 
Joseph Loo
j...@acm.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Disk Drive Torture Test

2014-11-29 Thread Joseph Loo

On 11/29/2014 04:23 PM, jd1008 wrote:

Is there a linux disk drive non-destructive torture test package?


Have you looked at badblocks?

--
Joseph Loo
j...@acm.org
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: NFS mount -

2014-11-14 Thread Joseph Loo

On 11/14/2014 03:10 PM, Bob Goodwin - Zuni, Virginia, USA wrote:


On 11/14/14 16:32, Rick Stevens wrote:

On 11/14/2014 12:12 PM, Bob Goodwin - Zuni, Virginia, USA issued this
missive:


Sorry, that was an error, I picked the wrong command from history, it
should have been:

[root@box10 bobg]# mount 192.168.1.48:/nfs4exports/data  /mnt/BOX48
mount.nfs: Connection timed out

With my poor vision I miss stuff like that easily.

You have several problems. First, the NFS server is set up to export

/nfs4exports
/nfs4exports/data
/nfs4exports/home

It is NOT exporting /mnt/nasdata.

/mnt/nasdata was an artifact of the Freenas server I am replacing.

You can try showmount -e on the
NFS server to see what it's actually exporting. I think you'll find the
things being exported all start with /nfs4exports.

[root@box10 bobg]# showmount -e 192.168.1.48
clnt_create: RPC: Port mapper failure - Unable to receive: errno 113 (No
route to host)

  If that's the case,
try:

mount 192.168.1.48:/nfs4exports /mnt/box48

[root@box10 bobg]# mount 192.168.1.48:/nfs4exports /mnt/box48
mount.nfs: Connection timed out


See my other comments below.


Does nothing until it eventually times out. I can ssh into the server
and see all the files. I tried to configure it to be nearly the same as
another NFS server that has been working well.

[bobg@box48 ~]$ cat /etc/exports
#
#/etc/exports

/nfs4exports
192.168.1.0/24(ro,sync,insecure,no_root_squash,no_subtree_check,fsid=0)

/nfs4exports/data
192.168.1.0/24(rw,sync,insecure,no_root_squash,no_subtree_check)

/nfs4exports/home
192.168.1.0/24(rw,sync,insecure,no_root_squash,no_subtree_check)


Changed as below:


Looking at your bindmounts, the actual mountpoints that you're using
aren't absolute. I think you want:

/home/data/nfs4exports/datanonerw,bind0 0
/home/home/nfs4exports/homenonerw,bind0 0

/etc/fstab changed as below, but what I used was copied from the other
working NFS:

# bind mounts

/home/data/nfs4exports/datanonerw,bind0 0

/home/home/nfs4exports/homenonerw,bind0 0


And ensure that the /nfs4exports, /nfs4exports/data and
/nfs4exports/home directories all exist BEFORE you execute the
bindmount.


ls / shows drwxr-xr-x.   4 root root   28 Nov 14 13:00 nfs4exports

and
[bobg@box48 ~]$ ls -l  /nfs4exports
total 0
drwxr-xr-x. 2 root root 6 Nov 14 13:00 data
drwxr-xr-x. 2 root root 6 Nov 14 13:00 home



/ BEFORE you execute the bindmount I'm not sure how to do/verify that? /


I have been referring to the Fedora Project NFS guide but apparently I
am missing something. I tried systemctl stop iptables on the server, no
change. I routinely mount the other NFS so I assume the problem is not
in Firewalld.

One difference is that the server in question has two identical drives
configured Raid1. Apparently XFS is preferred or required, I'm nor sure
but Anaconda kept changing ext4 to xfs so I assumed they know better
than I do?

--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-   Which is worse: ignorance or apathy?  I don't know.  Who cares?  -
--

Thanks,

Bob


can you ping the server from the client?

--
Joseph Loo
j...@acm.org
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: encription

2013-09-27 Thread Joseph Loo
On 09/27/2013 03:44 PM, Rick Stevens wrote:
 On 09/27/2013 02:22 PM, Patrick Dupre issued this missive:
 Hello,

 I encripted one partition of a usb key.
 When I plug it, it used to ask me about the paraphase, but after I
 entered one time, the partition is mounted. Then, I can eject the
 key, and replug it,
 but it does not ask me anymore the paraphrase, mounting the partition
 automatically.
 I would like that it ask me the paraphrase every time that the key
 in replugged.
 How can I get this behavior?

 Did you actually eject or dismount the USB device (via the umount or
 eject commands or desktop options) or did you simply unplug it? If you
 unmounted or ejected it, I'd imagine you'd be asked for the passphrase
 the next time you mounted it. If it doesn't ask, then yeah, we have an
 issue--nothing having to do with that device should be cached.

 If all you did was unplug it, then the filesystem was never closed, the
 system never saw it as unmounted and the current mount is still valid.
 If that is the case, you're lucky it wasn't corrupted (you must have
 waited long enough between write operations for changes to be flushed
 to the device).
 --
 - Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
 - AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
 --
 -  Microsoft is a cross between The Borg and the Ferengi.   -
 -  Unfortunately they use Borg to do their marketing and Ferengi to  -
 -   do their programming.  -- Simon Slavin  -
 --
did you check if the gnome key ring program is keeping the password so
that it will not prompt you. Generally, when you put the password, there
is a check on save the password.

This is my experience encfs

-- 
Joseph Loo
j...@acm.org

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Fedora to Android

2013-08-06 Thread Joseph Loo
On 08/06/2013 05:30 AM, Gary Stainburn wrote:
 On Tuesday 06 August 2013 13:09:30 Paul Smith wrote:
 On Tue, Aug 6, 2013 at 12:31 PM, Dave Cross dav...@gmail.com wrote:
 I'd like to transfer a directory of personal information
 (not just contacts) from my Fedora-19/KDE laptop
 to my Samsung Galaxy S2 android phone.
 What is the best way currently to do this?
 Is MTP functional now?
 I'd prefer if possible to use rsync.
 simple-mtpfs seems to work pretty well for me.

 See http://forums.fedoraforum.org/showthread.php?t=286547
 In addition, you may want to consider using DropBox:

 https://www.dropbox.com/

 Paul
 My Galaxy Tab both have Dropbox as does my Linux laptop. It's easy and 
 convenient but depends on the speed of your internet (1MB over line drivers 
 to a remote DSL router is painful)

 I have WellFTP installed on both devices and Filezilla installed. This is 
 much 
 quicker as it only uses the local WIFI AP

I have a Samsung Note II. I use Syncbot to upload and download my files
using sftp via wireless setup.

-- 
Joseph Loo
j...@acm.org

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org