Search found 321 matches
- Thu Mar 04, 2021 7:56 pm
- Forum: Newbie Questions
- Topic: Crashes randomly followed by glitched screen
- Replies: 12
- Views: 204
Re: Crashes randomly followed by glitched screen
Check - loose plugs and damage (outside and inside) Before that, be sure to discharge electrostatic charge from your hands and turn off the power - if you can - check the extension cord - from Live USB / CD longer how monitor working, check checksum ISO - RAM ( with Memtest86 and Memtest86 + ) - har...
- Thu Mar 04, 2021 7:33 am
- Forum: Software & Applications
- Topic: Firefox and other applications freeze
- Replies: 5
- Views: 181
Re: Firefox and other applications freeze
Check this solution https://forums.lenovo.com/t5/Lenovo-P-Y-and-Z-series/Lenovo-Z50-70-random-freeze-error/m-p/1863200 The random freezing was caused by electrostatic discharge. I used the laptop in a glass surface, and when I touched the metal parts, the discharge performed, and caused the freezing...
- Tue Mar 02, 2021 3:51 pm
- Forum: Software & Applications
- Topic: Firefox and other applications freeze
- Replies: 5
- Views: 181
Re: Firefox and other applications freeze
Check if you have Nvidia errors in Xorg.0.log,
first command there viewtopic.php?f=47&t=343013&p=1973626#p1973626
first command there viewtopic.php?f=47&t=343013&p=1973626#p1973626
- Tue Mar 02, 2021 2:23 pm
- Forum: Scripts & Bash
- Topic: using adb push to transfer files to an android device
- Replies: 10
- Views: 206
Re: using adb push to transfer files to an android device
Try something like this add ###########################{ MY_ACIM(){ adb push /home/oren/Downloads/???.mp3 storage/0012-4040/audiobooks/'ACIM lessons' } # USAGE: acim alias acim='MY_ACIM' ###########################} Reload the base source ~/.bashrc ( However I don't know where you want save alias. I...
- Tue Mar 02, 2021 12:27 pm
- Forum: Scripts & Bash
- Topic: using adb push to transfer files to an android device
- Replies: 10
- Views: 206
Re: using adb push to transfer files to an android device
You can not create alias if command not working from terminal.
Is the path correct? 'hero2lte:/storage/0012-4040/audiobooks/ACIM lessons'
Is the path correct? 'hero2lte:/storage/0012-4040/audiobooks/ACIM lessons'
- Tue Mar 02, 2021 10:29 am
- Forum: Scripts & Bash
- Topic: How to sleep/pause during launcher command. [workaround found]
- Replies: 3
- Views: 103
Re: How to sleep/pause during launcher command. [workaround found]
1. To create a shortcut you can use only the executable file or command without special characters. This is the reason why it did not work before and not will work. More about "exec" in: https://specifications.freedesktop.org/desktop-entry-spec/latest/ar01s07.html There you have all the sp...
- Sun Feb 28, 2021 7:37 am
- Forum: Ethernet
- Topic: iptables logging
- Replies: 0
- Views: 58
iptables logging
I wanted to log every connection, ping, whatever (from input ) ( with iptables ) Is that enough and correct? iptables -I INPUT -p tcp -m limit --limit 1/hour --limit-burst 1 -j LOG --log-prefix "IPTABLES: mylog1 " -m comment --comment "IPTABLES: mylog1" iptables -I INPUT -p udp -...
- Sun Feb 28, 2021 6:12 am
- Forum: Software & Applications
- Topic: xterm hold
- Replies: 0
- Views: 40
xterm hold
Long time ago I seen command how open xterm with hold and with cursor. For example I run xterm -hold -e "ls" I see xterm and "ls" output and I should seen blinking cursor and I should be able to write ls again. Do you know maybe how do this? Edit I seen xterm -ls -xrm 'XTerm*sele...
- Thu Feb 25, 2021 10:05 pm
- Forum: Newbie Questions
- Topic: Some applications don't open. What do I do?
- Replies: 5
- Views: 200
Re: Some applications don't open. What do I do?
Try to analyse what you did before.
Probably none of this application is available in Synaptic package manager.
So if it not working since the update and only this apps,
then you have the answer.
Probably none of this application is available in Synaptic package manager.
So if it not working since the update and only this apps,
then you have the answer.
- Thu Feb 25, 2021 1:01 am
- Forum: Scripts & Bash
- Topic: Good advices for bash developer.
- Replies: 12
- Views: 406
Re: Good advices for bash developer.
1. sh & bash Long ago, at the beginning I often added at the beginning of the script #!/bin/sh I copied it from the internet. For me, the script worked with it. We usually use the bash shell. And I used bash, so I should use #!/bin/bash at the beginning of script. If someone copies the script to...
- Wed Feb 24, 2021 10:27 am
- Forum: Newbie Questions
- Topic: Update Manager error - firefox 86.0 et al
- Replies: 3
- Views: 153
Re: Update Manager error - firefox 86.0 et al
I'm guessing 1. How find Email from installed package $ dpkg -s firefox | grep @ Maintainer: Ubuntu Mozilla Team <ubuntu-mozillateam@lists.ubuntu.com> 2. If you know if this package is from Ubuntu then you can also read this https://help.ubuntu.com/stable/ubuntu-help/report-ubuntu-bug.html.en But wa...
- Wed Feb 24, 2021 3:58 am
- Forum: Software & Applications
- Topic: mintMenu not showing up applications
- Replies: 2
- Views: 212
Re: mintMenu not showing up applications
You can also leave this problem because
- you have new Linux Mint 20.1
- you can install mate-menu and change / replace mintmenu icon on panel.
- you have new Linux Mint 20.1
- you can install mate-menu and change / replace mintmenu icon on panel.
- Tue Feb 23, 2021 12:18 pm
- Forum: Scripts & Bash
- Topic: How to set a timer? [Solved]
- Replies: 14
- Views: 474
Re: How to set a timer? [Solved]
Read also about
1. What is the difference between & and &&
2. About sleep command
1. What is the difference between & and &&
2. About sleep command
- Tue Feb 23, 2021 11:10 am
- Forum: Scripts & Bash
- Topic: [Example Script] Script to find / search dependecies of shell script
- Replies: 6
- Views: 351
Re: [Example Script] Script to find / search dependecies of shell script
The thing is, the output isn't important, the exit status is. Now I understand what you mean. I used the which command mainly in two places. 1. In the middle: something like: dpkg -S $(type -P pwd) 2. And at the end: something like: echo "[[ -z \$(type -P "pwd") ]] && DEP=\&q...
- Tue Feb 23, 2021 9:25 am
- Forum: Scripts & Bash
- Topic: How to set a timer? [Solved]
- Replies: 14
- Views: 474
Re: How to set a timer? [Solved]
Read about:
Cron
Anacron
Systemd timers
Maybe then you will know which one you want to use.
and maybe then you will have more questions.
Because we know too little about your project.
Cron
Anacron
Systemd timers
Maybe then you will know which one you want to use.
and maybe then you will have more questions.
Because we know too little about your project.
- Mon Feb 22, 2021 3:18 am
- Forum: Scripts & Bash
- Topic: [Example Script] Script to find / search dependecies of shell script
- Replies: 6
- Views: 351
Re: [Example Script] Script to find / search dependecies of shell script
type -P DEP or command -v Indeed are builtin :D $ compgen -b | grep type type typeset $ compgen -b | grep command command Command "type" works better. $ type -P pwd /bin/pwd $ command -v pwd pwd Recently I read about the danger of having an error in a script. Sometimes, if there is an err...
- Mon Feb 22, 2021 1:55 am
- Forum: Scripts & Bash
- Topic: How to set a timer? [Solved]
- Replies: 14
- Views: 474
Re: How to set a timer?
Which timer?
- Fri Feb 19, 2021 7:57 am
- Forum: Software & Applications
- Topic: Help to install vulkan on mint?
- Replies: 5
- Views: 224
Re: Help to install vulkan on mint?
Long time ago I probably tested this https://github.com/KhronosGroup/Vulkan-Samples So, this Vulcan samples worked with Nvidia driver with my graphic card [GeForce GTX 660] But not all and with errors and inefficiently. I don't know, maybe it works better with AMD cards or with an open driver. Howev...
- Fri Feb 19, 2021 7:06 am
- Forum: Software & Applications
- Topic: I never thought nvidia on Linux could got this bad ! (NVIDIA Drivers)
- Replies: 17
- Views: 714
Re: I never thought nvidia on Linux could got this bad ! (NVIDIA Drivers)
I found only 1 similar post with 950m and Linux Mint 2* but it is not solved [Laptop Screen Issues] https://forums.linuxmint.com/viewtopic.php?f=90&t=334409&p=1915995&hilit=950M#p1915995 ( Your second post I also seen [glitchy effect - slow performance] :wink: ) Some nvidia users report ...
- Thu Feb 18, 2021 1:40 pm
- Forum: Software & Applications
- Topic: I never thought nvidia on Linux could got this bad ! (NVIDIA Drivers)
- Replies: 17
- Views: 714
Re: I never thought nvidia on Linux could got this bad ! (NVIDIA Drivers)
1. Open terminal, copy this command, grep '(WW)\|(EE)\|(NI)\|(??)' /var/log/Xorg.0.log and paste , and see output. 2. Also copy and paste there inxi -Fxxxrz Check driver if is correct, check hardware. 3. Try to search for a similar topic, maybe someone has a similar problem or has already solved it ...