Tag Archives: errors
Error: The ebuild selected to satisfy …
I found this error in the Gentoo Linux distro when I used the emerge command and return me this text:
1 2 3 | ... The ebuild selected to satisfy ... |
Open the /etc/portage/make.conf uncomment the old USE row and use this:
1 | USE="-* X acl alsa" |
The /etc/portage/make.conf file is used to customize the Portage environment on a global level to every package that is emerged. The USE… Read More »
Web – Firefox browser and debug options for programmers and users.
Today’s tutorial solves a number of issues for the programmer and the regular user. First. let show you a download tool for GitHub. This online tool allows you to download any folder from GitHub without using the classic git clone command. With this online tool, I download this animated parrot theme from Mozilla Developer Network… Read More »
Error: Discord cannot find Update.
Discord can have problems with the process of install and uninstall. The error is shown in the next image: This error can appear when you want to uninstall discord to solve errors like Discord Javascript Error [Fatal Error]. To fix that error use this operation: try to close all Discord process tasks using Task Manager,… Read More »
Web – Detect errors show by Blogger theme.
The problems with the Google Blogger websites are the same you cannot have good control over the theme and the newest features are in progress. A few days ago, I wrote some tutorials and because I published it without seeing it looks good. Yesterday I take a look at the blogger and I see this:… Read More »
Error: failed to push some refs on GitHub.
This error I got from GitHub when I try to push my source code:
1 2 3 4 5 6 7 8 9 10 | [mythcat@desk django]$ git push -u origin master Username for 'https://github.com': catafest Password for 'https://catafest@github.com': To https://github.com/catafest/django_chart.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'https://github.com/catafest/django_chart.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details. |
You need to use the argument –force:
1 2 3 4 5 6 7 8 9 10 11 12 | [mythcat@desk django]$ git push --force origin master Username for 'https://github.com': catafest Password for 'https://catafest@github.com': Enumerating objects: 8690, done. Counting objects: 100% (8690/8690), done. Delta compression using up to 2 threads Compressing objects: 100% (5020/5020), done. Writing objects: 100% (8690/8690), 14.10 MiB | 744.00 KiB/s, done. Total 8690 (delta 2593), reused 8690 (delta 2593) remote: Resolving deltas: 100% (2593/2593), done. To https://github.com/catafest/django_chart.git + 998aaa4e...8c36d1f7 master -> master (forced update) |
Error: Linux and inotify_add_watch.
This is a common report error and this doesn’t actually refer to the amount of storage space, but to the amount of inotify watches that are available for a given file system Linux show me this:
1 2 3 4 5 6 | (0x7ffedb2c1390) Critical: inotify_add_watch(/home/mythcat/.config/lxqt/lxqt.conf) failed: (No space left on device) (0x7ffedb2c1390) Critical: inotify_add_watch(/usr/share/icons/breeze/icon-theme.cache) failed: (No space left on device) (0x7ffedb2c1390) Critical: inotify_add_watch(/home/mythcat/.config/lxqt/lxqt.conf) failed: (No space left on device) (0x7fffe9047930) Critical: inotify_add_watch(/home/mythcat/.config/lxqt/lxqt.conf) failed: (No space left on device) (0x7fffe9047930) Critical: inotify_add_watch(/usr/share/icons/breeze/icon-theme.cache) failed: (No space left on device) (0x7fffe9047930) Critical: inotify_add_watch(/home/mythcat/.config/lxqt/lxqt.conf) failed: (No space left on device) |
You can fix with this command:
1 | echo fs.inotify.max_user_watches=65536 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p |
Error: Chrome and Nvidia issues.
I have problems with Chrome browser and not with another browser. The main problem was to freeze the browser without a response. I think this can be a problem with the NVidia driver 740M version. First I check my version of Chrome and additional parameters using into URL area this command:
1 | about:config |
The result is… Read More »