[Trisquel-users] Re : Add new printer: "could not add new printer" error message

2018-08-26 Thread lcerf
Also, Debian stretch has more recent version of the packages.  For example,  
it has version 3.16.11 of HPLIP vs. version 3.16.3 in Trisquel's repository.   
If the model of the printer is recent, that can make a difference.


Re: [Trisquel-users] Abrowser: MIME type not found

2018-08-26 Thread Mason Hock
> LibreJS breaks sites by not preferring noscript.

Ah. I had run into LibreJS breaking sites before, but didn't know what the 
cause was.

> uMatrix

I use NoScript + uBlock Origin. I'm not too familiar with uMatrix, but if 
that's your only privacy addon then that's probably what's blocking the videos.


signature.asc
Description: PGP signature


Re: [Trisquel-users] Abrowser: MIME type not found

2018-08-26 Thread Caleb Herbert
uMatrix, because LibreJS breaks sites by not preferring noscript.


Re: [Trisquel-users] Abrowser: MIME type not found

2018-08-26 Thread Mason Hock
What privacy plugins are you using?


signature.asc
Description: PGP signature


[Trisquel-users] BUG: Trisquel goes into "Log-In Loop" every time after installing new "Trisquel Base" updates.

2018-08-26 Thread admin+trisquel
Trisquel goes into "Log-In Boot Loop" every time after installing new  
"Trisquel Base" updates. I had to re-install "lightdm" package via TTY; every  
time after log-in loop. Any tweaks or fix for this?


[Trisquel-users] Abrowser: MIME type not found

2018-08-26 Thread Caleb Herbert
When I get embedded videos or sounds in Abrower, the controls always
say the file is between 00:00 and 00:00 long, and the loading circle
always shows up with a message saying MIME type not found.

What do I do?


[Trisquel-users] Re : Settings after Trisquel 8 installation

2018-08-26 Thread lcerf

# friendly recovery mode - what's this?

Currently, if the user selects "recovery mode" from the bootloader menu they  
end up dropped at a root shell prompt.  Ideally, they'd end up at a small  
ncurses application, one option of which would be "root shell".
Other options can include things like "start system in safe graphics mode" or  
"forgotten password recovery".

https://blueprints.launchpad.net/ubuntu/+spec/friendly-recovery


Re: [Trisquel-users] Add new printer: "could not add new printer" error message

2018-08-26 Thread martinhogg

Open a Browser and type localhost:631 into the addressbar.
Gives you the cups interface, I find it often easier to use to configure  
printers :)


Re: [Trisquel-users] Add new printer: "could not add new printer" error message

2018-08-26 Thread Mason Hock
First I would install the package "printer-driver-all" and try again. It likely 
won't fix your problem, but it is worth trying because it takes so little time. 

> Then it
> says "could not add new printer", without telling me more.

Sometimes the error messages printed to a terminal are more helpful than the 
ones in the graphical interface. Try opening a terminal with Ctrl+Alt+T, and 
then type "system-config-printer" (without the quotes) and press Enter. Attempt 
to add the printer again. I anything is printed to the terminal when you 
attempt to add the printer, copy it (Ctrl+Shift+C) and paste it here.

> I am pretty sure it is not a driver problem, since I have another computer
> running on Debian Stretch with the same drivers installed on both computers.

Are you only using Debian main (the default), or have you enabled contrib or 
non-free?


signature.asc
Description: PGP signature


[Trisquel-users] Add new printer: "could not add new printer" error message

2018-08-26 Thread louis . rouille

Hi there,
I try to get a printer work with a Trisquel computer. When I go to the system  
settings, printer and try to add a new printer: I can see the printer I want  
to add, so I select it and click on "add this new printer". Then it says  
"could not add new printer", without telling me more.


I am pretty sure it is not a driver problem, since I have another computer  
running on Debian Stretch with the same drivers installed on both computers.


I don't quite get how to solve the pb, nor how to get some more information  
about it. What can I do?


Best,
Louis


Re: [Trisquel-users] Settings after Trisquel 8 installation

2018-08-26 Thread enduzzer

Why go this route, ass-backwards? I mena  "install and then remove."

Use netinstall ISO image, install the basic minimum CLI interface and only  
add software you need.


[Trisquel-users] Settings after Trisquel 8 installation

2018-08-26 Thread znavko
Hello! I use Trisqule + LXDE + Lightdm on Laptop 1.9 MHz, 8GB Ram. After  
installation I turn environment like this. I delete unnecessary packages,  
install necessary packages, disable NetworkManager and create wpa-supplicant  
unit for systemd, also configure iptables, tor, icecat. numlockx for auto  
switch on numlock after boot.



# Install and delete packages
2  apt-get install apt-file icecat gimp audacious audacity abrowser  
thunar geany tor iptables openvpn filezilla evince pdftk libreoffice git  
numlockx

4  apt-get remove sylpheed pidgin xfburn xsane xscreensaver

# Remove unnecessary units from systemd
# Networkmanager save wifi password so I do not use it
5  systemctl disable NetworkManager

# acpid reacts on events listening own file. systemd does this. so I disable  
acpid

  systemctl disable acpid
  systemctl disable acpid.path
  systemctl disable acpid.socket

# if have no printers disable cups - print service
  252  systemctl disable cups

# friendly recovery mode - what's this?
  256  systemctl disable friendly-recovery.service

# if you would like to turn clock manually without system connects to time  
server disable time synchronization

  260  systemctl disable systemd-timesyncd.service
  261  systemctl status ureadahead.service

# not having LAN disable remote-fs and avahi
  265  systemctl disable remote-fs.target
  334  systemctl disable avahi-daemon.service


Internet through wpa_supplicant

# cat /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=/run/wpa_supplicant
ctrl_interface_group=0
update_config=1

network={
ssid="homewifi"
scan_ssid=1
proto=WPA2
key_mgmt=WPA-PSK
psk=hashmyhash
}

# ifconfig wlp2s0 up
# wpa_supplicant -B -i wlp2s0 -c /etc/wpa_supplicant/wpa_supplicant.conf
# dhclient wlp2s0 &
# ping fsf.org
..it goes ok..


# cat wpa2.service
[Unit]
Description=WPA 2
Wants=network.target
After=sys-subsystem-net-devices-wlp2s0.device
Before=network.target
BindsTo=sys-subsystem-net-devices-wlp2s0.device

[Service]
Type=oneshot
RemainAfterExit=yes

ExecStart=/sbin/ifconfig wlp2s0 up
ExecStart=/sbin/wpa_supplicant -B -i wlp2s0 -c  
/etc/wpa_supplicant/wpa_supplicant.conf

ExecStart=/sbin/dhclient wlp2s0

[Install]
WantedBy=multi-user.target


# systemctl enable wpa2.service


Iptables configuration

  nano /etc/iptables-desktop.config
  cat  /etc/iptables-desktop.config
*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -m state ! --state NEW -j DROP
-A INPUT -i lo -j ACCEPT
-A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
COMMIT


  iptables-restore < /etc/iptables-desktop.config
  service iptables save

# installing iptables-persitant for run firewall configurations with systemd  
after boot

  apt-get install iptables-persistant


Re: [Trisquel-users] How to Add a Key to GPG Keyring?

2018-08-26 Thread Mason Hock
> How do I add a key to my GPG keyring?

$ gpg --recv-keys [the key ID]

Assuming that you are installing Replicant 6.0, the command would be

$ gpg recv-keys 5816A24C10757FC4

I got that key ID from here: 
https://redmine.replicant.us/projects/replicant/wiki/ReplicantReleaseKey


signature.asc
Description: PGP signature


[Trisquel-users] How to Add a Key to GPG Keyring?

2018-08-26 Thread hartkemd

How do I add a key to my GPG keyring?
Currently following guide at:  
https://redmine.replicant.us/projects/replicant/wiki/GalaxyS3I9300Installation