id
stringlengths
1
7
postTypeId
stringclasses
1 value
acceptedAnswerId
stringlengths
1
7
creationDate
stringdate
2009-01-08 07:47:55
2024-03-31 23:33:05
score
stringclasses
504 values
viewCount
stringlengths
1
7
body
stringlengths
24
34.3k
ownerUserId
stringlengths
1
7
lastEditorUserId
stringlengths
1
7
lastEditDate
stringdate
2010-07-28 20:43:11
2024-04-07 06:16:28
lastActivityDate
stringdate
2010-07-29 14:11:46
2024-04-07 06:16:28
title
stringlengths
13
150
tags
listlengths
1
5
answerCount
stringclasses
45 values
commentCount
stringclasses
47 values
contentLicense
stringclasses
3 values
comments
listlengths
0
56
acceptedAnswer
dict
answers
listlengths
0
82
communityOwnedDate
stringclasses
232 values
favoriteCount
stringclasses
2 values
closedDate
stringlengths
23
23
lastEditorDisplayName
stringclasses
890 values
ownerDisplayName
stringlengths
2
28
1494949
1
null
2023-12-05T02:20:33.160
0
411
<p>problem:</p> <pre><code>[0.146408] x86/cpu: UMX (outside TXT) disabled by BIOS [0.1464111] x86/cpu: SGX disabled by BIOS. /dev/sda6: clean, 1303675/7913472 files, 28367522/31622144 blocks run-init: can't execute '/sbin/init': No such file or directory Target filesystem doesn't have requested /sbin/init. run-init: ...
1750491
1750491
2023-12-05T11:18:58.677
2023-12-05T11:18:58.677
ubuntu kernel panic and Problems
[ "boot", "20.04", "nvidia", "kernel" ]
0
12
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T02:32:33.567", "id": "2619296", "postId": "1494949", "score": "0", "text": "If you can get to a root shell, then run `sudo apt update` and `sudo apt install kmod` which I guess technically you wouldn't need sudo for if root but I digress. Installing kmod should res...
null
[]
null
null
null
null
null
1494953
1
1494955
2023-12-05T04:42:54.613
0
113
<p>Running <code>apt-get</code> with the <code>-y</code> flag helps runninng the command without waiting for user input. This is good when trying to run an automated script.</p> <p>However <code>add-apt-repository ppa:vbernat/haproxy-2.8</code> requires user to press <kbd>Enter</kbd>, rather than the usual <code>(yes/n...
1342016
618353
2023-12-05T13:33:15.990
2023-12-06T03:51:08.993
The "-y" flag in apt-get command
[ "configuration", "automation", "haproxy" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>You can use the <code>echo</code> command along with a pipe to simulate pressing <kbd>Enter</kbd> and automate the process, like this:</p>\n<pre><code>echo | sudo add-apt-repository ppa:vbernat/haproxy-2.8\n</code></pre>\n<p>This will send an empty line to the <code>add-apt-repositor...
[ { "accepted": true, "body": "<p>You can use the <code>echo</code> command along with a pipe to simulate pressing <kbd>Enter</kbd> and automate the process, like this:</p>\n<pre><code>echo | sudo add-apt-repository ppa:vbernat/haproxy-2.8\n</code></pre>\n<p>This will send an empty line to the <code>add-apt-r...
null
null
2023-12-06T17:20:31.547
null
null
1494956
1
1497249
2023-12-05T05:12:51.207
0
323
<p>Problem: I'm unable to access any service running on by Ubuntu 22.04, including SSH. This server has been running for months without any issues. It currently hosts a frontend as well as 3 different backend services, which were all running perfectly for months. Now, I'm unable to send any request to the server.</p> <...
1750514
1750514
2023-12-05T05:37:52.840
2023-12-16T15:15:22.807
Cannot access any service running on ubuntu server including SSH
[ "networking", "server", "ssh", "firewall", "nginx" ]
2
5
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T22:50:52.970", "id": "2619451", "postId": "1494956", "score": "0", "text": "Check with ip route, what is your default route. I think that might be wrong. Check with the VPS provider on the correct settings", "userDisplayName": null, "userId": "1546238" },...
{ "accepted": true, "body": "<p>Check you default gateway. It is possible that the VPS has changed something on their end that has resulted in a need for a differnt gateway. Or possible there was an update that was installed, that has changed the naming of your interfaces, and that may have resulted in your settin...
[ { "accepted": null, "body": "<p>The issue was that my default gateway ip and netmask were not correct. I had to ask the VPS provider what to set it to, and once it was configured properly, the server had access to the internet again.</p>\n<p>I'm not sure if I caused these parameters to change, or if the VPS...
null
null
null
null
null
1494960
1
null
2023-12-05T06:55:50.813
0
85
<p>Today i tried booting my Ubuntu, but it seems like its not able to finish the boot process properly. In GRUB, when i select my kernel version it starts booting as usual but after a few seconds it shows something like these:</p> <p><img src="https://i.stack.imgur.com/4CIdu.jpg" alt="this" /></p> <p><img src="https://...
1750527
1450948
2023-12-05T07:19:45.400
2023-12-05T08:18:08.873
Ubuntu not booting properly at all
[ "boot", "grub2", "nvidia", "kernel", "23.04" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>I fixed it!</p>\n<ol>\n<li>Go into recovery mode</li>\n<li>Open root shell prompt</li>\n<li>type <code>sudo apt purge gdm gdm3</code></li>\n<li>resume to normal boot</li>\n<li>login</li>\n<li>type <code>sudo apt install gdm3 ubuntu-desktop</code> and <code>systemctl restart g...
null
null
null
null
null
1494961
1
null
2023-12-05T07:22:58.093
0
42
<p>I am running a GitLab instance on my local machine in <code>http://127.0.0.1:180/</code> IP address. However, I would like to access to Gitlab by <code>gitlab.local</code>. To do so, I edited the <code>/etc/hosts</code> file as follows</p> <pre><code>127.0.0.1:180 gitlab.local </code></pre> <p>and restarted the netw...
1636578
null
null
2023-12-05T14:39:14.410
Cannot create a virtual host for local ip address
[ "networking", "server", "virtualhost" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>You don't need to put the port number in <code>/etc/hosts</code>. Try this instead:</p>\n<pre><code>127.0.0.1 gitlab.local\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2023-12-07T08:05:49.417", "id": "2619769", ...
null
null
null
null
null
1494964
1
null
2023-12-05T08:16:08.223
0
106
<p>First, I will upload a picture right after the kernel panic appears.</p> <p><img src="https://i.stack.imgur.com/URD0p.jpg" alt="enter image description here" /></p> <p>This symptom occurred after upgrading to Java 1.10 while using Java 1.8 and rebooting.</p> <p>Is there a way to access it somehow and delete Java? Ev...
1750547
1450948
2023-12-05T12:58:23.683
2023-12-05T12:58:23.683
Ubuntu-20.04 [ end Kernel panic = not syncing: Attempted to kill init! exitcode=0x00000100 ]
[ "20.04", "kernel", "java" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1494966
1
null
2023-12-05T08:19:38.260
0
22
<p>Suddenly my ubuntu machine changed its login page and it is now violet asking me for my password. However there is no response to my keyboard or mouse. The PC is stuck I can login remotely from another computer. What can I do to unfreeze it?</p> <p>I have done</p> <blockquote> <p>ps<br /> PID TTY TIME CMD<b...
1047017
null
null
2023-12-05T09:00:35.837
My screen has turned violet and I can't login
[ "login", "freeze", "remote-login" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>I solved my problem.\nFirst I used <a href=\"https://www.cyberciti.biz/faq/how-to-check-running-process-in-ubuntu-linux-using-command-line/\" rel=\"nofollow noreferrer\">top</a> to see what was happening.\nThen I saw the isolated web occupying it so I killed firefox\nstill xo...
null
null
null
null
null
1494975
1
null
2023-12-05T10:45:52.923
0
466
<p>I received admin user credentials to Ubuntu server, but when i try to ssh to it i get <em>&quot;FATAL ERROR: No supported authentication methods available (server sent: publickey)&quot;</em>.</p> <p>the command that i used (on a local windows machine):</p> <pre><code>plink -ssh root@172.31.100.7 -pw &quot;mypassword...
1750539
1750539
2023-12-05T10:46:36.303
2023-12-05T19:48:54.013
supported authentication methods available (server sent: publickey)
[ "server", "ssh" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<blockquote>\n<p>server sent: publickey</p>\n</blockquote>\n<p>The server is expecting a ssh key, not a password, that matches a key on file.</p>\n<p>Notify the admin who created the server for you. They must fix the problem by loading your public ssh keys or enabling passwords....
null
null
null
null
null
1494976
1
1495219
2023-12-05T10:56:17.380
0
172
<p>I recently upgraded from 20 to 22. I suddenly have an icon on my left bar which says SSD and a lock on it.</p> <p>When I click it, it asks me for a password for an encrypted drive. It says there 91 GB of data encrypted. Not sure where this came from!</p> <p>I have dual boot with windows 10.</p> <p>Thanks!</p> <p>Edi...
162760
162760
2023-12-06T08:38:26.857
2023-12-07T16:10:22.517
After upgrading to Ubuntu 22.04, new icon with encrypted SSD
[ "dual-boot", "22.04", "ssd" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T16:42:51.390", "id": "2619400", "postId": "1494976", "score": "0", "text": "It would be helpful to edit your question to include the output of the command `lsblk -f` at the terminal, formatted as a \"code block\" to ensure it can be read correctly. That command list...
{ "accepted": true, "body": "<p>The &quot;FSTYPE&quot; column in that <code>lsblk</code> output indicates that you have a BitLocker-encrypted Windows partition - so that would be what you're seeing on the Ubuntu dock (what's on the left side of your screen).</p>\n<p>If you just want icons like that to go away, then...
[ { "accepted": true, "body": "<p>The &quot;FSTYPE&quot; column in that <code>lsblk</code> output indicates that you have a BitLocker-encrypted Windows partition - so that would be what you're seeing on the Ubuntu dock (what's on the left side of your screen).</p>\n<p>If you just want icons like that to go aw...
null
null
null
null
null
1494977
1
1495035
2023-12-05T11:01:20.087
0
557
<p><a href="https://i.stack.imgur.com/la8cv.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/la8cv.jpg" alt="enter image description here" /></a>I failed during an attempt to reinstall Ubuntu 23.10 Desktop (which was installed on my Acer Aspire laptop alongside Windows 11). I had problems with the rei...
1743616
149708
2023-12-06T09:37:18.033
2023-12-06T09:37:18.033
Help with Ubuntu installation - getting the "System program problem detected" error
[ "dual-boot", "partitioning", "system-installation" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>After spending a lot of time trying to resolve the issue, I managed to solve it by creating another installation USB stick using the LEGACY Ubuntu installer. It seems that there is something wrong with the new installer. The legacy installer worked like a charm.</p>\n", "commentCou...
[ { "accepted": true, "body": "<p>After spending a lot of time trying to resolve the issue, I managed to solve it by creating another installation USB stick using the LEGACY Ubuntu installer. It seems that there is something wrong with the new installer. The legacy installer worked like a charm.</p>\n", "...
null
null
null
null
null
1494979
1
null
2023-12-05T11:27:48.613
0
33
<p>I am trying to use Ubuntu 22.04 on a PC and multiple X terminal (vcxsrv on window)</p> <p>XDMCP and X-11 works but i can't have multiple greeter running at the same time :</p> <ul> <li>Until i login on the server screen, no vcxsrv get any login screen</li> <li>After i login on the serser main screen, one vcxsrv got ...
729055
null
null
2023-12-05T11:27:48.613
can't have multiple login screen
[ "22.04", "login-screen", "ubuntu-mate", "xdmcp" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1494980
1
null
2023-12-05T11:55:05.803
0
22
<p>After Upgrading from 20.04 up to 22.04 there is no more network-connection. What can I do?</p>
859945
null
null
2023-12-05T11:55:05.803
No-network/Wlan Connection in 22.04 after upgrading
[ "networking" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T12:59:58.430", "id": "2619346", "postId": "1494980", "score": "1", "text": "This looks suspiciously like something went wrong during the upgrade and one package that was not upgraded is not working properly in 22.04.", "userDisplayName": null, "userId": "949...
null
[]
null
null
null
null
null
1494982
1
null
2023-12-05T12:16:40.700
3
658
<p>I'm doing the Shellshock lab, the tutorial gives an approach to pass a function to child process by environment variable:</p> <pre><code>$ foo='() { echo &quot;hello&quot;; }' $ export foo $ /bin/bash $ foo hello </code></pre> <p>However, when I tried this on my Ubuntu 20.04, <code>foo</code> was not converted to a ...
1750582
null
null
2023-12-06T06:36:16.337
Problem regarding passing a function to child process in Linux shell
[ "bash", "shellshock" ]
2
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>In Bash you define a <a href=\"https://www.gnu.org/software/bash/manual/html_node/Shell-Functions.html\" rel=\"nofollow noreferrer\">shell function</a> like so:</p>\n<pre class=\"lang-bash prettyprint-override\"><code>\nname () { ...; }\n</code></pre>\n<p>or like so:</p>\n<pr...
null
null
null
null
null
1494987
1
null
2023-12-05T13:11:50.587
0
82
<p>Yesterday I faced a sudden reboot issue in one of my Ubuntu servers. The server rebooted suddenly, and it was up only after 9 minutes.</p> <p>The configuration and log files of the server are shown below.</p> <p>Config file: <code>/etc/apt/apt.conf.d/20auto-upgrades</code></p> <pre><code>root@node1227:~# cat /etc/ap...
1750588
94914
2024-01-04T10:11:12.070
2024-01-04T10:11:12.070
Ubuntu server random reboots
[ "kernel", "syslog", "unattended-upgrades", "logs" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-14T06:27:46.267", "id": "2622119", "postId": "1494987", "score": "0", "text": "Anyone please help me to find out the root cause of this issue?", "userDisplayName": null, "userId": "1750588" } ]
null
[]
null
null
null
null
null
1494988
1
null
2023-12-05T13:45:42.397
0
108
<p>I am trying to install ubuntu 20.04 through a USB stick (using UEFI). My current setup is using Intel NUC8i7BEH. I am currently using Intel Iris Graphics 655 in the NUC. The Ubuntu iso file I am using is called ubuntu-20.04.6-desktop-amd64.</p> <p>When I boot up the NUC, I would press f10 to enter the boot manager(I...
1748864
1748864
2023-12-05T19:23:55.273
2023-12-05T19:23:55.273
I can't install ubuntu 20.04 through USB stick
[ "boot", "grub2", "uefi" ]
0
8
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T16:23:40.177", "id": "2619395", "postId": "1494988", "score": "0", "text": "Please edit your original question to add more details in order to help us help you: 1. Brand name and model of the computer; 2. Brand name and model of the graphics chip/card; 3. Full name ...
null
[]
null
null
null
null
null
1494989
1
1495000
2023-12-05T13:51:29.447
0
208
<p>I have varnish installed on the Ubuntu server 22.04.</p> <p>The environment is Php8.1 and Varnish 7.3.0.</p> <p>The server has 16GB RAM.</p> <p>For me the Varnish keep on crashing intermittently and I get following message.</p> <pre><code>:~$ sudo service varnish status × varnish.service - Varnish Cache, a high-perf...
447759
null
null
2023-12-05T14:41:44.353
varnish.service: A process of this unit has been killed by the OOM killer
[ "varnish" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>The <code>-s malloc,512m</code> statement limits the cache storage to 512 MB, but that doesn't mean Varnish will only consume 512 MB of RAM.</p>\n<h2>Runtime cost</h2>\n<p>There is a runtime cost to Varnish that grows as the number of active threads increases. Each worker thread that...
[ { "accepted": true, "body": "<p>The <code>-s malloc,512m</code> statement limits the cache storage to 512 MB, but that doesn't mean Varnish will only consume 512 MB of RAM.</p>\n<h2>Runtime cost</h2>\n<p>There is a runtime cost to Varnish that grows as the number of active threads increases. Each worker thr...
null
null
null
null
null
1494991
1
1494994
2023-12-05T13:57:34.913
-1
65
<p>I usually work with administrator access privileges on my Ubuntu workstations. On a new machine, I've recently been offered only a normal user account; and asked to provide a list of admin-level commands which I would like to use.</p> <p>As such requests take a long time, I would like to get this right first-time. I...
110495
null
null
2023-12-05T14:24:39.733
Common admin commands?
[ "command-line", "permissions", "administration" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T03:29:51.597", "id": "2619486", "postId": "1494991", "score": "1", "text": "Does this answer your question? [How do I search my command-line history for commands I used before?](https://askubuntu.com/questions/74631/how-do-i-search-my-command-line-history-for-comman...
{ "accepted": true, "body": "<p>If you do not use root, but a regular user with sudo privilidges, you can run</p>\n<pre><code>history | grep sudo\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2023-12-05T15:33:12.400", "id": "2619385", "postId": "1494994", "...
[ { "accepted": true, "body": "<p>If you do not use root, but a regular user with sudo privilidges, you can run</p>\n<pre><code>history | grep sudo\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2023-12-05T15:33:12.400", "id": "2619385", "postId"...
null
null
null
null
null
1494998
1
null
2023-12-05T14:37:06.740
0
18
<p>the title says it all...I wrongly added a misspelled word to the dictionary using ReText...how do I delete it?</p>
1362537
null
null
2023-12-05T14:37:06.740
How to find and remove an erroneously added word to the spell check dictionary?
[ "spell-checking" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495001
1
null
2023-12-05T14:45:04.273
0
59
<p>I'll be honest I'm a noob in coding and all such things related to it. Please be as specific as possible</p> <p>My device is a 64-bit device and I've never encrypted anything as such.</p>
1750537
null
null
2024-03-02T14:33:43.980
While booting it shows error: file '/boot/grub/i386-pc/normal.mod' not found. Entering rescue mode... How to tackle this problem?
[ "boot", "grub2", "grubrescue" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T16:36:01.387", "id": "2619396", "postId": "1495001", "score": "2", "text": "That often is trying to boot in wrong boot mode. Or you have UEFI install, and changed to BIOS install. Often because an old version of BIOS boot grub is still on system. Or vice-versa with ...
null
[]
null
null
null
null
null
1495003
1
null
2023-12-05T14:47:12.230
1
198
<p>Running Ubuntu 22.04</p> <p>I have a remote server that I can connect to with ssh.</p> <pre><code>ssh remote </code></pre> <p>So I can copy a file with rsync:</p> <pre><code>rsync remote:text.txt . </code></pre> <p><code>rsync</code> will autocomplete tex to test.txt when I press tab</p> <p>I have another file 'test...
128973
128973
2023-12-05T15:01:50.567
2023-12-06T07:59:03.440
rsync remote paths with spaces and autocompletion is not working
[ "command-line", "bash", "ssh", "rsync", "auto-completion" ]
1
5
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T14:49:32.287", "id": "2619364", "postId": "1495003", "score": "2", "text": "Does this answer your question? [Using scp to copy a remote file containing spaces requires double space escaping. Why?](https://askubuntu.com/questions/1414882/using-scp-to-copy-a-remote-fi...
null
[ { "accepted": null, "body": "<p>There is an issue with newer <code>rsync</code> versions (&gt; 3.2.4) and (older) versions of bash-completion.</p>\n<p><a href=\"https://github.com/scop/bash-completion/pull/910\" rel=\"nofollow noreferrer\">https://github.com/scop/bash-completion/pull/910</a></p>\n<p>As a wo...
null
null
null
null
null
1495005
1
null
2023-12-05T15:10:38.140
0
1720
<pre><code>$ sudo apt full-upgrade [sudo] password for pepp: Reading package lists... Done Building dependency tree... Done Reading state information... Done Calculating upgrade... Done The following NEW packages will be installed: linux-headers-6.5.0-14 linux-headers-6.5.0-14-generic linux-image-6.5.0-14-generi...
1750625
null
null
2023-12-05T15:10:38.140
DKMS Problem - dpkg error processing package linux-headers-generic
[ "package-management", "kernel", "updates", "dpkg", "dkms" ]
0
6
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T15:13:09.647", "id": "2619373", "postId": "1495005", "score": "0", "text": "Please can you add `dkms status` and `uname -r` to your question [edit].", "userDisplayName": null, "userId": "966203" }, { "creationDate": "2023-12-05T19:24:55.963", "id...
null
[]
null
null
null
null
null
1495006
1
1495010
2023-12-05T15:15:30.347
2
716
<p>I have just installed Ubuntu 22.04 on a HP Probook 450 G9 laptop.</p> <p>By default the highest option fo resolution that I get in Displays is 1366x768.</p> <p>I tried to add manually another resolution with <code>xrandr</code> but the resulting image is of very poor quality. Here is what I am trying to do:</p> <pre...
766341
null
null
2023-12-05T15:27:29.157
Adding higher resolution (1920x1080) on Ubuntu 22.04 results in a low quality image
[ "display", "display-resolution", "hp" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>I just realized that 1366x768 this is the maximum supported resolution by the laptop display:</p>\n<p><a href=\"https://www.hp.com/emea_middle_east-en/products/laptops/product-details/product-specifications/2101247446\" rel=\"nofollow noreferrer\">https://www.hp.com/emea_middle_east-...
[ { "accepted": true, "body": "<p>I just realized that 1366x768 this is the maximum supported resolution by the laptop display:</p>\n<p><a href=\"https://www.hp.com/emea_middle_east-en/products/laptops/product-details/product-specifications/2101247446\" rel=\"nofollow noreferrer\">https://www.hp.com/emea_midd...
null
null
null
null
null
1495007
1
1495009
2023-12-05T15:18:52.460
0
376
<p>I tried to uninstall Thunderbird Mail with the software updater but the Thuderbird icon is not there! How can i uninstall thunderbird with the terminal?</p>
1750622
null
null
2023-12-05T15:28:08.940
How to unsinstall thunderbird mail in ubuntu 22.04?
[ "22.04", "software-uninstall" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>You can remove Thunderbird by running</p>\n<pre><code>sudo snap remove thuderbird \n</code></pre>\n<p>or</p>\n<pre><code>sudo apt remove --autoremove thunderbird \n</code></pre>\n<p>from a terminal window.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "20...
[ { "accepted": true, "body": "<p>You can remove Thunderbird by running</p>\n<pre><code>sudo snap remove thuderbird \n</code></pre>\n<p>or</p>\n<pre><code>sudo apt remove --autoremove thunderbird \n</code></pre>\n<p>from a terminal window.</p>\n", "commentCount": "2", "comments": [ { "cr...
null
null
null
null
null
1495012
1
null
2023-12-05T15:38:42.080
0
363
<p>The error states:</p> <pre><code>W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://repo.mysql.com/apt/ubuntu bionic InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUB...
1610668
10616
2023-12-05T15:57:31.540
2023-12-05T17:00:11.570
sudo apt update errors on PUBKEY Ubuntu 20.04
[ "20.04" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T15:58:25.563", "id": "2619392", "postId": "1495012", "score": "1", "text": "You just need to get the updated key for the MySQL repository from MySQL then you can add that to your system and it should work. The only MySQL key you have there is a very old one that ex...
null
[ { "accepted": null, "body": "<p>Turns out. This seems to have done the trick.</p>\n<p>curl <a href=\"https://repo.mysql.com/RPM-GPG-KEY-mysql-2022\" rel=\"nofollow noreferrer\">https://repo.mysql.com/RPM-GPG-KEY-mysql-2022</a> | sudo apt-key add -</p>\n", "commentCount": "0", "comments": [], "co...
null
null
null
null
null
1495014
1
1495634
2023-12-05T16:03:49.867
1
120
<p>I use ubuntu 22.04; gnom(wayland); tightvncserver.</p> <p>When i open client, like mate-calc, on vncviewer display :3 it pop-up on the console of the computer (display :0) instead of the vnc viewer display :3</p> <p>My xstartup file:</p> <pre><code>#!/bin/sh XDG_SESSION_TYPE=x11 unset SESSION_MANAGER unset DBUS_SES...
175428
175428
2023-12-06T08:45:47.047
2023-12-11T11:07:35.050
Client apps are opened in wrong vnc display
[ "xorg", "security", "vnc", "wayland" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>I tried to unset the environment variables that are associate with /run/$UID\nbecause I saw there the wayland display. I found that what I need is to insert to the xstartup, before the window manager command:</p>\n<pre><code>unset XDG_RUNTIME_DIR\n</code></pre>\n", "commentCount"...
[ { "accepted": true, "body": "<p>I tried to unset the environment variables that are associate with /run/$UID\nbecause I saw there the wayland display. I found that what I need is to insert to the xstartup, before the window manager command:</p>\n<pre><code>unset XDG_RUNTIME_DIR\n</code></pre>\n", "com...
null
null
null
null
null
1495017
1
null
2023-12-05T16:39:01.953
0
91
<p>I mainly use my old MacBook Pro 2012 retina to do Zoom sessions. When I was running Big Sur I had lots of trouble running Zoom. Sometimes it would seem to hang other times it was choppy. Since I installed Ubuntu it seems to be running better.</p> <p>But when running from Macosx I could install a cable from the Thund...
785368
1450948
2023-12-06T09:53:05.280
2023-12-06T09:53:05.280
Ubuntu on my Macbook Pro 2013 is running slow
[ "hdmi", "macbook-pro", "chromecast" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T22:26:57.157", "id": "2619450", "postId": "1495017", "score": "0", "text": "I am really new to UBUNTU so bear with me I am more a mac person now. But Here is the information on my UBUNTU system. Hardware is Macbook pro 11.1, Memory 8GB, Processor Intet Core i7-4558...
null
[]
null
null
null
null
null
1495018
1
null
2023-12-05T16:43:09.960
0
201
<p>When I try to open the partition it shows me this error</p> <p><img src="https://i.stack.imgur.com/5G06i.png" alt="enter image description here" /></p> <p>I tried everything like sudo ntfsfix /dev/sda1 sudo mount -t ntfs /dev/sda2 /mnt this command works and mount the partition in mnt but when I restart the pc then ...
1750648
124466
2023-12-05T17:32:10.633
2023-12-05T17:32:10.633
Unable to mount Patitions in new version of ubuntu 23.10
[ "boot", "partitioning", "mount" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T18:01:10.027", "id": "2619410", "postId": "1495018", "score": "0", "text": "Not a Linux NTFS driver issue, but a Windows \"feature\". Windows default to fast boot which sets hibernation flag. And then you cannot write into NTFS formatted partitions or else you lose ...
null
[]
null
null
null
null
null
1495021
1
null
2023-12-05T17:09:57.880
0
218
<p>I need help with an issue I've been experiencing. After one of the updates for Ubuntu 22.04, whenever I connect my laptop to an Ethernet cable, all programs and the graphical environment start to hang. For the first minute after connecting the cable, I can check the connection speed using <code>speedtest</code>, but...
459733
null
null
2023-12-05T17:09:57.880
System freezes when using an Ethernet connection
[ "networking", "usb", "22.04", "ethernet" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T18:49:37.773", "id": "2619418", "postId": "1495021", "score": "1", "text": "Watch the terminal command `sudo journalctl --follow` as you connect the adapter. Look at the network logs with the terminal command: `sudo journalctl -b 0 -u NetworkManager`. Read `man jou...
null
[]
null
null
null
null
null
1495023
1
null
2023-12-05T17:18:42.160
1
311
<p>I'd like to migrate from one system with RAID 1 (array of 2 discs 3TB) to Ubuntu Server and create an array using mdadm. How can I do it and preserve data on those discs without formatting? Both drives are now mirrored and work well in the old system.</p>
1737252
1636389
2023-12-06T01:45:46.800
2023-12-06T01:45:46.800
RAID 1 system migrating using mdadm without loosing data from HDD
[ "raid", "mdadm" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T17:52:54.817", "id": "2619406", "postId": "1495023", "score": "0", "text": "I am not at home right now in front of my system, but it can be done. One thing to remember is that in a RAID1 either disk can work independently of the other one. But you shouldn't have t...
null
[ { "accepted": null, "body": "<p>To migrate from a system with RAID 1 to Ubuntu Server without formatting and preserving data, you can follow these steps. Please make sure that these steps are used only and only if the RAID array is in a healthy state:</p>\n<p>It is a brief overview, so please take caution b...
null
null
null
null
null
1495028
1
null
2023-12-05T18:25:24.367
0
51
<p>I want to Create a separate workspace for incognito work. This completely isolates it from my main workspace, making it invisible and inaccessible unless i switch to that specific workspace. It's like having a hidden basement apartment in my digital house How to do that? For example I want to use Google Chrome and...
1750147
null
null
2023-12-05T21:07:42.037
How to Use workspace in incognito mode in Ubuntu 23.10?
[ "google-chrome", "desktop-environments", "workspaces", "autohide" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>I'm not so sure about your goal. Anyway.</p>\n<p>Give a try to <code>devilspie</code> and/or <code>devilspie2</code></p>\n<p>those are utilities that</p>\n<blockquote>\n<p>lets you make applications start in specified workplaces, in specified sizes and placements, minimized o...
null
null
null
null
null
1495029
1
null
2023-12-05T18:26:22.613
0
430
<p><strong>System Specs:</strong></p> <ul> <li>Motherboard: ASUS Rampage V Edition 10</li> <li>GPU: Nvidia Geforce GTX 1080 TI</li> <li>Monitor(Problem) - Asus VG1A 144 Hz 28&quot;</li> <li><strong>OS Environment - Dual Boot</strong> [Windows 10 &amp; Ubuntu 22.04 (or latest)]</li> </ul> <p><strong>THE PROBLEM:</strong...
1678801
1450948
2023-12-06T09:53:24.183
2023-12-06T09:53:24.183
A Unique Problem! - D6 Motherboard Error only when Monitor is connected by Display Port
[ "dual-boot", "grub2", "asus", "motherboard" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T18:55:21.373", "id": "2619420", "postId": "1495029", "score": "0", "text": "this is a hardware problem :) here is a long list op things to check: https://forums.tomshardware.com/threads/no-console-output-devices-are-found.564545/", "userDisplayName": null, "...
null
[]
null
null
null
null
null
1495030
1
null
2023-12-05T18:39:02.600
1
78
<p>I've tried the 23.10 and 22.04 versions, but the problem still the same. There is no sound.</p> <ol> <li>All the channels in alsamixer are enabled.</li> <li>The output is set to <em>Speaker</em> and isn't muted.</li> <li>I can see that the indicator in pavucontrol moves during playback, but in fact there is no sound...
1750668
94914
2023-12-06T11:24:17.400
2023-12-06T11:24:17.400
No sound from built-in speakers, but headphones work right
[ "sound", "pulseaudio", "alsa", "asus" ]
0
8
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T20:32:49.627", "id": "2619435", "postId": "1495030", "score": "0", "text": "Does `pavucontrol` tell _Speaker_ is available?", "userDisplayName": null, "userId": "21005" }, { "creationDate": "2023-12-06T06:23:46.053", "id": "2619505", "postId"...
null
[]
null
null
null
null
null
1495037
1
null
2023-12-05T20:44:41.213
3
324
<p>Hello fellow computer enthusiasts,</p> <p>I recently purchased a used Zenbook flip 15.6 OLED (UP6502ZD) with a 12th gen intel CPU. Naturally the first thing I did was install Ubuntu (in this case Lubuntu 23.10 as I've got minimalist OCD).</p> <p>To my surprise (shame on you Asus) the laptop speakers do not work out-...
1750694
null
null
2023-12-08T22:15:38.507
No sound via speakers on Zenbook UP6502ZD - the old cirrus amplifier classic issue
[ "sound", "kernel", "asus" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>Thanks to a bunch of people on <a href=\"https://gist.github.com/lamperez/862763881c0e1c812392b5574727f6ff?permalink_comment_id=4526397\" rel=\"nofollow noreferrer\">here</a> and in particular Alex Vinarskis the speakers now work. The issue with the patch mentioned above is t...
null
null
null
null
null
1495044
1
null
2023-12-05T21:19:44.083
0
199
<p>How can I access my Ubuntu Server GUI away from my home network?</p>
1750706
94914
2023-12-28T11:44:41.870
2023-12-28T11:46:55.127
Remote access from home when I'm doing a home lab
[ "ssh", "remote-access" ]
2
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T00:00:29.553", "id": "2619457", "postId": "1495044", "score": "0", "text": "Depends on the \"server gui\" you installed. Example: `cockpit` uses a web-based interface, so you needn't muck about with VNC or RDP. Beyond that, you need Port Forwarding on your router, a...
null
[ { "accepted": null, "body": "<p>Install and use tigervnc:</p>\n<pre><code>sudo apt install tigervnc-standalone-server\n</code></pre>\n<p>Then run</p>\n<pre><code>vncpasswd\n</code></pre>\n<p>and enter a password.</p>\n<p>change ~/.vnc/xstartup to :</p>\n<pre class=\"lang-sh prettyprint-override\"><code>#!/b...
null
null
null
null
null
1495048
1
null
2023-12-05T22:10:54.600
0
32
<p>I am dual booting Kubuntu 22.04 and Windows 10 on a desktop with an SSD and a hard disk. The PC came with windows 10 on the SSD and I installed Kubuntu on the hard disk with out disconnecting the SSD. Grub grabbed control of Kubuntu and the SSD. My intent was to keep the two disk devices separate and select my boot ...
1750711
null
null
2023-12-05T22:10:54.600
dual booting on separate disks
[ "dual-boot" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T03:36:28.760", "id": "2619490", "postId": "1495048", "score": "0", "text": "Are both installed in UEFI boot mode to gpt partitioned drives? Do you have an ESP - efi system partition on HDD, or only on SSD? Post this in question above: `lsblk -f` If you have an ESP ...
null
[]
null
null
null
null
null
1495049
1
null
2023-12-05T22:20:10.960
0
149
<p>I installed Ubuntu 22.04 on a computer that has a Display Port output and an HDMI output. Both outputs belong to the integrated graphic card.</p> <p>By default the image only comes out of the Display Port, the HDMI isn't used. I want to change that. I want to tell GNOME to use the HDMI instead and shut down the Disp...
1750716
null
null
2023-12-08T20:41:46.147
How to choose which video output to use?
[ "gnome", "hdmi", "wayland", "displayport" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>Answering my own question.\nUsing the drm_info command I noticed the HDMI output was marked as disconnected even though it was plugged. This pointed to a driver issue, not a config issue. I fixed it by upgrading to a newer kernel.</p>\n", "commentCount": "0", "comment...
null
null
null
null
null
1495051
1
1497413
2023-12-05T22:34:17.803
1
488
<p>I'm following the instructions here to build a signed kernel deb package: <a href="https://paldan.altervista.org/signed-linux-kernel-deb-creation-how-to/?doing_wp_cron=1701813437.7412788867950439453125" rel="nofollow noreferrer">https://paldan.altervista.org/signed-linux-kernel-deb-creation-how-to/?doing_wp_cron=170...
579136
null
null
2023-12-18T13:04:39.730
SSL error building signed kernel?
[ "kernel", "compiling" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>For some reason, ZSTD kernel module compression leads to these errors when signing. Not sure if that is a bug. Disabling ZSTD compression fixes it for me. Change the following kernel configuration options to be as follows:</p>\n<pre><code>CONFIG_MODULE_COMPRESS_NONE=y\n# CONFIG_MODUL...
[ { "accepted": true, "body": "<p>For some reason, ZSTD kernel module compression leads to these errors when signing. Not sure if that is a bug. Disabling ZSTD compression fixes it for me. Change the following kernel configuration options to be as follows:</p>\n<pre><code>CONFIG_MODULE_COMPRESS_NONE=y\n# CONF...
null
null
null
null
null
1495052
1
null
2023-12-05T23:00:23.653
0
45
<p>I am not able to upgrade to Ubuntu 20.04 because of the following message</p> <pre><code>The following packages have been kept back: gce-compute-image-packages google-compute-engine-oslogin python3-google-compute-engine 0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded. </code></pre> <p>The upgrade c...
1744403
null
null
2023-12-05T23:00:23.653
Package held back message when upgrading ubuntu from 18.04 to 20.04
[ "20.04" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-05T23:40:45.173", "id": "2619454", "postId": "1495052", "score": "1", "text": "Step 1: Review `apt cache policy` to determine **why** each is held back. If you want to keep those packages, then the reason is important.", "userDisplayName": null, "userId": "1962...
null
[]
null
null
null
null
null
1495054
1
null
2023-12-05T23:02:12.397
0
55
<p>I am building my own flatpak application in a Focal VM, and it seems to work fine. However, I just created a second Focal VM, and even though it should be identical, it fails in some weird ways. Specifically, when I try to install my application from its own local build repository, flatpak changes the repo's URL to ...
1596230
null
null
2023-12-05T23:02:12.397
Why does 'flatpak install' change the repo URL?
[ "flatpak" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495055
1
null
2023-12-05T23:36:42.150
0
235
<p>I've been trying to make a local backup of all my family's photos and videos for easy access due to how sluggish Dropbox has become. When I set up the Samba shared folder this showed up:</p> <p><a href="https://i.stack.imgur.com/5a4k6.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/5a4k6.png" alt=...
1098673
94914
2023-12-06T10:49:25.887
2023-12-06T11:17:09.637
Unable to access a Samba shared folder
[ "networking", "server", "permissions", "mount", "samba" ]
1
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T00:53:01.663", "id": "2619464", "postId": "1495055", "score": "0", "text": "You might want to see: https://askubuntu.com/a/1438086/231142", "userDisplayName": null, "userId": "231142" }, { "creationDate": "2023-12-06T01:27:41.440", "id": "261946...
null
[ { "accepted": null, "body": "<pre><code>[Public Files]\npath = /media/saturn/4858443D58442C4E/Files/Public\nforce user = smbuser\nforce group = smbgroup\ncreate mask = 0664\nforce create mode = 0664\ndirectory mask = 0775\nforce directory mode = 0775\npublic = yes\nwritable = no\n</code></pre>\n<p>Is &quot;...
null
null
null
null
null
1495057
1
null
2023-12-05T23:47:27.830
0
370
<p>I am trying to connect GDB in WSL to an Atmel SAMV71 Xplained Ultra board. I am getting stuck trying to get OpenOCD to connect to the board.</p> <p>I am using the following OpenOCD config file:</p> <p><em>atmel_samv71_xplained_ultra_edbg.cfg</em></p> <pre><code>source [find interface/cmsis-dap.cfg] source [find boar...
150427
null
null
2023-12-05T23:47:27.830
OpenOCD: unable to find a matching CMSIS-DAP device in WSL
[ "usb", "kernel", "windows-subsystem-for-linux", "usbhid" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495058
1
null
2023-12-05T23:48:44.647
1
219
<p>After the uninstallation of nVidia drivers, it's supposed to use the Nouveau driver properly, but instead the boot screen (Ubuntu logo) appears in low resolution and the login screen doesn't appear (stuck at black screen with blinking cursor). I can only use tty1-tty6 terminals there.</p> <p>Booting into recovery me...
259642
259642
2023-12-05T23:54:12.037
2023-12-05T23:54:12.037
(Ubuntu 23.10) Low resolution boot screen then stuck at blinking cursor
[ "boot", "drivers", "nvidia", "display-resolution", "nouveau" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T11:13:27.140", "id": "2619543", "postId": "1495058", "score": "0", "text": "Switching between onboard GPU and the external one solved the problem for a while (onboard is Intel i915), and when switched back to the external (9400 GT), now I can get to the desktop but ...
null
[]
null
null
null
null
null
1495059
1
null
2023-12-05T23:53:49.883
0
58
<p>I have a Lenovo Ideapad Slim 7 with a display connected into the HDMI port that work well. I have a second display connected to a Dock via the USB-C.</p> <p>In display setting, I can see that I have 3 display (Main, 2nd and 3rd)</p> <p>For some reason, the 3rd display is black with a &quot;No HDMI signal&quot;</p> <...
1703377
null
null
2023-12-05T23:53:49.883
3rd display not showing ubuntu 22.04
[ "nvidia", "usb", "22.04", "display" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495060
1
null
2023-12-06T00:19:43.173
0
188
<p>I'm running Ubuntu 22.04 on a homemade PC: AMD Ryzen, Gigabyte X570 motherboard with a Samsung 980 Pro SSD. I've already created a few shared folders via Samba, but I'm often given the &quot;you don't have access to this file&quot; message for files I create on the Windows 7 guest and drag and drop into the shared f...
1124541
94914
2023-12-06T11:11:50.240
2023-12-06T11:36:54.780
How do I share a folder between Ubuntu 22.04 (client) and Windows 7 (guest) using qemu-kvm
[ "permissions", "samba", "windows-7", "virtualization", "shared-folders" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<blockquote>\n<p>The outcome I am looking for is a simple shared folder with files that\nI completely own. In other words, the &quot;you don't have permission to\nuse this file&quot; error message will never appear when attempting to open\na file I created in Windows 7, but now ...
null
null
null
null
null
1495062
1
null
2023-12-06T01:00:37.807
0
26
<p>I've been using ubuntu dual booting with windows for over a year or so, but today I got this message when I tried to turn on my pc:</p> <pre><code>Unexpected return from initial read: Volume Corrupt, buffersize 0 Failed to load image \EFI\ubuntu\grubx64.efi: Volume Corrupt start_image() returned Volume Corrupt </cod...
1750735
null
null
2023-12-06T01:00:37.807
GNU Boot loader failed to load image - can't delete ubuntu from system
[ "dual-boot", "uefi", "boot-repair", "grub-efi", "efibootmgr" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495064
1
null
2023-12-06T01:07:55.457
0
923
<p>I have just installed ubuntu 22.04 from scratch on a new physical server. One thing that has been a thorn in my side with Ubuntu since about 14.04, is trying to wrap my head around the complexities it puts over DNS configuration. Today is no exception. There's no shortage of questions and problems related to this...
1078128
1078128
2023-12-06T15:00:24.197
2023-12-10T01:42:56.670
Netplan DNS configuration is overridden UBUNTU 22.04
[ "dns", "netplan", "systemd-resolved" ]
1
8
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T01:34:47.827", "id": "2619471", "postId": "1495064", "score": "0", "text": "The output of `resolvectl status` indicates this: `resolv.conf mode: foreign`. This tells me that `/etc/resolv.conf` has been modified and is not a symlink to `/run/systemd/resolve/stub-reso...
null
[ { "accepted": null, "body": "<p>I share your frustration Dennis and agree. Below is the simple fix for your issue. Note: this answer is based on Dennis like of the &quot;old&quot; days. This is not the current recommended fix.</p>\n<p>Despite all the frustrating things systemd, NetworkManager etc does wi...
null
null
null
null
null
1495065
1
null
2023-12-06T01:31:14.170
0
82
<p>I can not enter the BIOS after installing Ubuntu and for sure I do know my BIOS key is <kbd>F2</kbd> and <kbd>F4</kbd> for recovery. My laptop says it when it is opening. When I try to enter the BIOS (<kbd>F2</kbd> or <kbd>F4</kbd>, it doesn't matter) GNU GRUB menu, I only see Ubuntu and Advanced options for Ubuntu....
1356683
94914
2023-12-06T10:20:31.237
2023-12-06T10:20:31.237
Can't enter the BIOS after installing Ubuntu
[ "boot", "dual-boot", "usb", "bios", "grub-efi" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T01:37:19.363", "id": "2619472", "postId": "1495065", "score": "0", "text": "Sorry for the grammar and the bad sentencing I did not sleep for 30 hours trying figure things out of my laptop.", "userDisplayName": null, "userId": "1356683" }, { "creation...
null
[]
null
null
null
null
null
1495066
1
null
2023-12-06T01:46:06.840
0
117
<p>Ubuntu 22.04 had a Create Link option for files and folders that is not in 23.10 so what is the replacement?</p>
283272
null
null
2023-12-06T03:46:31.153
How do I create a link to a file in Ubuntu 23.10?
[ "23.10" ]
2
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>You can create a symlink with the command</p>\n<pre><code>ln -s /path/to/source/file /full/path/to/destination/file\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2023-...
null
null
null
null
null
1495070
1
null
2023-12-06T03:20:18.347
0
68
<p>I have 3 displays and I want my current workspace to span all of them so that when I switch work spaces all 3 displays will switch to a new workspace.</p> <p>As you probably know, the default is that you can only switch work spaces on your primary display.</p> <p>I have read many posts on how to do this and their ex...
1750754
null
null
2023-12-06T03:20:18.347
xubuntu 22.04 How to make workspaces span multiple displays
[ "gnome", "xubuntu", "multiple-monitors", "workspaces" ]
0
4
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T03:31:13.353", "id": "2619487", "postId": "1495070", "score": "0", "text": "I'm lost by your description; the default behavior of GNOME & Ubuntu Desktop is when you switch workspace, only the primary display changes; HOWEVER the default of Xubuntu and Xfce is that w...
null
[]
null
null
null
null
null
1495071
1
1495294
2023-12-06T03:27:43.833
1
74
<p>So I'm trying to automate some tasks and I'm making some dolphin ServiceMenus.</p> <pre><code>Exec=for file in %f; do new_path=$(echo &quot;$file&quot; | sed &quot;s|^/home/$(whoami)||&quot;); mkdir -p ~/Dropbox/.Home&quot;$(dirname &quot;$new_path&quot;)&quot; &amp;&amp; cp -pur &quot;$file&quot; ~/Dropbox/.Home&qu...
1750753
1750753
2023-12-06T12:07:31.323
2023-12-07T18:07:01.703
Dolphin context menu exec command, cp will duplicate selected folder if already copied
[ "command-line", "scripts", "rsync", "dolphin", "context-menu" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T10:47:43.143", "id": "2619539", "postId": "1495071", "score": "0", "text": "Do you always copy directories or is this also supposed to work for individual files? Can you gie us some examples of each of the possible use cases? Show us the folder structure you have an...
{ "accepted": true, "body": "<p>After some more research, added <code>if</code> to identify is selected item is file or folder and this is the code that worked without any problems</p>\n<pre><code>Exec=for file in %f; do if [ -d &quot;$file&quot; ]; then new_path=$(dirname &quot;$file&quot; | sed &quot;s|^$HOME||&q...
[ { "accepted": true, "body": "<p>After some more research, added <code>if</code> to identify is selected item is file or folder and this is the code that worked without any problems</p>\n<pre><code>Exec=for file in %f; do if [ -d &quot;$file&quot; ]; then new_path=$(dirname &quot;$file&quot; | sed &quot;s|^$...
null
null
null
null
null
1495075
1
null
2023-12-06T04:49:01.580
0
83
<p>I have 32 GB ram, that in days get eaten up by using web-browser firefox and other common programming applications. Even my swap get up to 17.9/37.3 GB written. OS Ubuntu 22.04. I have not been able to use google-chrome since update of kernel due to my nvidia GPU card, would have to reverse to my older kernel it see...
1750772
null
null
2023-12-06T04:49:01.580
Free memory consumed by browser and applications on ubuntu 22.04
[ "kernel", "firefox", "google-chrome", "ram", "swap" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T05:13:39.630", "id": "2619502", "postId": "1495075", "score": "0", "text": "This is not a problem https://www.linuxatemyram.com/ And you really don't need 37 GB of swap. Just a few GBs is enough.", "userDisplayName": null, "userId": "124466" }, { "cr...
null
[]
null
null
null
null
null
1495082
1
null
2023-12-06T06:27:12.383
1
236
<p>In Ubuntu 22.04 I am trying to change the static IP address of a single network interface <strong>without changing anything else</strong>. This interface is an ethernet-to-USB converter connected to local ethernet devices (and not used to connect to the internet). I found the following script</p> <pre><code>#!/bin/b...
92582
92582
2023-12-06T07:44:16.437
2023-12-06T16:08:28.670
How to change the static IP address of an adaptor in Ubuntu using a script?
[ "networking", "22.04", "network-manager", "internet", "ethernet" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T07:17:01.860", "id": "2619508", "postId": "1495082", "score": "0", "text": "sudo /sbin/ip addr add 192.168.200.100/24 dev enx00e04c680202", "userDisplayName": null, "userId": "1372403" }, { "creationDate": "2023-12-06T07:20:57.780", "id": "261950...
null
[ { "accepted": null, "body": "<p>For me the following script does exactly what I need:</p>\n<pre><code>#!/bin/bash\nINTERFACE=enx00e04c680202\nsudo ifconfig $INTERFACE down\nsudo ifconfig $INTERFACE $1 netmask 255.255.255.0 up\n</code></pre>\n<p>and then I call this script like</p>\n<pre><code>./set_network_...
null
null
null
null
null
1495085
1
null
2023-12-06T06:52:03.997
0
67
<p>I am running virtual ubuntu 20.04.6 LTS node in a virtual cluster and have three nfs shares , shared between all instances. All the other nodes run on CentOS stream, but this one contains two GV100 GPUs and it always seemed easier to administer nvidia software in ubuntu hence the odd set-up.</p> <p>Yesterday I ran t...
1750789
1750789
2023-12-06T06:57:28.073
2023-12-06T06:57:28.073
nfs client time out after apt upgrade updated nfs-common
[ "mount", "nfs" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495087
1
null
2023-12-06T07:11:50.433
2
68
<p>How to add a package to unattended-upgrades to be automatically updated ? For exemple, add the application named XXX to unattended-upgrades in order to be updated in background.</p>
546652
546652
2023-12-13T18:24:34.030
2023-12-13T18:24:34.030
How to add a package to unattended-upgrades?
[ "updates", "unattended-upgrades" ]
0
4
CC BY-SA 4.0
[ { "creationDate": "2023-12-10T11:02:32.170", "id": "2620374", "postId": "1495087", "score": "0", "text": "I don't have brave installed and I'm not going to do so, so I can't try it out. [Here](https://linux-audit.com/upgrading-external-packages-with-unattended-upgrade/) is a guide which demonstr...
null
[]
null
null
2023-12-13T18:29:00.693
null
null
1495089
1
null
2023-12-06T07:51:44.153
0
29
<p>As topic says. Sometimes when i boot up the PC the login is frozen So i ll have to restart the PC and then it works as usual. I am running the latest version of Kubuntu = 23.10 Is there a fix to this?</p>
1750451
1750451
2023-12-06T07:52:37.433
2023-12-06T07:52:37.433
On startup login sometimes do not work (It is frozen.) on Kubuntu
[ "boot", "login" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495092
1
null
2023-12-06T08:45:27.330
0
31
<p>After recent updates the login screen from either a reboot or after suspend requires 2 attempts with the password. Even after enabling view password and carefully checking the correct details it still spends 10s or so on both attempts to finally login!</p> <p>My Dell Latitude Plus 7620 is using the 5.19.0-50-generic...
871217
null
null
2023-12-06T08:45:27.330
22.04 update now requires 2 login attempts
[ "login" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495093
1
1495099
2023-12-06T08:52:34.500
4
394
<p>On my lubuntu 22.04 I have installed the package <code>unclutter</code> by the command:</p> <pre><code>sudo apt-get install unclutter </code></pre> <p>A description of this package is the following:</p> <blockquote> <p>unclutter hides your X mouse cursor when you don’t need it, to prevent it from getting in the way....
1636722
1636722
2023-12-06T10:17:43.413
2023-12-06T10:17:43.413
How can I disable the program unclutter without remove its package?
[ "apt", "package-management", "systemd", "services", "unclutter" ]
1
5
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T09:04:48.393", "id": "2619524", "postId": "1495093", "score": "1", "text": "What does `systemctl status <pid-of-unclutter>` show?", "userDisplayName": null, "userId": "158442" }, { "creationDate": "2023-12-06T09:11:51.437", "id": "2619525", "...
{ "accepted": true, "body": "<p>By the help of @muru I have found the solution for my question.</p>\n<h3>The file <code>/etc/default/unclutter</code></h3>\n<p>By the file <code>/etc/default/unclutter</code> is possible to select if to start <code>unclutter</code> after X has been started and so it is possible to di...
[ { "accepted": true, "body": "<p>By the help of @muru I have found the solution for my question.</p>\n<h3>The file <code>/etc/default/unclutter</code></h3>\n<p>By the file <code>/etc/default/unclutter</code> is possible to select if to start <code>unclutter</code> after X has been started and so it is possib...
null
null
null
null
null
1495095
1
null
2023-12-06T09:20:42.947
0
146
<p>I've installed latest ubuntu next to windows. Everything is working except the integral laptop microphone. It is not detected in settings. I tried using <a href="https://askubuntu.com/questions/1230016/headset-microphone-not-working-on-ubuntu-20-04">hdajackretask</a> and the mic did appear in settings but was not pi...
1750817
1750817
2023-12-06T09:46:51.620
2023-12-07T21:29:10.197
microphone not working, laptop HP 255 on dual-boot ubuntu 23.10
[ "sound", "kernel", "alsa", "microphone" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>I had this issue and the I restarted the pulseaudio daemon with</p>\n<pre><code>systemctl --user restart pulseaudio\n</code></pre>\n<p>and that worked for me.\nYou can also try out this steps from\n<a href=\"https://support.system76.com/articles/audio/\" rel=\"nofollow norefe...
null
null
null
null
null
1495097
1
null
2023-12-06T09:42:51.637
0
282
<p>I am using Ubuntu 22.04.3 on an LG gram 2-in-1 laptop. My computer used to have a problem where the keyboard would be unresponsive for a few minutes after I turned it on, but I was able to easily find the solution: adding <code>i8042.dumbkbd=1</code> to <code>GRUB_CMDLINE_LINUX_DEFAULT</code> in <code>/etc/default/g...
1750818
null
null
2023-12-06T09:42:51.637
Why does "i8042.dumbkbd" fix the issue where my keyboard doesn't respond after logging in, and is there a way to fix it some other way?
[ "grub2", "keyboard", "22.04", "login", "lg" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2024-01-25T02:12:27.920", "id": "2630887", "postId": "1495097", "score": "0", "text": "looking at the kernel source code they make i8042.dumbkbd = true , for some of HP laptops they know will work only with this . So whatever you put it in boot parameters , or they enable it ...
null
[]
null
null
null
null
null
1495098
1
null
2023-12-06T09:43:44.320
0
25
<p>We have 2 ceph clusters running on 2 different geographical locations ~2500 Km apart. The deployment is canonical charm based and is running on ubuntu 20.04 , ceph ver is octopus (15.2.7). There is a firewall between 2 clusters and we have enabled the port 80 bidirectional on the hacluster Vip for rados gateways on ...
1750823
null
null
2023-12-06T09:43:44.320
ceph multisite replication cannot be initialised
[ "server", "juju", "ceph" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495101
1
null
2023-12-06T09:50:40.473
0
98
<p>I have a legion 5 with AMD iGpu and nvidia dGpu. The problem is prime does not work like it should. It does not turn off my dGpu while it is not in use and I can't turn it off.</p> <p>The only driver that worked is the old 390. It does use wayland, it does use only 8 watts of power, since the dGpu is turned off, the...
1734029
null
null
2023-12-06T09:50:40.473
On ubuntu what are the nvidia drivers that would use wayland and can handle dual monitors?
[ "drivers", "nvidia", "22.04", "64-bit", "nvidia-prime" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495102
1
null
2023-12-06T09:58:21.500
1
243
<p>Frustratingly, I am unable to make emoji render properly in any terminal on up-to-date Ubuntu 22.04. I have them working in the browser (fully expected), LibreOffice, even Emacs shell but not in any of my terminals. I've checked the locale (en_GB.UTF-8), fc-list &quot;MesloLGS NF Regular&quot; (or any other emoji fr...
796998
796998
2023-12-06T11:31:53.390
2024-03-26T12:37:04.780
Is there a debug guide to solve emojis not dislaying in Terminal Tilix or Guake on Ubuntu 22.04
[ "22.04", "fonts", "emoji" ]
3
4
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T10:26:19.370", "id": "2619535", "postId": "1495102", "score": "0", "text": "I cannot imagine why anyone would ever actually want emojis in the terminal (you can always use smileys, `:)`, if you absolutely must), but my guess is that you are using a terminal font tha...
null
[ { "accepted": null, "body": "<p>Whether a glyph is displayed will depend on whether the font you are using supports it. If you switch to one that has emoji support, it should work as you expect. You mentioned Noto in your question, so try that. Open <code>gnome-terminal</code>, go to Preferences -&gt; &quot...
null
null
null
null
null
1495106
1
null
2023-12-06T10:46:19.770
0
30
<p>I am using Ubuntu 22.04.3 on an LG gram 2-in-1 laptop. According to the settings, my GNOME version is 42.9 and my windowing system is X11. I have only one monitor and have never had any extra monitors or displays of any kind.</p> <p>The login screen never gave me problems before, but ever since about a month ago, it...
1750818
null
null
2023-12-06T10:46:19.770
Autologin disabled, but being logged in a few seconds after I try to type my password (suddenly started happening)
[ "22.04", "login", "xorg", "display", "xfce" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495107
1
null
2023-12-06T10:55:08.510
3
223
<p>Hello I have Ubuntu MATE 22.04.03 LTS on a desktop computer. Today, suddenly, I cannot run any libreoffice program anymore. I get this error:</p> <pre><code>$ lowriter /usr/lib/libreoffice/program/javaldx: error while loading shared libraries: libreglo.so: cannot open shared object file: No such file or directory ...
564382
564382
2023-12-06T11:00:42.250
2023-12-06T11:37:10.703
libreoffice suddenly stopped working in Ubuntu MATE 22.04.03 LTS
[ "libreoffice", "mate" ]
2
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>I think your <strong>uno-libs-private</strong> package may be missing or has some corrupted files... it supplies the libreglo.so file (at /usr/lib/libreoffice/program/libreglo.so ).</p>\n<p>Reinstalling that package should get the file back in the right place... assuming you ...
null
null
null
null
null
1495109
1
null
2023-12-06T11:07:29.040
1
255
<p>I'm reaching out here because even AI hasn't been helpful, and I'm hoping to find a solution.</p> <p>I'll start from when the issue first appeared: I was installing OpenVPN and trying to configure it on my Lenovo IDEAPAD Pro 5i with Ubuntu 23.10 in dual boot. Initially, it seemed to work fine until I closed the moni...
1699144
1699144
2023-12-06T12:01:01.397
2023-12-21T15:53:05.093
Network manager not working on wifi and VPN
[ "networking", "network-manager", "openvpn", "bug-reporting" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495111
1
null
2023-12-06T11:09:23.587
0
45
<p>I have a computer with an empty ssd and an asrock motherboard (z790m-itx) and onboard intel graphics.</p> <p>I plug in a working bootable ubuntu 23.10 usb medium. Always after the first time the ubuntu logo is shown (at the very beginning of the installation process), the computer powers off and tries to reboot.</p>...
761897
null
null
2023-12-06T11:09:23.587
installation problem ubuntu / kubuntu
[ "boot", "usb", "kubuntu", "23.10" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495112
1
1495123
2023-12-06T11:09:34.040
4
130
<p>In order to use some data that are stored and produced remotely I first download them via <code>scp servername:/.../big_directory/* ~/</code>. There are many files and the command includes everything. These files change unpredictably (for me), however it's just a few (over MANY) that actually change between a downlo...
587144
null
null
2023-12-06T11:35:25.820
Secure remote copy with exceptions
[ "ssh", "openssh", "scp" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>You're looking for <code>rsync</code> with the <code>-u</code> option. From <code>man rsync</code>:</p>\n<pre><code> --update, -u\n This forces rsync to skip any files which exist on the destina‐\n tion and have a modified time that is newer than th...
[ { "accepted": true, "body": "<p>You're looking for <code>rsync</code> with the <code>-u</code> option. From <code>man rsync</code>:</p>\n<pre><code> --update, -u\n This forces rsync to skip any files which exist on the destina‐\n tion and have a modified time that is newer ...
null
null
null
null
null
1495115
1
null
2023-12-06T11:16:53.213
0
123
<p>I am using Ubuntu on HP EliteBook g3 840. My system can't detect any audio device including the internal speakers and mics.</p> <p><a href="https://i.stack.imgur.com/4K0XR.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/4K0XR.png" alt="Image of No output devices detected" /></a></p> <p>I have chec...
1750845
94914
2023-12-06T11:29:50.303
2023-12-06T11:29:50.303
My Ubuntu system can't detect audio devices
[ "sound", "pulseaudio", "alsa", "hp", "microphone" ]
0
4
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T12:22:29.327", "id": "2619563", "postId": "1495115", "score": "0", "text": "Does this work for you? https://github.com/pop-os/pop/issues/2339#issuecomment-1722878951", "userDisplayName": null, "userId": "966203" }, { "creationDate": "2023-12-06T15:0...
null
[]
null
null
null
null
null
1495117
1
null
2023-12-06T11:22:19.643
0
148
<p>Good morning everyone!</p> <p>I am trying to share my desktop with Ubuntu 23.10 installed.</p> <p>This machine has two GeForce RTX 2080 and consequently NVIDIA proprietary drivers (I need CUDA API so I cannot use open drivers), I am also using Gnome 45.1 together with Wayland.</p> <p>I have tried to use NoMachine bu...
1701140
1701140
2023-12-06T11:31:56.740
2023-12-06T11:31:56.740
NoMachine remote desktop flickering on Ubuntu 23.10
[ "remote-desktop", "23.10", "desktop-sharing" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495122
1
null
2023-12-06T11:33:12.243
0
65
<p>I am using dnsmasq on my server to boot our clients via PXE (both traditional BIOS and UEFI); the NFS-root is readonly and the clients use an overlay-root. This worked fine for Xubuntu 18.04 clients.</p> <p>After upgrading to 22.04, the resulting client system has no DNS-resolution: I can ping an ip-address, but <co...
1133445
null
null
2023-12-06T11:33:12.243
Xubuntu 22.04: no DNS after PXE/overlay boot
[ "22.04", "network-manager", "dns", "pxe" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T12:05:27.017", "id": "2619560", "postId": "1495122", "score": "0", "text": "I have checked the DHCP requests to the server (using a short lease time of 2m). After the PXE-boot + NFS mount has finished, the client system sends no DCHP requests to the server. This see...
null
[]
null
null
null
null
null
1495127
1
null
2023-12-06T12:03:47.993
0
44
<p>I am trying to assign the keyboard shortcut <code>ctrl + alt + windows + down</code> to a specific editor command in IntelliJ but it is not working.</p> <p>In the process of adding the shortcut combination I hold down the keys 1 at a time and IntelliJ shows me the following to indicate what I am pressing:</p> <div c...
16218
16218
2023-12-06T12:12:46.640
2023-12-06T16:43:37.387
What is hiding Ctrl + Alt + Windows + Up/Down in IntelliJ on Ubuntu
[ "22.04", "intellij" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>Man that wasted a lot of my time :(</p>\n<p>I discovered that there are a bunch of people suffering similar problems in the Intellij support system.</p>\n<p>Anyway, what is working for me now is to add a setting to your custom properties file which makes the IDE recognise the...
null
null
null
null
null
1495128
1
null
2023-12-06T12:08:04.747
0
43
<p>i am trying to configure the dhcpd.conf file, when I restart and see the staus of the isc-dhcp-server it is giving below error:</p> <pre><code>isc-dhcp-server.service - ISC DHCP IPv4 server Loaded: loaded (/lib/systemd/system/isc-dhcp-server.service; enabled; vendor preset: &gt; Active: failed (Result: exit-code) ...
1750860
null
null
2023-12-06T12:08:04.747
dhcpd.conf configuration for PXE server
[ "networking", "server", "dhcp", "pxe", "dhcpd" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-07T06:17:09.693", "id": "2619741", "postId": "1495128", "score": "1", "text": "Please edit your question and add details on which Ubuntu release you are using. Furthermore it would help if you could show the content of your current configuration file in your post.", ...
null
[]
null
null
null
null
null
1495130
1
null
2023-12-06T12:25:16.727
0
103
<p>I accepted the invitation to upgrade my Lubuntu 20.04.6 LTS machine today, and have been unable to execute commands as root ever since - for example, if I try:</p> <p><code>sudo docker stop home-assistant</code></p> <p>I get:</p> <p><code>Sorry, user mhyuser is not allowed to execute '/usr/bin/docker stop home-assis...
758497
null
null
2023-12-06T12:46:04.467
Cannot execute commands as root following upgrade
[ "20.04", "sudo" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T12:40:15.620", "id": "2619568", "postId": "1495130", "score": "0", "text": "See if `sudo grep \"$USER\" /etc/sudoers /etc/sudoers.d/*` returns anything ... Also, please see what `sudo -l` returns.", "userDisplayName": null, "userId": "968501" } ]
null
[ { "accepted": null, "body": "<p>Looks like I've found the problem. I added my user to a new group a few days ago, and I'm guessing that, in doing so, I accidentally removed it from the sudo group. I have now logged in as root and re-added it to the sudo group, and the problem seems to be resolved.\nThanks f...
null
null
null
null
null
1495131
1
1495153
2023-12-06T12:31:29.773
1
325
<p>I have Ubuntu 20.04 with gnome-42-2204 installed as snap package</p> <pre><code># snap list --all Name Version Rev Tracking Publisher Notes bare 1.0 5 latest/stable canonical✓ base code 1a5daa3a 146 latest/stabl...
1750867
null
null
2023-12-06T15:01:27.120
Gnome 42 installed on Snap Ubuntu 20.04
[ "20.04", "gnome", "snap" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<blockquote>\n<p>I have Ubuntu 20.04 with gnome-42-2204 installed as snap package</p>\n</blockquote>\n<p>This is a back-end library for snap apps, and is not the full GNOME desktop.</p>\n<blockquote>\n<p>Does it mean I can change to Gnome 42? I currently use Gnome 3.36 and want to try n...
[ { "accepted": true, "body": "<blockquote>\n<p>I have Ubuntu 20.04 with gnome-42-2204 installed as snap package</p>\n</blockquote>\n<p>This is a back-end library for snap apps, and is not the full GNOME desktop.</p>\n<blockquote>\n<p>Does it mean I can change to Gnome 42? I currently use Gnome 3.36 and want ...
null
null
null
null
null
1495134
1
null
2023-12-06T12:50:06.060
0
20
<p>How to add SipHash patch from kernel v4.11 to v4.4.52 to replace the md5 cryptographic function with the Siphash for adding more security in v4.4.52? Can we do this? what is the proper way to do? I was trying to add the patch from below link: <a href="https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.gi...
1750871
null
null
2023-12-06T12:50:06.060
How to add SipHash patch from kernel v4.11 to v4.4.52
[ "kernel", "git", "yocto" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T14:54:57.393", "id": "2619587", "postId": "1495134", "score": "0", "text": "Which distro and version of Linux are you using?", "userDisplayName": null, "userId": "68186" }, { "creationDate": "2023-12-07T06:13:41.053", "id": "2619739", "postId...
null
[]
null
null
null
null
null
1495135
1
null
2023-12-06T13:05:15.423
0
60
<p>I have installed Ubuntu 22.04.3 LTS alongside with my windows 11 on my laptop and its working pretty nice. I don't face any issue while installing/downloading packages/application through the terminal. bBut whenever I try to remove an application from the terminal, it gives me this error:</p> <p><img src="https://i....
1750877
85695
2023-12-06T13:10:34.813
2023-12-06T13:10:34.813
E: unable to locate package spotify
[ "command-line" ]
0
4
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T13:14:39.253", "id": "2619569", "postId": "1495135", "score": "0", "text": "How do you install programs? What command did you use to install spotify?", "userDisplayName": null, "userId": "85695" }, { "creationDate": "2023-12-06T14:07:39.423", "id...
null
[]
null
null
null
null
null
1495136
1
null
2023-12-06T13:15:41.523
0
316
<p>I started a local apt repository, but I want the client settings to be in such a way that if the local repo server was unavailable, the client will download the packages from the default ubuntu repos. Somehow the priority of local repo should be more. Is it possible to do this?</p>
1740439
968501
2023-12-06T13:51:41.930
2023-12-06T13:51:41.930
Local APT Repository
[ "apt", "22.04", "repository" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T13:40:37.190", "id": "2619571", "postId": "1495136", "score": "0", "text": "Simply adding your local repository sources links at the top and following them by the links for the remote ones in `/etc/apt/sources.lis` should do what you want (given that the packages ve...
null
[]
null
null
null
null
null
1495137
1
null
2023-12-06T13:19:31.357
0
192
<p>My connection via Wifi or USB Ethernet (from an Iphone) stops after some random time (2min to hours). It has been like this for two weeks now. Bluetooth is disabled.</p> <p>The same happens in Windows, where I already tried to install the drivers from MSI (motherboard manufacturer) and reset the wifi to default para...
1750881
1750881
2023-12-11T17:33:33.417
2023-12-11T17:33:33.417
Wifi / Ethernet disconnecting at random times on Ubuntu 22.04
[ "networking", "wireless", "ethernet" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495138
1
null
2023-12-06T13:24:58.023
2
38
<p>how do I re-enable a suspended Ubuntu One account. Trying to log in with my credentials, server responds that account has been suspended and call login support for re-enabling. Login support agent called responds to come here.</p>
1750882
null
null
2023-12-06T13:24:58.023
suspended Ubuntu One account
[ "login" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T14:47:11.730", "id": "2619585", "postId": "1495138", "score": "0", "text": "Does https://help.ubuntu.com/community/SSO/FAQs help you?", "userDisplayName": null, "userId": "19626" }, { "creationDate": "2023-12-13T07:18:17.430", "id": "2621872", ...
null
[]
null
null
null
null
null
1495139
1
null
2023-12-06T13:39:47.797
0
78
<p>I am using Ubuntu 22.04, since last week my web browsers (firefox and Chrome) have suffered random crashes. I looked it up on the internet and someone suggested I use memtest86 for hardware issues. Here is the memtest86 result:</p> <p><img src="https://i.stack.imgur.com/PEslh.png" alt="memtest86 result" /></p> <p>Th...
1227586
1450948
2023-12-07T11:13:57.777
2023-12-07T11:13:57.777
Memtest86 Test Result
[ "22.04", "ram", "crash", "memtest" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T15:08:51.883", "id": "2619589", "postId": "1495139", "score": "3", "text": "When the memory fails in a test, I strongly suggest that you replace it.", "userDisplayName": null, "userId": "55537" }, { "creationDate": "2023-12-06T20:57:01.130", "id"...
null
[]
null
null
null
null
null
1495140
1
null
2023-12-06T13:42:04.940
0
24
<p>I run a webserver on a VM of Ubuntu Server that is on a Windows Server. Recently there was a power outage and now the Ubuntu won't boot and I get error messages.<a href="https://i.stack.imgur.com/1BzRt.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/1BzRt.png" alt="Error messages" /></a> The VM is...
430809
430809
2023-12-06T14:24:58.077
2023-12-06T14:24:58.077
My VM Webserver won't boot after a power outage, how can I fix it?
[ "server", "grub2", "vmware" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495144
1
null
2023-12-06T14:17:47.743
0
69
<p><strong>Description:</strong></p> <p>I've encountered a puzzling network issue with my homeserver setup and I'm seeking guidance to resolve it.</p> <p><strong>Problem:</strong></p> <p>My homeserver, behind a &quot;Fritz Box&quot; home router, experiences connectivity hiccups. While IPv4 pinging between my laptop and...
877352
null
null
2023-12-06T14:17:47.743
Unable to Configure Network on Homeserver Behind "Fritz Box" Home Router
[ "networking", "dhcp", "netplan", "router", "ipv4" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495147
1
null
2023-12-06T14:20:38.020
0
172
<p>My laptop recently couldn't enter GUI mode and could only enter CLI mode. I've looked for a solution on the internet but most people suggest doing:</p> <pre><code>sudo apt-get --reinstall ubuntu-desktop </code></pre> <p>Unfortunately, I accidentally deleted the <code>network-manager</code> so now my laptop can't con...
1750897
618353
2023-12-07T15:52:07.917
2023-12-07T16:11:54.007
How to return Ubuntu to GUI mode after accidentally deleting network-manager?
[ "command-line", "network-manager", "gui" ]
1
4
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T14:24:59.337", "id": "2619578", "postId": "1495147", "score": "1", "text": "That should be `sudo apt install --reinstal ubuntu-desktop` or `sudo apt reinstal ubuntu-desktop`... and you can do it from a live system (internet enabled) see for example https://askubuntu...
null
[ { "accepted": null, "body": "<p>I am assuming you are using the LTS 22.04 version of Ubuntu.</p>\n<p>Network Manager is not required to connect to the internet. Assuming you have a DHCP server on your network, and you have the phyiscal connection/Wifi connected. Then in a shell as root or using sudo run:<...
null
null
null
null
null
1495148
1
null
2023-12-06T14:35:38.687
0
353
<p>I believe I didn't install ubuntu 22.04 properly on my new asus. Now I keep trying to install it again but I can't reach to the boot menu. How can I completely remove it and then install?</p>
1750901
1750901
2023-12-06T14:36:55.157
2023-12-06T23:13:22.200
Remove and install again
[ "22.04", "uninstall", "delete", "reinstall" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T14:47:06.990", "id": "2619584", "postId": "1495148", "score": "1", "text": "You don't have to remove it. Just boot a live USB and reinstall. Ensure to boot the live USB in UEFI (not legacy BIOS) mode", "userDisplayName": null, "userId": "124466" } ]
null
[ { "accepted": null, "body": "<p>If you're having trouble accessing the boot menu to reinstall Ubuntu, you can follow these steps:</p>\n<p><strong>1. Shutdown Your Computer:</strong> Ensure that your computer is powered off.</p>\n<p><strong>2. Access the BIOS/UEFI:</strong> Turn on your computer and press th...
null
null
null
null
null
1495150
1
null
2023-12-06T14:44:29.713
1
79
<p>When I turn on my PC, it automatically boots to my desktop with a frozen view of the <strong>activities overview</strong> menu, just like this:</p> <p><img src="https://i.stack.imgur.com/mCM24.png" alt="1" /></p> <p>Then I can't click anywhere or anything, and I end up restarting the PC (a few times) until it sudden...
1190656
null
null
2023-12-10T19:11:19.397
Ubuntu desktop logs me into the Activities overview menu and I can't click anywhere nor do anything [Ubuntu 22.04.3 LTS]
[ "gnome", "22.04", "desktop-environments" ]
1
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-07T07:44:07.683", "id": "2619761", "postId": "1495150", "score": "1", "text": "You will have to provide detail: in a default system, no applications are open when a system restarts. Perhaps instead, you are restarting your computer from the suspended state? Use \"edit\...
null
[ { "accepted": null, "body": "<p>I've just switched from <code>X11</code> to <code>Wayland</code>, seems it doesn't happpen anymore.\nThanks everyone!!</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2023-12-09T11...
null
null
null
null
null
1495159
1
null
2023-12-06T16:05:11.783
0
66
<p>I has a vps that has ip <code>1.1.1.1</code>. this vps has two interface. one of theme inside my LAN by ip 10.10.10.2\24 as name eth1 and another side in internet (1.1.1.1) as ens33.</p> <p>Now, i create a ocserver based <a href="https://www.linuxbabe.com/ubuntu/openconnect-vpn-server-ocserv-ubuntu-20-04-lets-encryp...
1171267
null
null
2023-12-06T16:05:11.783
Openconnect Server not see my local network
[ "networking", "22.04", "vpn", "openconnect" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T22:29:25.337", "id": "2619656", "postId": "1495159", "score": "0", "text": "Your VPN subnet cannot be the same as your LAN subnet. I would recommend changing your 10.10.10.2/24 network to something else like 10.0.0.2/24", "userDisplayName": null, "userId": ...
null
[]
null
null
null
null
null
1495163
1
null
2023-12-06T16:25:27.893
1
110
<p>I start to wonder if it's possible to make a script to send notifications once to several other Ubuntus, i must say that not all the computers have the same Distro, having MATE XUbunutu LUbuntu and different versions.</p> <p>It's reliable to do via ssh ?? It's a wide but closed network..</p> <p>Any Ideas ? or any pr...
1611225
null
null
2023-12-06T21:06:33.317
Notify-send scripted to several other ubuntu's distros
[ "ssh", "lubuntu", "notify-send" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T20:48:06.270", "id": "2619637", "postId": "1495163", "score": "0", "text": "FYI: Lubuntu is a Ubuntu system with different installed packages, just as Ubuntu-MATE is also a Ubuntu system with different packages. For *lunar* or 23.04 the Lubuntu seed is [here](https...
null
[ { "accepted": null, "body": "<p>yes try<pre><code>ssh ip_addr &quot;notify-send test123&quot;</code></pre></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2023-12-11T11:03:12.727", "id": "2620527", "postId": "1495188", "score": "0", "text":...
null
null
null
null
null
1495166
1
null
2023-12-06T16:49:29.070
0
22
<p>I have a 2013 macbook pro retina display the I installed ubuntu on. I am trying to use it mainly for zoom exercise meetings. I have installed zoom on it and it seems to work. But for it to be more useful, I need to share my screen with my Samsung Q60C smart TV. It will do Airplay. Initially I tried an hdmi cable to...
785368
null
null
2023-12-06T16:49:29.070
how to connect ubuntu zoom to samsung q60c tv
[ "gnome", "display", "hdmi", "macbook-pro" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T18:28:44.577", "id": "2619624", "postId": "1495166", "score": "0", "text": "Welcome to askubuntu! You say your smart TV will do airplay, Once upon a time there was a project [here](https://github.com/openairplay/openairplay) written in python but it looks like it's ...
null
[]
null
null
null
null
null
1495167
1
null
2023-12-06T16:58:46.570
0
20
<p>got a macbook early 2016, but i wanted ubuntu as well. I want both. I Downloaded 22.04, booted it up, got to installation. It offered only erase all or something else options then went onto another screen and a load of file options dev/etc. Any ideas why it doesn’t offer me the partitioned alternative?</p>
1622282
null
null
2023-12-06T16:58:46.570
ubuntu flash boot offering only erase all data and install instead of 50/50 with macos
[ "22.04" ]
0
2
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T19:17:42.480", "id": "2619626", "postId": "1495167", "score": "1", "text": "Maybe the installer cannot read/understand the existing Mac partitions/file systems. Best to use native tools to shrink/move partitions to make free space for the installer to use.", "u...
null
[]
null
null
null
null
null
1495168
1
null
2023-12-06T17:02:18.200
0
28
<p>I was trying to use my android tablet as a second screen using RD client. It was mirrorring my screen, (although its not working well). But I wanted to use it as an extended screen, for which there used to be some options in previous versions, in Settings-&gt;Display. But in 23.04 it seems to be absent. Any idea how...
1750925
null
null
2023-12-06T17:02:18.200
Multiple display options in 23.04
[ "multiple-monitors", "display", "23.04" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null
1495169
1
null
2023-12-06T17:08:42.537
0
56
<p>I'm looking at having a shorter time from &quot;switch on&quot; to &quot;having logged in and ready to launch an application&quot;. The major &quot;time eater&quot; seems to be the start up of gdm and/or gnome-shell. Am I correct, and if yes, why gnome takes that long to boot up? Anything that can be done (apart buy...
1748348
25618
2023-12-06T17:54:31.177
2023-12-06T17:54:31.177
ubuntu 22.04 slow graphic session startup - how to improve
[ "boot", "22.04", "gnome-shell" ]
0
5
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T17:13:19.870", "id": "2619610", "postId": "1495169", "score": "0", "text": "for some reason, salutation at begin gets lost, so adding here :) \"Hi There!\"", "userDisplayName": null, "userId": "1748348" }, { "creationDate": "2023-12-06T20:57:12.323...
null
[]
null
null
null
null
null
1495170
1
1495248
2023-12-06T17:56:25.633
0
97
<p>I did setup a new Ubuntu Server 22.04.03 on my ESXi enviroment. First i created the VM with 200GB of harddisk space but later increased it via vSphere to 230 GB. I changed the partition size accordingly but i think i made a mistake as i can't resize my vg-ubuntu--lv partition.</p> <pre><code>sudo lsblk -o NAME,FSTYP...
1750935
null
null
2023-12-07T11:50:22.873
Extend vg-ubuntu--lv after adding space in vSphere
[ "partitioning", "hard-drive", "resize" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>You need to extend your physical volume, your volume group, your logical volume and your filesystem.</p>\n<ol>\n<li>First backup any data that you cannot afford to lose.</li>\n<li>Then establish what you have got with the <code>pvdisplay</code>, <code>vgdisplay</code> and <code>lvdis...
[ { "accepted": true, "body": "<p>You need to extend your physical volume, your volume group, your logical volume and your filesystem.</p>\n<ol>\n<li>First backup any data that you cannot afford to lose.</li>\n<li>Then establish what you have got with the <code>pvdisplay</code>, <code>vgdisplay</code> and <co...
null
null
null
null
null
1495171
1
null
2023-12-06T18:13:35.207
0
297
<p>I am using a VPN connection to connect to my work network. Whenever I connect I have to input my password and TOTP token. I have set up the connection within the default network manager GUI in Ubuntu 22.04 as it is an OpenVPN-based VPN.</p> <p>When I try to connect to the VPN I get prompted for the password and TOTP...
1636885
1450948
2023-12-07T11:26:37.507
2023-12-08T00:31:42.357
Disable the strict password prompt focus on Ubuntu 22.04
[ "22.04", "network-manager", "password", "vpn" ]
1
0
CC BY-SA 4.0
[]
null
[ { "accepted": null, "body": "<p>Updating my answer based on the comment.</p>\n<pre><code>nmcli connection modify &lt;your-connection-name&gt; vpn.secrets password &lt;your-vpn-password&gt;\n</code></pre>\n<p>save everything</p>\n<pre><code>nmcli connection up &lt;your-connection-name&gt;\n</code></pre>\n<p>...
null
null
null
null
null
1495173
1
null
2023-12-06T18:33:33.903
0
255
<p>Yesterday I installed Ubuntu on my laptop it worked well. I am using dual boot Ubuntu 22.04.3 and Windows 10, it does boot Windows fine but when I select Ubuntu it doesn't boot up instead it shows me this error: <img src="https://i.stack.imgur.com/po76d.jpg" alt="error" /></p> <p>I tried going to recovery mode but i...
1750941
1450948
2023-12-07T08:25:33.460
2023-12-07T08:27:14.357
ubuntu doesn't boot up it show me error message "rtl187123be 0000:01:00.0 AER: Error of this agent is reported first"
[ "boot", "dual-boot" ]
0
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T18:53:29.390", "id": "2619771", "postId": "1495173", "score": "0", "text": "The recovery mode that didn't work: I don't know the actual status of your system, which kernel you have on... and specifically which actions you took. So. Please, try again but this time ap...
null
[]
null
null
null
null
null
1495178
1
1495181
2023-12-06T18:58:39.927
0
161
<p>I'm running KDE on Ubuntu with a NVidia graphics card. The command <code>nvidia-smi</code> gives the following output:</p> <pre><code>$ nvidia-smi ... elided ... +---------------------------------------------------------------...
1348865
null
null
2023-12-08T00:51:24.240
X and kwin_wayland running at the same time
[ "xorg", "kde", "wayland" ]
1
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<h1>Short Answer</h1>\n<p>Yes, is normal and not harmful</p>\n<h1>Medium Answer</h1>\n<p>There can be cases when KDE runs both Xorg and kwin_wayland simultaneously. Keep in mind they do different things:</p>\n<ul>\n<li><p><strong>Xorg</strong>: This component provides compatibility for ...
[ { "accepted": true, "body": "<h1>Short Answer</h1>\n<p>Yes, is normal and not harmful</p>\n<h1>Medium Answer</h1>\n<p>There can be cases when KDE runs both Xorg and kwin_wayland simultaneously. Keep in mind they do different things:</p>\n<ul>\n<li><p><strong>Xorg</strong>: This component provides compatibil...
null
null
null
null
null
1495187
1
null
2023-12-06T20:27:10.087
0
343
<p>I'm not sure where to begin... I'm trying to troubleshoot an issue where on the vast number of deployed Ubuntu 20.04.6 LTS systems, users never receive a popup asking to enter their password when launching (for example) software-updater.</p> <p>What happens when a user clicks on &quot;Software Updater&quot; is:</p> ...
1576197
null
null
2023-12-06T20:27:10.087
Troubleshooting Polkitd on Ubuntu 20.04.6 LTS
[ "20.04", "gnome", "policykit" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T21:52:43.510", "id": "2619651", "postId": "1495187", "score": "0", "text": "Check If the Gnome polkid Agent starts with the Desktop Session. If not Put him in the Autostart.", "userDisplayName": null, "userId": "966203" }, { "creationDate": "2023-12-...
null
[]
null
null
null
null
null
1495189
1
null
2023-12-06T21:13:48.980
0
57
<p>I have a new laptop with Ubuntu. I want to have a separate partition in order to install Windows on it.</p> <p>Currently I have a single partition. When I open GParted, I can't resize it since the min and max size are the same. And I can't unmount it, since it's in use.</p> <p>What's the best way to create another p...
1750959
null
null
2023-12-06T21:13:48.980
How to partition from single drive
[ "partitioning" ]
0
3
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T21:37:10.773", "id": "2619648", "postId": "1495189", "score": "2", "text": "Not an Ubuntu question, so off topic. Please refer https://askubuntu.com/help/on-topic. But drive has to be gpt & best to leave blank space & Windows wants many partitions with UEFI install....
null
[]
null
null
2023-12-11T07:17:31.630
null
null
1495190
1
null
2023-12-06T22:08:11.630
2
2687
<h1>Setup</h1> <ul> <li>Raspberry Pi outfitted with 64-bit Ubuntu Server 23.10 USB-SSD</li> <li>MacBook and rPi are on the same LAN</li> <li>rPi LAN IP address verified with <code>ifconfig</code></li> </ul> <h1>Issue</h1> <ul> <li>From MacBook: <code>ssh ubuntu@192.168.8.253</code> returns: <code> Permission denied (pu...
545291
545291
2023-12-07T02:52:56.023
2024-02-28T22:27:12.120
How to enable SSH: 23.10 Raspberry Pi
[ "ssh", "raspberrypi", "23.10" ]
3
14
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T22:16:46.543", "id": "2619653", "postId": "1495190", "score": "0", "text": "Are both the Pi and Mac on the same home network? Does the Pi have a static IP address? If not, are you using the right IP address of the Pi or are you using `pi.local` or something similar?...
null
[ { "accepted": null, "body": "<p>These are the steps I followed to get SSH working from a remote PC to a Raspberry Pi 5 running Ubuntu 23.10</p>\n<p>Install ssh server:</p>\n<pre><code>sudo apt update\nsudo apt install openssh-server -y\n</code></pre>\n<p>Edit /etc/ssh/sshd_config:</p>\n<pre><code>PasswordAu...
null
null
null
null
null
1495192
1
1495196
2023-12-06T22:30:04.473
1
494
<p>I'm looking for recommendations for a note app. I'd like it to be cross platform (Android 13 and Ubuntu 22.04), to be able to set reminders, and I'd really like for it to be able to import notes from ColorNote on Android. I have over 4,500 of them, it would be a lot to input manually.</p> <p>I've been looking at a f...
1750436
1750436
2023-12-06T22:51:42.850
2023-12-06T22:51:42.850
Recommendation for note app
[ "22.04", "software-recommendation", "android", "crossplatform" ]
1
1
CC BY-SA 4.0
[ { "creationDate": "2023-12-06T22:53:27.747", "id": "2619662", "postId": "1495192", "score": "1", "text": "Welcome to Ask Ubuntu. Instead of editing your question with the thank you note, you can [accept my answer](https://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work) i...
{ "accepted": true, "body": "<p>You can try <a href=\"https://joplinapp.org/\" rel=\"nofollow noreferrer\">Joplin</a>.\n<a href=\"https://i.stack.imgur.com/buHEA.jpg\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur.com/buHEA.jpg\" alt=\"enter image description here\" /></a>\n<sub> Image source: Joplin...
[ { "accepted": true, "body": "<p>You can try <a href=\"https://joplinapp.org/\" rel=\"nofollow noreferrer\">Joplin</a>.\n<a href=\"https://i.stack.imgur.com/buHEA.jpg\" rel=\"nofollow noreferrer\"><img src=\"https://i.stack.imgur.com/buHEA.jpg\" alt=\"enter image description here\" /></a>\n<sub> Image source...
null
null
null
null
null
1495195
1
null
2023-12-06T22:46:50.610
0
125
<p>I run xtightvncviwer on Ubuntu. It works adequately in scrolled mode, but thats very awkward viewing against my remote system which uses the hole space. It has a full screen mode, but its badly broken. In that mode terminal input mostly doesn't work, the F8 key doesn't work, and it still shows blank for some of the ...
401306
null
null
2023-12-06T22:46:50.610
VNC Viewer that works properly in full screen mode?
[ "vnc", "workspaces", "vncviewer" ]
0
0
CC BY-SA 4.0
[]
null
[]
null
null
null
null
null