Re: [lug:18811] Linux

2023-06-18 Thread Jeremiah Bess
connection. This is why you cannot remove it, it's built-in. Jeremiah Bess On Sat, Jun 17, 2023 at 10:43 PM Robert Citek wrote: > Great. So, given that you know how to do those things, what exactly is > your question? - Robert > > On Sat, Jun 17, 2023 at 8:09 PM JM R wrote: > >>

Re: [lug:18808] Linux

2023-06-17 Thread Jeremiah Bess
will need to engage a cybersecurity incident response company, but as I said, the app is benign. It may have been bundled with another app as a dependency. If you don't like the app being there, just uninstall it and the problem is solved. https://chromeos.dev/en/productivity/terminal Jeremiah Bess

Re: [lug:18799] Linux

2023-06-17 Thread Jeremiah Bess
https://support.google.com/chromebook/community?hl=en=2131142008593061929-NA Jeremiah Bess On Sat, Jun 17, 2023 at 1:16 PM Robert Citek wrote: > ChromeOS behaves slightly differently depending on vendor make and model, > and ChromeOS version. > > What make/model of Chromebook

Re: [lug:18796] Linux

2023-06-17 Thread Jeremiah Bess
Chromebooks might run on a Linux kernel, like Android, but they aren't really similar to regular Linux distributions. Not sure our group can help much more. Jeremiah Bess On Sat, Jun 17, 2023 at 11:45 AM JM R wrote: > I was not able to remove it with the instructions. I have no experie

Re: [lug:18794] Linux

2023-06-16 Thread Jeremiah Bess
Have you tried removing it? https://support.google.com/chromebook/thread/185344656/how-to-remove-terminal-icon-and-android-app-icon-after-removing-crostini-and-android?hl=en https://support.google.com/chromebook/thread/28693192/linux-app-uninstalled-icon-still-showing?hl=en Jeremiah Bess

Re: [lug:18790] dd not creating bootable ISO files

2023-02-16 Thread Jeremiah Bess
create an .iso from an existing file system. Jeremiah Bess On Thu, Feb 16, 2023 at 1:14 PM sami@gmail.com wrote: > I've tried the following, none worked... > > dd if=/dev/sda1 of=/ubuntu.iso bs=4K > mkisofs -o /dev/sda / > mkisofs -o /dev/sda1 / > > Those

Re: [lug:18788] dd not creating bootable ISO files

2023-02-16 Thread Jeremiah Bess
Can you share the commands you are using leading up to the point where it doesn't work? Jeremiah Bess On Thu, Feb 16, 2023 at 8:53 AM sami@gmail.com wrote: > I've customized a Ubuntu 20.04 boot USB instance. The install works fine > and is completely automated. I can use dd to

Re: [lug:18786] HAProxy + Roxy-Wi in Debian (Help Needed)

2023-01-14 Thread Jeremiah Bess
I'm not familiar with that software. But these posts seem to be similar to your issue and might point you in the right direction: https://github.com/hap-wi/roxy-wi/issues/345 https://www.linuxquestions.org/questions/showthread.php?p=6404336#post6404336 Jeremiah Bess On Sat, Jan 14, 2023 at 8:03

Re: [lug:18780] Disable cron jobs and daemons

2022-05-11 Thread Jeremiah Bess
"shutdown now" Jeremiah Bess On Wed, May 11, 2022 at 10:37 AM Fabio Bairros wrote: > Hello. > > How to disable the cron jobs and daemons for all users connected in a > machine (device) ? > and enable before. > > > thanks !! > > -- > -- > You re

Re: [lug:18775] Re: Routing packets between 2 routers...

2022-01-30 Thread Jeremiah Bess
is, even with a mesh network node in my office. Once I move to my new office upstairs, I'll likely get some ethernet run to it. Jeremiah Bess On Sun, Jan 30, 2022 at 7:59 PM John Phillips wrote: > I don't have cable and looking on line the ATT router has wifi. > > Just a thought, but h

Re: [lug:18771] Re: Routing packets between 2 routers...

2022-01-29 Thread Jeremiah Bess
can set up more defined routes between your networks. Jeremiah Bess On Sat, Jan 29, 2022 at 12:56 PM Scott Vargovich wrote: > Router A is directly connected to the internet. It is the internet > gateway that AT put in when we got our internet. Router B is connected > to the interne

Re: [lug:18769] Re: Routing packets between 2 routers...

2022-01-28 Thread Jeremiah Bess
ork A internet, and a host on network B will route through network B internet. Let me know if I am way off base on what you are trying to do. Jeremiah Bess On Fri, Jan 28, 2022 at 1:36 PM Scott Vargovich wrote: > Basically I need to route packets from the 192.168.1.x network to the >

Re: [lug:18753] Re: execute commands autostart style...

2021-02-26 Thread Jeremiah Bess
I know nothing about Artix or OpenRC. So other than doing some research on OpenRC, maybe you can do a cron job that checks every minute if your shell command is running, and if not start it. Jeremiah Bess On Fri, Feb 26, 2021 at 2:58 PM Scott Vargovich wrote: > I should also add that I w

Re: [lug:18750] XCB Error wile Displaying

2021-02-26 Thread Jeremiah Bess
When you SSH, you don't have a graphical display instance to use. This post might lead you in the right direction: https://askubuntu.com/questions/47642/how-to-start-a-gui-software-on-a-remote-linux-pc-via-ssh#47658 oli@bert:~$ ssh tim oli@tim:~$ export DISPLAY=:0 oli@tim:~$ firefox Jeremiah

Re: [lug:18741] Hacked by android ftp server app

2021-02-08 Thread Jeremiah Bess
. - Jumping to the conclusion you were hacked as a result of this software is a stretch. - I could be completely wrong on all of this. But back to my point: what is there to do? Jeremiah Bess On Sun, Feb 7, 2021 at 10:18 PM fugee ohu wrote: > I installed an android ftp server

Re: [lug:18737] Run a. Sh script in crontab

2021-02-01 Thread Jeremiah Bess
Looks like you forgot to specify the username to run the new.sh under. 43 5 * * * root /var/www/html/new.sh Jeremiah Bess On Sun, Jan 31, 2021 at 7:37 PM Mudassar Idrees wrote: > Hi Dears, > I'm unble to run script at a schedule in crontab, > Script is working perfectly when run

Re: [lug:18732] is this fine COPY

2021-01-26 Thread Jeremiah Bess
Not quite. Assuming you want to get all the a*.txt files recursively inside the daten directory, this is the correct syntax: cp -r date/a*txt backup Jeremiah Bess On Tue, Jan 26, 2021 at 1:32 AM 'highsky...@yahoo.de' via Linux Users Group wrote: > cp -r a*.txt daten backup > > hel

Re: [lug:18700] Looking for linux monitoring applicaitons

2020-09-25 Thread Jeremiah Bess
I've never had the need for server monitoring, but Zabbix, Nagios, and LibreNMS are ones that often come up when reading about server administration tools. Jeremiah Bess On Fri, Sep 25, 2020 at 2:06 PM Jeremiah Garmatter wrote: > Hello, > > As the title says, I am looking for a (p

Re: [lug:18688] forgot root password, trying to drop to root shell from recovery mode

2020-06-17 Thread Jeremiah Bess
options listed here (root shell you've already tried): http://www.linuxandubuntu.com/home/how-to-reset-root-password-in-ubuntu. There are other tutorials online on how to do these things. Jeremiah Bess On Wed, Jun 17, 2020 at 4:25 PM fugee ohu wrote: > On Xubuntu 18.04 when I try to drop to r

Re: [lug:18681] Openssl-1.1.1 on centos7

2020-06-11 Thread Jeremiah Bess
That'd be a question for the CentOS developers. And just so you know, we run a moderated forum for first-time posters, so I deleted your duplicate post. Jeremiah Bess On Thu, Jun 11, 2020 at 7:02 AM Chris Pretorius wrote: > Hi > > I read some posts that openssl-1.1.1 wont be

Re: [lug:18675] Xubuntu 20.4 unable to connect to ssh-server Permission denied

2020-05-31 Thread Jeremiah Bess
with each attempt. Jeremiah Bess On Sun, May 31, 2020 at 5:31 AM fugee ohu wrote: > I installed Xubuntu 20.4 and then ssh-server but I can't connect to the > server Also there's no gui (that I can find) for network adapter settings > > -- > -- > You received this messag

Re: [lug:18673] Win 10 Pro wipe...

2020-05-31 Thread Jeremiah Bess
I guess to answer your question, no, you should have no issues wiping Win10 and installing Linux. Your distro will determine if it allows UEFI booting. Try without disabling Secure Boot, and if that doesn't work, them disable that and see. Jeremiah Bess On Sun, May 31, 2020 at 9:47 AM Jeremiah

Re: [lug:18669] Easy foss video editor

2020-05-28 Thread Jeremiah Bess
be the specs as the existing stick. However, if you are simply replacing the existing stick with a new higher capacity stick, then it's simply just staying in the specs of your computer. Jeremiah Bess On Thu, May 28, 2020 at 12:13 PM Mohammad Abdullah wrote: > Sir, I presented my hypothe

Re: [lug:18666] Easy foss video editor

2020-05-28 Thread Jeremiah Bess
That's really a question for the developers of the software. Jeremiah Bess On Thu, May 28, 2020 at 9:20 AM Mohammad Abdullah wrote: > Sorry, it got alot of typos. > > > Yeah, > > Sirs/Madam, > > What if I add another 2gb RAM with the existing setup. Then what a

Re: [lug:18663] Easy foss video editor

2020-05-28 Thread Jeremiah Bess
Only one way to tell, and that's to try. Jeremiah Bess On Thu, May 28, 2020 at 8:13 AM Mohammad Abdullah wrote: > Sir, > > What is I add another 2 gb RAM. What are the comparability for adding > additional 2gb RAM with the existing RAM. > > Thanks. > > Abdullah >

Re: [lug:18658] Re: double output in command line

2020-05-20 Thread Jeremiah Bess
your host into a DDOS bot. Jeremiah Bess On Wed, May 20, 2020 at 8:55 AM Mohammad Abdullah wrote: > On Wed, 20 May, 2020, 6:52 PM T S, wrote: > >> I am afraid that is not your biggest problem. >> >> take a look at >> https://intezer.com/blog/research/kaiji-new

Re: [lug:18656] Re: double output in command line

2020-05-20 Thread Jeremiah Bess
Thanks for sharing TS, that's good information about some bad stuff. Jeremiah Bess On Wed, May 20, 2020 at 7:22 AM T S wrote: > I am afraid that is not your biggest problem. > > take a look at > https://intezer.com/blog/research/kaiji-new-chinese-linux-malware-turning-to-golang/ &

Re: [lug:18652] http://github.com/adi1090x/dynamic-wallpaper

2020-05-02 Thread Jeremiah Bess
le to post the code in the email body without the tabs getting screwed up. Jeremiah Bess On Sat, May 2, 2020 at 4:48 PM Jeremiah Bess wrote: > I don't have anything running KDE so I can't test it out but, I can give > this a shot as it looks pretty simple. One question: how

Re: [lug:18651] http://github.com/adi1090x/dynamic-wallpaper

2020-05-02 Thread Jeremiah Bess
I don't have anything running KDE so I can't test it out but, I can give this a shot as it looks pretty simple. One question: how are you starting this currently? Manually? Cron job? .bashrc? Jeremiah Bess On Sat, May 2, 2020 at 1:07 PM Scott Vargovich wrote: > I've installed this pack

Re: [lug:18648] Easy foss video editor

2020-04-30 Thread Jeremiah Bess
upgrading your hardware and look for a more full-featured distro. But, you can always just try what's out there. Worst case scenario, it doesn't work and it still didn't cost you anything but your time. Jeremiah Bess ‪On Thu, Apr 30, 2020 at 3:34 PM ‫Mohammad Abdullah مُحَمّد عَبدُاﷲ‬‎

Re: [lug:18640] double output in command line

2020-04-22 Thread Jeremiah Bess
output without grep? Jeremiah Bess On Wed, Apr 22, 2020 at 8:58 AM Humberto Blanco Castillo < hblanc...@gmail.com> wrote: > Hi > I have a serious mistake wiyh my console executing some commands, for > example ls > > [user@repositorio etc]# ps -ef | grep yum > user 115

Re: [lug:18634] First questions F11//and I did add a question

2020-03-18 Thread Jeremiah Bess
It is not dangerous. I just installed version 7.4, and on the main menu there is the configuration menu, which has the ability to disable full screen. Jeremiah Bess On Wed, Mar 18, 2020 at 5:47 AM highsky...@yahoo.de wrote: > Hello and thank You > > the name is > > Extreme Tu

Re: [lug:18631] First questions F11//and I did add a question

2020-03-14 Thread Jeremiah Bess
What is the name of the game? This doesn't seem to be a Linux issue, but rather an issue with the game. There may be is a setting in the game settings for graphics to not do full screen, but this is not always the case. Jeremiah Bess On Sat, Mar 14, 2020 at 8:31 AM highsky...@yahoo.de wrote

Re: [lug:18628] First questions F11//and I did add a question

2020-03-04 Thread Jeremiah Bess
What is the name of the software taking up the whole screen? Have you tried using Alt-F4 to close that application? Jeremiah Bess On Wed, Mar 4, 2020 at 5:58 AM highsky...@yahoo.de wrote: > Hello > Thnak You > > How can I make a screenshot > cause the software is fillimg

Re: [lug:18625] First questions F11

2020-02-19 Thread Jeremiah Bess
The name of your software, your Linux distribution name, and a screenshot of your issue might clarify the problem you are asking about. Jeremiah Bess On Wed, Feb 19, 2020 at 8:02 AM 'highsky...@yahoo.de' via Linux Users Group wrote: > good afternoon > My first question in this group

Re: [lug:18622] Re: VPN

2020-02-13 Thread Jeremiah Bess
A VPN is not meant to bypass security. There are plenty of websites describing how to set up openVPN on Linux found in Google search results. Do you have a specific question? Jeremiah Bess On Thu, Feb 13, 2020, 12:15 Dr. Ali Gamal wrote: > How can I use it, else if possible I want it as .

Re: [lug:18620] VPN

2020-02-13 Thread Jeremiah Bess
OpenVPN Jeremiah Bess On Thu, Feb 13, 2020, 09:08 Dr. Ali Gamal wrote: > Hi, > > I want a free VPN program for scientific Linux. > > Regards > > -- > -- > You received this message because you are subscribed to the Linux Users > Group. > To post a messa

Re: [lug:18618] forecast and weewx

2020-02-05 Thread Jeremiah Bess
The error says it can't find the .tgz file, perhaps supply the wee_extention command with the full path to the .tgz? Also, this page ( http://www.weewx.com/docs/utilities.htm#wee_extension_utility) says you should use: --install= Note the equals sign there. Jeremiah Bess On Wed, Feb 5, 2020

Re: [lug:18615] What type of operating system is installed on this disk?

2020-01-05 Thread Jeremiah Bess
It's possible it was a dual boot system at one point since there is no other Linux partitions listed. The other option is the disk was formatted with a Parted version at or below 3.0 per this page: https://www.gnu.org/software/parted/manual/html_node/set.html Jeremiah Bess On Sun, Jan 5, 2020

[lug:18610] Processes hang if NFS connection is lost

2019-11-20 Thread Jeremiah Bess
0 Jeremiah Bess -- -- You received this message because you are subscribed to the Linux Users Group. To post a message, send email to linuxusersgroup@googlegroups.com To unsubscribe, send email to linuxusersgroup+unsubscr...@googlegroups.com For more options, visit our group at http

Re: [lug:18605] Blacklist wifi card.

2019-10-25 Thread Jeremiah Bess
is for debian-based, but I suspect it's the same for other distros. https://linuxconfig.org/how-to-blacklist-a-module-on-ubuntu-debian-linux Jeremiah Bess On Fri, Oct 25, 2019 at 10:31 AM Scott Vargovich wrote: > Hi there, > > I have a USB wifi card I want to use because the on-b

Re: [lug:18602] mount FreeBSD hard drive in Linux

2019-10-21 Thread Jeremiah Bess
for both the /usr/home/aaa and /? Jeremiah Bess On Mon, Oct 21, 2019 at 5:19 PM fugee ohu wrote: > I connected a FreeBSD drive by IDE cable to my system board via Raid card > with IDE header on it After booting ubuntu it appears as /dev/sdd with it's > only partition sdd1 I mounte

Re: [lug:18600] suckless.com surf install issue...

2019-10-20 Thread Jeremiah Bess
-surf-browser-doesnt-compile-and-other-issues/ Jeremiah Bess On Sun, Oct 20, 2019 at 8:06 PM Scott Vargovich wrote: > Hi there, > > I'm trying to get suckless.org dwm and its tools installed. While > attempting to install the surf browser, here's a paste of what happens from > th

Re: [lug:18594] Chrome issues and corrupted USB stick...

2019-08-30 Thread Jeremiah Bess
now if any tools you could use to recover data from the drive. If you find any good ones, please let us know so we can bookmark it for future reference. Jeremiah Bess On Fri, Aug 30, 2019 at 3:53 PM Scott Vargovich wrote: > Hi there, > > I'm having 2 issues with Chrome. I'm running g

Re: [lug:18591] Debian 10 (Buster) and swap increasing with swappiness = 0 !

2019-08-21 Thread Jeremiah Bess
Try commenting out the swap partition in your /etc/fstab file. Unless you want to reboot, you can try the swapoff -a command . Jeremiah Bess On Wed, Aug 21, 2019 at 11:32 AM Luiz Gustavo Sarubi Macchi < gugui.sarubi.mac...@gmail.com> wrote: > hi all > after upgrading from Stretch

Re: [lug:18589] permissions for website directories for nginx

2019-08-15 Thread Jeremiah Bess
That's probably a question better left for a nginx user group or forum. However, general best practices for any service is that it is files/directories are owned and run by a service account not associated with any actual user or other service. This is so if the service is ever compromised, it's

Re: [lug:18587] STUCK IN A SYNTAX OF UNIX SOCKET PROGROMMING

2019-08-05 Thread Jeremiah Bess
This isn't actually anything Linux specific, as that code is used in C/C#/C++. Here's a quick article about C sockets, https://www.geeksforgeeks.org/socket-programming-cc/. If you need anything more in-depth then it's probably best to ask in a programming group. Jeremiah Bess On Mon, Aug 5

Re: [lug:18583] what happens to a drive if i run `dd if=/dev/null' of=/dev/sdx`

2019-04-14 Thread Jeremiah Bess
No idea, possibly. On Sun, Apr 14, 2019, 16:29 fugee ohu wrote: > > > On Sunday, April 14, 2019 at 5:48:20 PM UTC-4, Network Ninja wrote: >> >> It will empty the drive contents. Nothing damaging, besides the >> destruction of data as you intended. >> >> On Sun, Apr 14, 2019, 15:38 fugee ohu

Re: [lug:18581] what happens to a drive if i run `dd if=/dev/null' of=/dev/sdx`

2019-04-14 Thread Jeremiah Bess
It will empty the drive contents. Nothing damaging, besides the destruction of data as you intended. On Sun, Apr 14, 2019, 15:38 fugee ohu wrote: > what happens to a drive if i run `dd if=/dev/null' of=/dev/sdx` cause i > did that by accident instead what should have been /dev/zero > > -- > --

Re: [lug:18579] Ubuntu 18.04 frequent freezes

2019-04-13 Thread Jeremiah Bess
Check out the sessions feature in Chrome. Jeremiah Bess On Sat, Apr 13, 2019 at 12:36 PM fugee ohu wrote: > > > On Saturday, April 13, 2019 at 9:00:44 AM UTC-4, Network Ninja wrote: >> >> Not sure why you'd want to run two browsers at once, but web browsers are >>

Re: [lug:18575] Ubuntu 18.04 frequent freezes

2019-04-13 Thread Jeremiah Bess
can run "sudo init 5". >> >> If you find the machine is not freezing as before, you can look at what >> packages need to be installed to get the Desktop of your choice. There are >> plenty of articles about that, but let us know how it works out for you or >>

Re: [lug:18573] Ubuntu 18.04 frequent freezes

2019-04-09 Thread Jeremiah Bess
e are plenty of articles about that, but let us know how it works out for you or if you need any help. Jeremiah Bess On Sun, Apr 7, 2019 at 10:56 PM fugee ohu wrote: > > > On Friday, March 29, 2019 at 1:45:04 PM UTC-4, bluesf...@gmail.com wrote: >> >> I tend to agree with Jeremia

Re: [lug:18571] Debian automatic dist upgrade

2019-04-04 Thread Jeremiah Bess
Awesome, glad I could help. Jeremiah Bess On Thu, Apr 4, 2019 at 10:16 AM Dave Schile wrote: > That is exactly what I need, Jeremiah. Thank you. I used: > > curl -s http://ftp.us.debian.org/debian/dists/stable/Release | grep > '^Version:' | grep -o '[0-9\.]\+' > > On Wednes

Re: [lug:18569] Debian automatic dist upgrade

2019-04-03 Thread Jeremiah Bess
If I'm understanding what you are wanting, this should suffice: curl -s http://ftp.us.debian.org/debian/dists/stable/Release | grep "Description" Jeremiah Bess On Wed, Apr 3, 2019 at 4:48 PM Dave Schile wrote: > Hi, > Does anyone know of a way to programmatically get the

Re: [lug:18566] Ubuntu 18.04 frequent freezes

2019-03-29 Thread Jeremiah Bess
versions of Linux that are better suited for your hardware. Peppermint and Lubuntu are popular choices, but this article has some others you can consider: https://itsfoss.com/lightweight-linux-beginners/ Jeremiah Bess On Fri, Mar 29, 2019 at 4:35 AM fugee ohu wrote: > I'm running Ubuntu 18

Re: [lug:18561] hard vs soft symlink

2018-11-29 Thread Jeremiah Bess
the motion service/process Jeremiah Bess On Thu, Nov 29, 2018 at 7:06 AM fugee ohu wrote: > > > On Thursday, November 29, 2018 at 9:00:49 AM UTC-5, Network Ninja wrote: >> >> Stop motion, rename the existing directory, create the new directory and >> symlink, then restart

Re: [lug:18559] hard vs soft symlink

2018-11-29 Thread Jeremiah Bess
Oh, and copy the saved data to the new directory, then restart motion. Jeremiah Bess On Thu, Nov 29, 2018 at 7:00 AM Jeremiah Bess wrote: > Stop motion, rename the existing directory, create the new directory and > symlink, then restart motion. > > Jeremiah Bess > > >

Re: [lug:18558] hard vs soft symlink

2018-11-29 Thread Jeremiah Bess
Stop motion, rename the existing directory, create the new directory and symlink, then restart motion. Jeremiah Bess On Thu, Nov 29, 2018 at 6:58 AM fugee ohu wrote: > I have two directories that already exist, A and B I want the operating > system to read and write to B as if i

Re: [lug:18555] A ridiculously easy way to change mysql data directory

2018-11-24 Thread Jeremiah Bess
method out. Be sure to let us know what you choose and how it turns out. Jeremiah Bess On Sat, Nov 24, 2018 at 4:09 AM fugee ohu wrote: > I like to keep all my data on a separate drive so i know i can go crazy on > my operating system drive without worrying about data but I often

Re: [lug:18553] bind service to wireless adapter

2018-11-23 Thread Jeremiah Bess
Actually most services that you install on Linux have the ability to bind to a specific adapter or IP address. You may want to reach out to the developers and see if there is a way to do it. Jeremiah Bess On Fri, Nov 23, 2018, 14:44 fugee ohu > > On Friday, November 23, 2018 at 1:43:24 PM

Re: [lug:18551] bind service to wireless adapter

2018-11-23 Thread Jeremiah Bess
Just installed in a VM, saw no settings in a quick glance through the motion.conf file, but it did reference some help installed at /usr/share/doc/motion/motion_guide.html. Jeremiah Bess On Fri, Nov 23, 2018 at 11:38 AM Jeremiah Bess wrote: > Have you looked through the .conf file or any h

Re: [lug:18550] bind service to wireless adapter

2018-11-23 Thread Jeremiah Bess
Have you looked through the .conf file or any help files that come with the program? Jeremiah Bess On Fri, Nov 23, 2018 at 10:46 AM fugee ohu wrote: > How can I bind the motion server to the wireless adapter instead of wired > > -- > -- > You received this message because you

Re: [lug:18545] Re: Not in init.d and rc5 still at startup - Debian

2018-08-23 Thread Jeremiah Bess
s) > --- > You received this message because you are subscribed to the Google Groups > "Linux Users Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to linuxusersgroup+unsubscr...@googlegroups.com. > For more options, vi

Re: [lug:18533] deja dup, back in time, ubuntu 18.04

2018-05-31 Thread Jeremiah Bess
an > email to linuxusersgroup+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Jeremiah Bess -- -- You received this message because you are subscribed to the Linux Users Group. To post a message, send email to linuxusersgroup@googlegroups

Re: [lug:18532] totally sick of one click posting - i can't take it anymore

2018-05-31 Thread Jeremiah Bess
(http://tinyurl.com/LUG-Rules) > --- > You received this message because you are subscribed to the Google Groups > "Linux Users Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to linuxusersgroup+unsubscr...@googlegroups.com.

Re: [lug:18516] Re: [Centos 7] Network interface loses the ip address

2018-05-25 Thread Jeremiah Bess
; To unsubscribe, send email to linuxusersgroup+unsubscr...@googlegroups.com > For more options, visit our group at > http://groups.google.com/group/linuxusersgroup > References can be found at: http://goo.gl/anqri > Please remember to abide by our list rules (http://tinyurl.com/LUG-R

Re: [lug:18509] Antergos DNS issues...

2018-05-23 Thread Jeremiah Bess
her.gov/ > Resolving www.weather.gov (www.weather.gov)... 2600:1407:a000:28a::116, > 2600:1407:a000:289::116, 2600:1407:a000:2a1::116, ... > Connecting to www.weather.gov > (www.weather.gov)|2600:1407:a000:28a::116|:443... > connected. > HTTP request sent, awaiting response... 200 OK

Re: [lug:18507] Antergos DNS issues...

2018-05-23 Thread Jeremiah Bess
t;> >>>> [scott@enigma ~]$ dig weather.gov >>>> >>>> ; <<>> DiG 9.12.1-P2 <<>> weather.gov >>>> ;; global options: +cmd >>>> ;; Got answer: >>>> ;; ->>HEADER<<- opcode: QUERY, status: NOERRO

Re: [lug:18504] Antergos DNS issues...

2018-05-23 Thread Jeremiah Bess
lags:; udp: 4096 > ;; QUESTION SECTION: > ;weather.gov. IN A > > ;; ANSWER SECTION: > weather.gov. 20 IN A 23.45.144.21 > > ;; Query time: 52 msec > ;; SERVER: 2602:30a:2ed2:6310::1#53(2602:30a:2ed2:6310::1) > ;; WHEN: Wed May 23 14:46:39 EDT 2018 > ;; MSG SIZE rcvd: 56 &

Re: [lug:18502] Antergos DNS issues...

2018-05-23 Thread Jeremiah Bess
ooglegroups.com > To unsubscribe, send email to linuxusersgroup+unsubscr...@googlegroups.com > For more options, visit our group at > http://groups.google.com/group/linuxusersgroup > References can be found at: http://goo.gl/anqri > Please remember to abide by our list rules (http:/

Re: [lug:18495] Theme Parsing Errors...

2018-04-24 Thread Jeremiah Bess
Users Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to linuxusersgroup+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Jeremiah Bess -- -- You received this message becaus

Re: [lug:18491] Sabayon Hostname issues...

2018-04-16 Thread Jeremiah Bess
n and umount the /home partition and > reboot? If not, how do I do it? > > On Mon, Apr 16, 2018 at 8:17 AM, Jeremiah Bess <jeremiah.b...@gmail.com> > wrote: > >> I've given this some thought and I'm stumped. Perhaps something in your >> .bashrc file? I've

Re: [lug:18486] Sabayon Hostname issues...

2018-04-16 Thread Jeremiah Bess
ux Users Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to linuxusersgroup+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Jeremiah Bess -- -- You received this message bec

Re: [lug:18482] Unable to print from LASERSHOT CANON LBP2900 PRINTER ON LUBUNTU16.04

2018-03-29 Thread Jeremiah Bess
Abdullah > > On Thu 29 Mar, 2018, 4:28 PM Jeremiah Bess, <jeremiah.b...@gmail.com> > wrote: > >> Try plugging it into a different USB port on your computer. Also run >> "dmesg" afterwards to see if any other errors might give a clue. You might >> also w

Re: [lug:18480] Unable to print from LASERSHOT CANON LBP2900 PRINTER ON LUBUNTU16.04

2018-03-29 Thread Jeremiah Bess
to abide by our list rules (http://tinyurl.com/LUG-Rules) > --- > You received this message because you are subscribed to the Google Groups > "Linux Users Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to linuxusersgroup+

Re: [lug:18478] Ubuntu vm subsystem broken?

2018-03-02 Thread Jeremiah Bess
>>> References can be found at: http://goo.gl/anqri >>> Please remember to abide by our list rules (http://tinyurl.com/LUG-Rules >>> ) >>> --- >>> You received this message because you are subscribed to the Google >>> Groups "Li

Re: [lug:18473] graphical video editor?

2018-02-13 Thread Jeremiah Bess
s > "Linux Users Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to linuxusersgroup+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Jeremiah Bess -- -- You received

Re: [lug:18469] Grub...

2018-02-08 Thread Jeremiah Bess
*sda I meant, the one with Linux Mint and Sabayon. On Thu, Feb 8, 2018 at 12:52 PM Jeremiah Bess <jeremiah.b...@gmail.com> wrote: > Sorry, been busy at work. Can you lay out the partitions of hda please? > > On Thu, Feb 8, 2018 at 6:05 AM Scott Vargovich <bluesfrea...@

Re: [lug:18469] Grub...

2018-02-08 Thread Jeremiah Bess
Sorry, been busy at work. Can you lay out the partitions of hda please? On Thu, Feb 8, 2018 at 6:05 AM Scott Vargovich <bluesfrea...@gmail.com> wrote: > That is now correct. Sorry about not being as clear as I should have been. > > On Thu, Feb 8, 2018 at 8:03 AM, Jeremiah B

Re: [lug:18466] Grub...

2018-02-08 Thread Jeremiah Bess
on on hd0. > > On Thu, Feb 8, 2018 at 7:55 AM, Scott Vargovich <bluesfrea...@gmail.com> > wrote: > >> *PALMTOFOREHEAD* >> *OUCH* >> >> On Wed, Feb 7, 2018 at 6:11 PM, Jeremiah Bess <jeremiah.b...@gmail.com> >> wrote: >> >>> He

Re: [lug:18463] Grub...

2018-02-08 Thread Jeremiah Bess
Did that work? On Thu, Feb 8, 2018 at 5:55 AM Scott Vargovich <bluesfrea...@gmail.com> wrote: > *PALMTOFOREHEAD* > *OUCH* > > On Wed, Feb 7, 2018 at 6:11 PM, Jeremiah Bess <jeremiah.b...@gmail.com> > wrote: > >> Hey Scott, >> >> I think I found you

Re: [lug:18461] Grub...

2018-02-07 Thread Jeremiah Bess
b.com/anonymous/3047bd6434844b201a8b226f5e2753e2 > > On Wed, Feb 7, 2018 at 2:15 PM, Jeremiah Bess <jeremiah.b...@gmail.com> > wrote: > >> Link? >> >> On Wed, Feb 7, 2018 at 12:14 PM Scott Vargovich <bluesfrea...@gmail.com> >> wrote: >> >>> Jeremiah, >

Re: [lug:18458] Grub...

2018-02-07 Thread Jeremiah Bess
mber to abide by our list rules (http://tinyurl.com/LUG-Rules) > --- > You received this message because you are subscribed to the Google Groups > "Linux Users Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to linuxusersgroup+u

Re: [lug:18456] Grub issue...

2018-02-06 Thread Jeremiah Bess
m out of ideas to throw at it. > > On Mon, Feb 5, 2018 at 10:25 PM, Jeremiah Bess <jeremiah.b...@gmail.com> > wrote: > >> Hey Scott, >> >> I suspect this part is what's causing the out of memory and syntax >> errors, specifically the variable equals variable

Re: [lug:18454] Grub issue...

2018-02-05 Thread Jeremiah Bess
nces can be found at: http://goo.gl/anqri > Please remember to abide by our list rules (http://tinyurl.com/LUG-Rules) > --- > You received this message because you are subscribed to the Google Groups > "Linux Users Group" group. > To unsubscribe from this group and stop receiving ema

Re: [lug:18452] Any users in San Diego area

2018-02-05 Thread Jeremiah Bess
p receiving emails from it, send an > email to linuxusersgroup+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Jeremiah Bess -- -- You received this message because you are subscribed to the Linux Users Group. To post

Re: [lug:18448] Conky issue...

2018-01-19 Thread Jeremiah Bess
I just found the code you pasted is from accuweather itself...lol view-source: https://www.accuweather.com/en/us/toledo-oh/43620/current-weather/350129 On Fri, Jan 19, 2018 at 11:29 AM Jeremiah Bess <jeremiah.b...@gmail.com> wrote: > Not really. I did some searches for some

Re: [lug:18447] Conky issue...

2018-01-19 Thread Jeremiah Bess
vich <bluesfrea...@gmail.com> > wrote: > >> I grabbed it off a github page. Not sure who the contributor was. >> >> On Fri, Jan 19, 2018 at 12:41 PM, Jeremiah Bess <jeremiah.b...@gmail.com> >> wrote: >> >>> Hey Scott, >>> >>> This is

Re: [lug:18444] Conky issue...

2018-01-19 Thread Jeremiah Bess
-Rules) > --- > You received this message because you are subscribed to the Google Groups > "Linux Users Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to linuxusersgroup+unsubscr...@googlegroups.com. > For more options,

Re: [lug:18436] Re: regarding Shared_folder in Linux virtual box

2017-10-28 Thread Jeremiah Bess
ttp://tinyurl.com/LUG-Rules) > --- > You received this message because you are subscribed to the Google Groups > "Linux Users Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to linuxusersgroup+unsubscr...@googlegroups.com.

Re: [lug:18434] regarding Shared_folder in Linux virtual box

2017-10-27 Thread Jeremiah Bess
oup+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- Jeremiah Bess -- -- You received this message because you are subscribed to the Linux Users Group. To post a message, send email to linuxusersgroup@googlegroups.com To unsubscribe, s

Re: [lug:18431] USB WiFi adapter not working

2017-10-27 Thread Jeremiah Bess
wrote:‬ > Yeah wlan is not in the ifconfig -a > > Any other possible workaround. > > > - > Mohammad Abdullah > On 26 October 2017 at 23:58, Jeremiah Bess <jeremiah.b...@gmail.com> > wrote: > >> Ok. It's apparent that Ubuntu r

Re: [lug:18427] Bash script help reading IPs from files. Using expect and ssh

2017-10-26 Thread Jeremiah Bess
s listed below > > > send "ping $lo0_ping repeat 1000 source loopback0" > expect "*ms" > quit > exit > > > Thanks in advance folks. > > Cheers, > > Luis > > > > > -- > -- > You received this message because you are subsc

Re: [lug:18426] USB WiFi adapter not working

2017-10-26 Thread Jeremiah Bess
w removed the [/etc/modprobe.d/blacklist-mt7601u.conf] > > and got the > > [sudo lsmod] > > mt7601u > > > But still not able to find it in the network manager. > > > Kindly see. > > > > - > Mohammad Abdullah > >

Re: [lug:18424] USB WiFi adapter not working

2017-10-26 Thread Jeremiah Bess
601U Wireless Adapter* >>> >>> The USB wifi adapter is not being recognised. Gone through various >>> forums, but not able to fire it up. >>> >>> >>> +++ >>> Some troubleshooting done: >>

Re: [lug:18421] USB WiFi adapter not working

2017-10-25 Thread Jeremiah Bess
; --- > You received this message because you are subscribed to the Google Groups > "Linux Users Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to linuxusersgroup+unsubscr...@googlegroups.com. > For more options, visit https:

Re: [lug:18419] Base Macros

2017-10-24 Thread Jeremiah Bess
.@gmail.com> wrote: >> >>> Is there a book or place on the Internet where I can learn how to write >>> macros for Base? >>> >>> >>> -- >> >> Jeremiah Bess >> > -- Jeremiah Bess -- -- You received this message because you a

Re: [lug:18415] Nixnote2 is crashing or the application window is not showing

2017-10-23 Thread Jeremiah Bess
eral base > system pkgs got removed. > > So anything with live usb. Thanks for the time. > > -- > Mohammad Abdullah > > On 24-Oct-2017 2:13 AM, "Jeremiah Bess" <jeremiah.b...@gmail.com> wrote: > >> Wow, the pit just keeps getting deeper! When y

Re: [lug:18413] Base Macros

2017-10-23 Thread Jeremiah Bess
https://wiki.documentfoundation.org/images/archive/9/9a/20130215221733%21GS4013-GettingStartedWithMacros.pdf On Mon, Oct 23, 2017 at 7:25 PM Doss Rainey <doss.rai...@gmail.com> wrote: > Is there a book or place on the Internet where I can learn how to write > macros for Base? > &

Re: [lug:18410] Nixnote2 is crashing or the application window is not showing

2017-10-23 Thread Jeremiah Bess
attached. I removed the theme named *adwaita. *And then > all goes blank. > > Kindly rescue. I've live usb with Lubuntu. > > Thanks. > > -- > Mohammad Abdullah > > > On 23-Oct-2017 4:24 PM, "Jeremiah Bess" <jeremiah.b...@gmail.com> wrote: > > I d

  1   2   3   4   >