maifeeulasad/askubuntu-model
0.1B • Updated
• 1
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 nullclasses 2 values | closedDate nulllengths 23 23 ⌀ | lastEditorDisplayName nullclasses 890 values | ownerDisplayName nulllengths 2 28 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | 1 | 2 | 2010-07-28T19:04:21.300 | 62 | 4556 | <p>Every time I turn on my computer, I see a message saying something like:</p>
<pre><code>Your battery may be old or broken.
</code></pre>
<p>I am already aware that my battery is bad. How do I suppress this message?</p>
| 5 | 208574 | 2014-12-16T01:47:45.980 | 2018-10-05T23:56:48.997 | How to get the "Your battery is broken" message to go away? | [
"power-management",
"notification"
] | 4 | 2 | CC BY-SA 3.0 | [
{
"creationDate": "2014-07-23T23:41:20.873",
"id": "673877",
"postId": "1",
"score": "23",
"text": "Wow. This is question #1. http://askubuntu.com/questions/1",
"userDisplayName": null,
"userId": "266012"
},
{
"creationDate": "2019-02-02T13:03:02.317",
"id": "1841146",
"p... | {
"accepted": true,
"body": "<p>Maybe <a href=\"http://linux.aldeby.org/get-rid-of-your-battery-may-be-broken-notification.html\">these</a> instructions will help you to get rid of that message.</p>\n\n<p>Added instructions from the link, <kbd>Alt</kbd>+<kbd>F2</kbd>, then type in <code>gconf-editor</code>. </p>\n\n<p>Navigate to <code>/apps/gnome-power-manager/notify/low_capacity</code> and untick the value.</p>\n\n<p>Or a single command:</p>\n\n<pre><code>gconftool --set /apps/gnome-power-manager/notify/low_capacity --type boolean false\n</code></pre>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2010-07-28T19:15:30.357",
"id": "2",
"lastActivityDate": "2012-07-30T13:51:42.147",
"lastEditDate": "2012-07-30T13:51:42.147",
"lastEditorDisplayName": null,
"lastEditorUserId": "235",
"ownerDisplayName": null,
"ownerUserId": "4",
"parentId": "1",
"postTypeId": "2",
"score": "41"
} | [
{
"accepted": true,
"body": "<p>Maybe <a href=\"http://linux.aldeby.org/get-rid-of-your-battery-may-be-broken-notification.html\">these</a> instructions will help you to get rid of that message.</p>\n\n<p>Added instructions from the link, <kbd>Alt</kbd>+<kbd>F2</kbd>, then type in <code>gconf-editor</code>.... | null | null | null | null | null |
3 | 1 | 258 | 2010-07-28T19:21:50.653 | 51 | 15799 | <p>How can I set the Software Center to allow non-root users to install stuff from the Ubuntu repos without having to type in their password?</p>
<p>I'm fully aware of the security implications, and I am willing to take the risk. Fedora 12 shipped with something like this. (By modifying the PolicyKit configuration, I believe)</p>
| 35 | 10581 | 2014-02-18T13:33:55.917 | 2019-11-30T09:19:09.707 | How can I set the Software Center to install software for non-root users? | [
"software-center",
"software-installation",
"policykit"
] | 5 | 3 | CC BY-SA 3.0 | [
{
"creationDate": "2010-07-28T23:34:37.677",
"id": "163",
"postId": "3",
"score": "5",
"text": "It's important to note that Fedora also backed it out after the sky fell down on them.",
"userDisplayName": null,
"userId": "57"
},
{
"creationDate": "2010-07-29T11:53:16.103",
"id... | {
"accepted": true,
"body": "<p>You can modify the PolicyKit permissions to allow the users to access the aptdaemon backend that Software Centre uses.</p>\n\n<p><code>dpkg --listfiles aptdaemon</code> shows that <code>/usr/share/polkit-1/actions/org.debian.apt.policy</code> is the file specifying the actions possible on the aptdaemon backend. </p>\n\n<p>Looking in that file, the <code>< action id=\"\"></code> tags specify the possible actions. You'd probably want <code>org.debian.apt.install-packages</code> to allow users to install new packages from the archive, and <code>org.debian.apt.update-cache</code> to allow users to update the package lists.</p>\n\n<p>See <code>man pklocalauthority</code> which documents how to set local permissions on PolicyKit actions. Putting the following into <code>/etc/polkit-1/localauthority/50-local.d/10-allow-users-to-install.pkla</code> will allow any user logged in to the local machine to install packages after typing their own password (even when they're not in the admin group) and to update the package cache without typing any password.</p>\n\n<pre><code>[Untrusted Install]\nAction=org.debian.apt.install-or-remove-packages\nResultyAny=no\nResultInactive=no\nResultActive=auth_self\n\n[Untrusted Update]\nAction=org.debian.apt.update-cache\nResultAny=no\nResultInactive=no\nResultActive=yes\n</code></pre>\n",
"commentCount": "3",
"comments": [
{
"creationDate": "2011-11-13T12:55:00.797",
"id": "88837",
"postId": "258",
"score": "0",
"text": "Kubuntu's policies (at least in Natty and Oneiric) are in `/usr/share/polkit-1/actions/org.kubuntu.qaptworker.policy`",
"userDisplayName": null,
"userId": "6969"
},
{
"creationDate": "2011-11-13T13:49:55.057",
"id": "88846",
"postId": "258",
"score": "0",
"text": "Instructions for Kubuntu can be found in [my answer](http://askubuntu.com/q/3/6969#78806)",
"userDisplayName": null,
"userId": "6969"
},
{
"creationDate": "2015-09-10T16:17:01.687",
"id": "972481",
"postId": "258",
"score": "0",
"text": "Life saver - cheers mate! I had to add `Identity=*` to get this to work, adapted from http://askubuntu.com/a/123260. Also, is there any way to get more policy kit log output in e.g. `/var/log/auth.log` (or any other log files) ? I only get `authentication fails` messages, but no reason why it failed...",
"userDisplayName": null,
"userId": "21588"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2010-07-29T02:37:39.900",
"id": "258",
"lastActivityDate": "2017-07-29T07:13:03.333",
"lastEditDate": "2017-07-29T07:13:03.333",
"lastEditorDisplayName": null,
"lastEditorUserId": "527764",
"ownerDisplayName": null,
"ownerUserId": "188",
"parentId": "3",
"postTypeId": "2",
"score": "37"
} | [
{
"accepted": null,
"body": "<p>I don't think it's currently possible to do so via the GUI, but the following should work, albeit be a little kludgy. YMMV. </p>\n\n<p>Add the following line to /etc/sudoers (use <code>sudo visudo</code> to edit the file):</p>\n\n<pre><code>%packageinstallers ALL = NOPASSWD: ... | null | null | null | null | null |
5 | 1 | null | 2010-07-28T19:23:40.273 | 23 | 717 | <p>What are some alternatives to upgrading without using the standard upgrade system? Suppose for example that I wanted to upgrade an Ubuntu installation on a machine with a poor Internet connection. What would my options be? Could I just use a standard Ubuntu disk to upgrade this machine? If I already have a standard Ubuntu disk and want to use that, could I do a clean install without wiping data?</p>
| 10 | 10581 | 2014-02-18T13:34:25.793 | 2014-02-18T13:34:25.793 | What are some alternatives to upgrading without using the standard upgrade system? | [
"upgrade",
"live-cd",
"system-installation"
] | 2 | 1 | CC BY-SA 3.0 | [
{
"creationDate": "2010-07-28T19:30:37.573",
"id": "673238",
"postId": "5",
"score": "0",
"text": "You can use the alternative disk to upgrade a system offline. There are good instructions on how to do this in the [ubuntu community documentation](https://help.ubuntu.com/community/LucidUpgrades)"... | null | [
{
"accepted": null,
"body": "<p>You can use the alternative CD (instead of Ubuntu Desktop, Kubuntu Desktop, Server CD) which allows you to upgrade from CD.</p>\n",
"commentCount": "5",
"comments": [
{
"creationDate": "2010-07-28T19:38:39.723",
"id": "15",
"postId": "18"... | null | null | null | null | null |
6 | 1 | 12 | 2010-07-28T19:23:41.227 | 44 | 31936 | <p>I have a ubuntu development server at work. It is an old rack server that is located somewhere in the company's dungeon, where nobody ever goes. The only way it can work is as a so-called headless server (i.e. with no monitor/keyboard connected and only accepting network connections).</p>
<p>Obviously, if you just need terminal access ssh is more than enough. I, however, would also like to connect to the graphical interface from time to time. At the moment I am using the built in VNC functionality but I am pretty sure this is neither the most efficient nor the most secure way of approaching this issue.</p>
<p>I have done a bit of research on the issue but failed to come to any definite conclusions. I read about trying to forward the X environment over ssh, which would at least solve my security concerns. Can anyone share their experiences in setting this up? Is there any other way that might be worth looking at?</p>
<p>I almost exclusively connect to this server from a Windows machine. I don't know if that might be a problem for some of the methods suggested.</p>
| 27 | 424958 | 2017-12-10T23:38:29.603 | 2018-07-23T14:20:08.313 | How to graphically interface with a headless server? | [
"server",
"ssh",
"security",
"remote-desktop",
"vnc"
] | 9 | 0 | CC BY-SA 3.0 | [] | {
"accepted": true,
"body": "<p>Yes, X forwarding over ssh is a beautiful thing indeed. It allows you to use graphical applications on an app by app basis and have windows handled by your own desktop environment. You do not even need a desktop environment installed on the server.</p>\n\n<p>You do need to set up some authentication things for it to work though. I believe you need xauth for that.</p>\n\n<p>It's SO much faster than VNC as well. VNC was always rather laggy in my experience.</p>\n\n<p><strong>Edit:</strong>\nI have no experience using this method via Windows, but I found <a href=\"http://www.math.umn.edu/systems_guide/putty_xwin32.html\">this tutorial</a> for you if you're interested.</p>\n",
"commentCount": "5",
"comments": [
{
"creationDate": "2010-07-28T19:46:14.027",
"id": "31",
"postId": "12",
"score": "2",
"text": "\"ssh -X <server> <program>\" should set up everything (I've never needed to touch xauth myself, though it does need to be installed in order for the -X option on ssh to work).",
"userDisplayName": null,
"userId": "96"
},
{
"creationDate": "2010-07-28T19:48:23.257",
"id": "33",
"postId": "12",
"score": "0",
"text": "@Suppressingfire: Oh thanks. I guess I should have included the command myself.",
"userDisplayName": null,
"userId": "10"
},
{
"creationDate": "2010-07-28T20:53:14.973",
"id": "103",
"postId": "12",
"score": "2",
"text": "Yes, X forwarding works with windows. I have used it with [Cygwin/X](http://en.wikipedia.org/wiki/Cygwin/X), on Windows XP. Not the fastest or prettiest, but does work.",
"userDisplayName": null,
"userId": "122"
},
{
"creationDate": "2010-08-07T09:55:42.813",
"id": "1427",
"postId": "12",
"score": "0",
"text": "ssh X11 forwarding also limits what services you have to enable on your server! I suspect most servers have ssh anyways. Enabling remote X11 (XDMCP) isn't really known for being secure.",
"userDisplayName": null,
"userId": "455"
},
{
"creationDate": "2016-02-23T04:42:06.873",
"id": "1096640",
"postId": "12",
"score": "1",
"text": "the tutorial link is now broken, mind someone who can update it?",
"userDisplayName": null,
"userId": "104442"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2010-07-28T19:27:32.073",
"id": "12",
"lastActivityDate": "2010-07-28T20:08:33.083",
"lastEditDate": "2010-07-28T20:08:33.083",
"lastEditorDisplayName": null,
"lastEditorUserId": "10",
"ownerDisplayName": null,
"ownerUserId": "10",
"parentId": "6",
"postTypeId": "2",
"score": "22"
} | [
{
"accepted": null,
"body": "<p>You could use <a href=\"https://help.ubuntu.com/community/FreeNX\">freenx</a> instead of vnc. Freenx transmits x-commands (with caching) instead of bitmaps.</p>\n",
"commentCount": "2",
"comments": [
{
"creationDate": "2010-07-28T19:56:14.113",
"... | null | null | null | null | null |
7 | 1 | 3764 | 2010-07-28T19:24:22.550 | 27 | 1910 | <p>I'm taking my be-stickered laptop to a coffee shop tonight for an Ubuntu Hour. I've let a bunch of local LUG people know about it. How can I ensure people come away from it feeling like the experience was valuable? Is there something you've done that was particularly successful?</p>
<p>There is a <a href="http://wiki.ubuntu.com/Hour">wiki page</a> about Ubuntu Hours which is very helpful. I'm interested in collecting best practices from the community.</p>
| 43 | 235 | 2010-08-22T02:10:58.577 | 2018-06-01T02:51:49.553 | How do I run a successful Ubuntu Hour? | [
"community",
"locoteams"
] | 6 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>Try and make it as regular as possible, that way you'll get to meet people more often but others will be able to pop in if they know it's going to happen so that it doesn't have to be pre arranged. In Ireland we have 3 of them running, Dublin is on the last Wednesday of the month and people chose that date and it's worked out well. </p>\n\n<p>What we've found is by picking somewhere central to meet up, people can have a bite to eat, or drink and chat. Making it relaxed and not a formal event is key to making it fun and for it to happen again and again. </p>\n\n<p>It's a fun way to explain/show people new features you've found in a casual way, so I've showed the Loco Directory and let people use my laptop if I was running the latest release.</p>\n\n<p>Make sure everyone is welcome, if there are new less technical people present and the topics are getting too technical, talk to them separately or perhaps suggest techy talk for another time.</p>\n\n<p>Above all just have fun and chat about your community. Ubuntu hours are about your local area and the people in your community. </p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": "2010-09-06T20:08:09.927",
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2010-09-06T20:08:09.927",
"id": "3764",
"lastActivityDate": "2010-09-06T20:08:09.927",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": "user1098",
"ownerUserId": null,
"parentId": "7",
"postTypeId": "2",
"score": "11"
} | [
{
"accepted": null,
"body": "<p>I've always helped identified people's needs and showed them how Ubuntu's implemented those needs. My audience is usually Mac and Windows people - but it's the same idea. Spend a few minutes touching on the new features in 10.04 then let the questions begin. I've also found t... | 2010-07-28T19:34:40.093 | null | null | null | null |
8 | 1 | 240 | 2010-07-28T19:24:41.037 | 19 | 3255 | <p>I started with Ubuntu Karmic, and wanted to try KDE. So I installed <code>kubuntu-desktop</code>. Then I wanted to see how XFCE progressed, so I installed <code>xfce4</code>. I now have Kubuntu with an XFCE splash and login.</p>
<p>How do I (safely) purge XFCE and just have the Kubuntu splash / login screen, or am I stuck with frank-en-buntu?</p>
| 50 | 106495 | 2013-03-29T05:00:51.503 | 2015-05-29T20:56:09.057 | How do I go back to KDE splash / login after installing XFCE? | [
"kde",
"login-screen",
"plymouth"
] | 4 | 1 | CC BY-SA 3.0 | [
{
"creationDate": "2010-07-28T21:44:07.207",
"id": "129",
"postId": "8",
"score": "6",
"text": "I think you should edit the question to something like \"How do I go back from XFCE to KDE?\". \n\nThe current question is too vague and informal, and honestly, every time I saw it in the homepage I j... | {
"accepted": true,
"body": "<p>splash screen is configured by the alternatives system... you can get a list of available plymouth themes by doing: <code>update-alternatives --list default.plymouth</code></p>\n\n<p>You can then change the current plymouth theme by doing\n<code>sudo update-alternatives --set default.plymouth /lib/plymouth/themes/kubuntu-logo/kubuntu-logo.plymouth</code></p>\n\n<p>The alternative way of getting Kubuntu splash it to remove package <strong>xubuntu-plymouth-theme</strong>.</p>\n\n<p>To change the login screen you can either run <code>sudo dpkg-reconfigure gdm</code> and choose kdm as mentioned in another comment or remove <strong>gdm</strong> which should set kdm as default display manager.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2010-07-29T01:43:35.427",
"id": "240",
"lastActivityDate": "2010-07-29T01:43:35.427",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "182",
"parentId": "8",
"postTypeId": "2",
"score": "13"
} | [
{
"accepted": null,
"body": "<p>From a terminal:</p>\n\n<pre><code>sudo apt-get remove xfce4\n</code></pre>\n",
"commentCount": "5",
"comments": [
{
"creationDate": "2010-07-28T19:39:05.823",
"id": "17",
"postId": "27",
"score": "0",
"text": "That will r... | null | null | null | null | null |
9 | 1 | 35 | 2010-07-28T19:26:46.273 | 158 | 129077 | <p>Update Manager is constantly offering me updates (e.g. security fixes, updates from PPAs).</p>
<p>How can I tell my Ubuntu installation to automatically download and install updates whenever they become available?</p>
| 56 | 44179 | 2014-07-22T19:53:14.377 | 2017-05-31T09:25:43.137 | How do I enable automatic updates? | [
"updates",
"unattended-upgrades"
] | 5 | 2 | CC BY-SA 3.0 | [
{
"creationDate": "2015-01-22T02:40:57.120",
"id": "795638",
"postId": "9",
"score": "1",
"text": "https://help.ubuntu.com/community/AutomaticSecurityUpdates",
"userDisplayName": null,
"userId": "5271"
},
{
"creationDate": "2022-02-16T02:54:07.150",
"id": "2409547",
"post... | {
"accepted": true,
"body": "<p>You can do this easily for security updates.</p>\n\n<p>From System Settings open Update Manager. Click the 'Settings...' button, then on the 'Updates' tab, select the radio button 'Install security updates without confirmation.'</p>\n\n<p><strong>To automatically install all updates, see the answer below.</strong></p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2014-05-02T02:17:45.293",
"id": "604483",
"postId": "35",
"score": "34",
"text": "-1 Disappointing this has selected since this is not answering the question correctly and is showing a thing everybody who know Ubuntu a little bit and pays attention in dialogs knows this already. The most upvoted answer is the right one.",
"userDisplayName": null,
"userId": "195243"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2010-07-28T19:37:56.700",
"id": "35",
"lastActivityDate": "2016-01-31T14:40:22.893",
"lastEditDate": "2016-01-31T14:40:22.893",
"lastEditorDisplayName": null,
"lastEditorUserId": "172367",
"ownerDisplayName": null,
"ownerUserId": "69",
"parentId": "9",
"postTypeId": "2",
"score": "29"
} | [
{
"accepted": null,
"body": "<p>Go to terminal, and enter:</p>\n\n<pre><code>sudo dpkg-reconfigure unattended-upgrades\n</code></pre>\n\n<p>Say \"yes\" to the prompt. You'll still be notified about \"normal\" updates, such as those that contain bugfixes, but security updates will be installed automatically.... | null | null | null | null | null |
11 | 1 | 21 | 2010-07-28T19:27:09.843 | 108 | 480056 | <p>I have had significant problems with watching flash video in 64-bit Ubuntu. Does anyone know of a good way to get flash running on the platform?</p>
| 63 | 169736 | 2014-05-04T21:30:10.477 | 2017-07-17T07:52:27.090 | How do I install Adobe Flash player? | [
"flash",
"software-installation"
] | 20 | 4 | CC BY-SA 3.0 | [
{
"creationDate": "2015-07-12T15:54:38.330",
"id": "928923",
"postId": "11",
"score": "0",
"text": "@Braiam - this question and answers are out-of-date. An edit in the question title is needed to state that it is limited to older versions of ubuntu",
"userDisplayName": "user47206",
"user... | {
"accepted": true,
"body": "<h3>For 11.04 and earlier:</h3>\n<p>Are you installing it from the Ubuntu Software Center?</p>\n<ol>\n<li>Go to Applications->Ubuntu Software Center.</li>\n<li>Click on Canonical Partners</li>\n<li>Click the Adobe Flash Plugin 11 and click install.</li>\n</ol>\n<p><strong>Note:</strong> this is the method I use on my 64-bit Ubuntu install and it has yet to fail me.</p>\n<p><img src=\"https://i.stack.imgur.com/XVwJE.png\" alt=\"enter image description here\" /></p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2010-07-29T09:41:54.170",
"id": "254",
"postId": "21",
"score": "0",
"text": "Same here: installed the default (but proprietary) 64bit plugin and I have no issue.",
"userDisplayName": null,
"userId": "23"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2010-07-28T19:31:36.527",
"id": "21",
"lastActivityDate": "2011-10-08T21:52:22.450",
"lastEditDate": "2020-06-12T14:37:07.210",
"lastEditorDisplayName": null,
"lastEditorUserId": "-1",
"ownerDisplayName": null,
"ownerUserId": "5",
"parentId": "11",
"postTypeId": "2",
"score": "81"
} | [
{
"accepted": true,
"body": "<h3>For 11.04 and earlier:</h3>\n<p>Are you installing it from the Ubuntu Software Center?</p>\n<ol>\n<li>Go to Applications->Ubuntu Software Center.</li>\n<li>Click on Canonical Partners</li>\n<li>Click the Adobe Flash Plugin 11 and click install.</li>\n</ol>\n<p><strong>Not... | null | null | null | null | null |
14 | 1 | 31 | 2010-07-28T19:29:16.907 | 35 | 1817 | <p>I'd like to have Ubuntu not check for updates as often. How do I accomplish this?</p>
| 39 | 39 | 2010-07-28T20:43:11.223 | 2012-04-09T07:59:50.883 | How can I make Ubuntu check for updates less often? | [
"updates"
] | 4 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<h3>For 10.10 and earlier versions (and 11.04, in an Ubuntu Classic session)</h3>\n<p>Open Update Manager (<em>System</em> > <em>Administration</em> > <em>Update Manager</em>).</p>\n<p>On the Updates tab, there's a drop down box for "Check for updates:", with options for Daily, every two days, weekly or every two weeks.</p>\n<p>Or you can turn it off and just check manually whenever you want.</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2010-07-28T19:41:23.820",
"id": "21",
"postId": "31",
"score": "0",
"text": "I think you meant \"Software Sources\", not \"Update Manager\"",
"userDisplayName": null,
"userId": "12"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2010-07-28T19:36:09.900",
"id": "31",
"lastActivityDate": "2012-02-16T23:29:58.980",
"lastEditDate": "2020-06-12T14:37:07.210",
"lastEditorDisplayName": null,
"lastEditorUserId": "-1",
"ownerDisplayName": null,
"ownerUserId": "77",
"parentId": "14",
"postTypeId": "2",
"score": "24"
} | [
{
"accepted": null,
"body": "<p>System -> Administration -> Software Sources -> Updates (tab) -> Check for updates: [Daily | Every two days | Weekly | Every two weeks]</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate... | null | null | null | null | null |
15 | 1 | null | 2010-07-28T19:29:17.233 | 9 | 1834 | <p>I've followed the steps outlined in this <a href="http://ubuntuforums.org/showthread.php?t=1493143" rel="noreferrer">HowTo</a>.</p>
<p>Right after I log in to Gnome I can move the mouse back and forth but as soon as the task bar loads, the mouse becomes jailed in the screen its in (can't move between screens).</p>
<p>This is my xorg.conf:</p>
<pre><code> Section "ServerLayout"
Identifier "Layout0"
Screen 0 "DisplayLinkScreen" 0 0
Screen 1 "Screen0" LeftOf "DisplayLinkScreen"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
Option "Xinerama" "0" #Could not get this to work it has to be disable
EndSection
Section "Files"
ModulePath "/usr/local/lib/xorg/modules/drivers"
ModulePath "/usr/lib/xorg/modules/drivers"
ModulePath "/usr/local/lib"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "built-ins"
EndSection
Section "Module"
Load "dbe"
Load "dri"
Load "dri2"
Load "extmod"
Load "glx"
Load "record"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
# Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "SWcursor" # [<bool>]
#Option "ColorKey" # <i>
#Option "CacheLines" # <i>
#Option "Dac6Bit" # [<bool>]
#Option "DRI" # [<bool>]
#Option "NoDDC" # [<bool>]
#Option "ShowCache" # [<bool>]
#Option "XvMCSurfaces" # <i>
#Option "PageFlip" # [<bool>]
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "Core Processor Integrated Graphics Controller"
BusID "PCI:0:2:0"
Option "DPMS"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Monitor"
Identifier "DisplayLinkMonitor"
EndSection
Section "Device"
Identifier "DisplayLinkDevice"
Driver "displaylink"
Option "fbdev" "/dev/fb0"
EndSection
Section "Screen"
Identifier "DisplayLinkScreen"
Device "DisplayLinkDevice"
Monitor "DisplayLinkMonitor"
SubSection "Display"
Depth 24
Modes "1920x1200" "1920x1080" "1680x1050" "1600x1200" "1440x900" "1366x768" "1280x1024" "1280x960" "1280x800" "1280x768" "1152x864" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
</code></pre>
<p>Any help would be appreciated. I'm so close to getting this to work!</p>
| 71 | 75762 | 2012-07-14T10:58:08.943 | 2016-12-30T17:55:08.803 | What might prevent mouse movements between xrandr screens? | [
"10.04",
"mouse",
"xrandr",
"displaylink"
] | 3 | 1 | CC BY-SA 3.0 | [
{
"creationDate": "2010-08-03T01:16:24.050",
"id": "687",
"postId": "15",
"score": "0",
"text": "@Tim\n\nGood luck my friend. I still haven't gotten it to work. Hopefully the driver gods will smile upon you.",
"userDisplayName": null,
"userId": "71"
}
] | null | [
{
"accepted": null,
"body": "<p>My best guess here is that the position of the right screen is causing the problems. You could try modifying the ServerLayout section like this:</p>\n\n<pre><code>Section \"ServerLayout\"\n Identifier \"Layout0\"\n Screen 0 \"Screen0\" 0 0\n S... | null | null | null | null | null |
16 | 1 | 79 | 2010-07-28T19:30:10.117 | 17 | 1235 | <p><a href="http://sagemath.org/download-linux.html" rel="nofollow">Sage's installation instructions</a> basically tell me to just untar it and run it from wherever I'd like. Not being experienced with the Linux way of where things should go in the filesystem, I'm kind of at a loss where I should best put it. Putting it somewhere in my home directory feels wrong.</p>
<p>Where would you extract it to? <code>/opt</code>?</p>
| 20 | 367165 | 2015-12-14T14:12:11.340 | 2015-12-14T14:12:11.340 | Where should I install sagemath? | [
"software-installation"
] | 3 | 0 | CC BY-SA 3.0 | [] | {
"accepted": true,
"body": "<p>The Linux <a href=\"http://www.pathname.com/fhs/pub/fhs-2.3.html\">Filesystem Hierarchy Standard</a> that is part of the Linux Standard Base recommends to use /opt. I have only had good experience with that. Many commercial packages go into opt as well and stay to their own folder in there. </p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2010-07-28T20:03:01.537",
"id": "79",
"lastActivityDate": "2013-03-29T04:16:14.047",
"lastEditDate": "2013-03-29T04:16:14.047",
"lastEditorDisplayName": null,
"lastEditorUserId": "65926",
"ownerDisplayName": null,
"ownerUserId": "103",
"parentId": "16",
"postTypeId": "2",
"score": "14"
} | [
{
"accepted": null,
"body": "<p>/opt is a viable option. Some people install it under /usr/local/</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2010-07-28T19:36:59.773",
"id": "13",
"postId": "23",
"score": "0",
"text": "Using /opt helps ... | null | null | null | null | null |
24 | 1 | 65 | 2010-07-28T19:32:26.087 | 15 | 1169 | <p>In the upper right panel there is by default a drop down menu where you can set your online status, interact with Ubuntu One, etc. It is placed right next to the drop down menu which lets you logout, reboot, shutdown etc.</p>
<p>For me personally I have no use for the online status menu, so I usually remove it. The problem is that it seems to belong to the same panel applet as the actually wanted logout menu, since that menu too disappears. I believe we are talking about the "Indicator Applet Session".</p>
<p>Is there some way I can hide or disable the online status menu, but still keep the neighboring logout menu?</p>
<p>I am running Ubuntu 10.04.</p>
| 24 | 235 | 2010-10-24T13:16:15.010 | 2010-10-24T13:16:15.010 | Remove online status menu, but keep the logout menu? | [
"10.04",
"indicator",
"panel",
"applet"
] | 1 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>Open the \"Ubuntu Software Center\" (under the Applications menu). Search for \"indicator-me\" and remove it. Log out and back in to see the change.</p>\n\n<p>This will remove it for all users on your system. I don't believe there's a way to merely hide it for yourself.</p>\n",
"commentCount": "2",
"comments": [
{
"creationDate": "2010-07-28T19:58:18.960",
"id": "54",
"postId": "65",
"score": "0",
"text": "Yes, removing the package indicator-me gave me exactly the panel I wanted. Thanks!",
"userDisplayName": null,
"userId": "24"
},
{
"creationDate": "2010-08-01T17:02:43.353",
"id": "629",
"postId": "65",
"score": "5",
"text": "Just for completeness, if you want to remove the \"chat\" option from the applet, you need to remove the package indicator-messages.",
"userDisplayName": null,
"userId": "133"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2010-07-28T19:52:47.473",
"id": "65",
"lastActivityDate": "2010-07-28T19:52:47.473",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "12",
"parentId": "24",
"postTypeId": "2",
"score": "9"
} | [
{
"accepted": true,
"body": "<p>Open the \"Ubuntu Software Center\" (under the Applications menu). Search for \"indicator-me\" and remove it. Log out and back in to see the change.</p>\n\n<p>This will remove it for all users on your system. I don't believe there's a way to merely hide it for yourself.</p... | null | null | null | null | null |
28 | 1 | 39 | 2010-07-28T19:35:09.530 | 16 | 265 | <p>I'm using Hardy (server) on quite a few machines and I'd like to upgrade to the latest LTS. Is it safe to edit my <code>sources.list</code> file to just point to the new LTS, or should I do a succession of dist upgrades until I reach the latest LTS?</p>
| 50 | null | null | 2012-05-18T12:37:08.610 | Sane path to distribution upgrades | [
"upgrade",
"lts"
] | 2 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<p>No. You should never just edit <code>sources.list</code>. Use the update-manager, or if you use command line, use <code>do-release-upgrade</code>. You can upgrade safely from LTS editions to other LTS editions, or otherwise, you need to step via each release. Only those pathways are supported, and prevent some issues that can otherwise occur with improper upgrades.</p>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2010-07-28T19:40:21.497",
"id": "39",
"lastActivityDate": "2012-05-18T12:37:08.610",
"lastEditDate": "2012-05-18T12:37:08.610",
"lastEditorDisplayName": null,
"lastEditorUserId": "54298",
"ownerDisplayName": null,
"ownerUserId": "4",
"parentId": "28",
"postTypeId": "2",
"score": "11"
} | [
{
"accepted": true,
"body": "<p>No. You should never just edit <code>sources.list</code>. Use the update-manager, or if you use command line, use <code>do-release-upgrade</code>. You can upgrade safely from LTS editions to other LTS editions, or otherwise, you need to step via each release. Only those pathw... | null | null | null | null | null |
33 | 1 | 44 | 2010-07-28T19:37:07.560 | 24 | 9076 | <p>We have installed Ubuntu desktop edition on our development server. Now that we have it in a data center we would like to strip it down to a server edition.</p>
<p>Is there an easy way of doing so rather than just going in and uninstalling packages by hand?</p>
| 82 | 67335 | 2014-08-05T03:42:40.063 | 2019-06-03T21:32:08.910 | What is the easiest way to strip a desktop edition to a server edition? | [
"server"
] | 4 | 2 | CC BY-SA 3.0 | [
{
"creationDate": "2012-05-05T20:23:09.667",
"id": "157429",
"postId": "33",
"score": "2",
"text": "Re-installing is best: the server CD has kernel params set that the desktop is lacking (you can get them ofcourse with the desktop too but it is more work then a re-install ;))",
"userDisplayN... | {
"accepted": true,
"body": "<p>It's possible to do it the other way around, but I've never seen anyone who was able to do this simply by installing a metapackage or something.</p>\n\n<p>Your best bet is either:</p>\n\n<ul>\n<li>a clean install</li>\n<li>manually removing unneeded packages and installing the server components you need</li>\n</ul>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2010-07-29T01:48:21.860",
"id": "182",
"postId": "44",
"score": "1",
"text": "A clean install is the way to go, but if you want to manually remove packages, run \ndpkg --get-selections \"*\" >~/applications.txt\nand delete what you know you don't need.",
"userDisplayName": null,
"userId": "189"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 2.5",
"creationDate": "2010-07-28T19:41:46.753",
"id": "44",
"lastActivityDate": "2010-07-28T19:41:46.753",
"lastEditDate": null,
"lastEditorDisplayName": null,
"lastEditorUserId": null,
"ownerDisplayName": null,
"ownerUserId": "5",
"parentId": "33",
"postTypeId": "2",
"score": "15"
} | [
{
"accepted": true,
"body": "<p>It's possible to do it the other way around, but I've never seen anyone who was able to do this simply by installing a metapackage or something.</p>\n\n<p>Your best bet is either:</p>\n\n<ul>\n<li>a clean install</li>\n<li>manually removing unneeded packages and installing th... | null | null | null | null | null |
34 | 1 | 45 | 2010-07-28T19:37:14.843 | 132 | 64883 | <p>I set up a new VPS instance of Ubuntu and am wondering what the easiest way is to get up and running with a basic LAMP stack (i.e. which packages are required, which configuration options need to be tweaked, if any, etc.).</p>
| 68 | 208574 | 2016-12-26T00:34:51.673 | 2019-09-09T13:20:29.110 | What's the easiest way to set up a LAMP stack? | [
"software-installation",
"lamp"
] | 17 | 0 | CC BY-SA 2.5 | [] | {
"accepted": true,
"body": "<pre><code>sudo apt-get update\nsudo apt-get install tasksel\nsudo tasksel install lamp-server\n</code></pre>\n\n<p>It will install all the basic LAMP stack for you, prompt for MySQL root password, etc.</p>\n\n<p>More specifically it will install the following packages, and their dependencies.</p>\n\n<pre><code>mysql-client-core-5.1 libwrap0 apache2 \nlibaprutil1-dbd-sqlite3 tcpd \nlibapache2-mod-php5 apache2.2-common \napache2-utils php5-common \nlibaprutil1-ldap libaprutil1 \nphp5-mysql mysql-server-core-5.1 \nlibdbi-perl libplrpc-perl mysql-server \napache2.2-bin libdbd-mysql-perl \nlibhtml-template-perl \nlibnet-daemon-perl libapr1 \nmysql-server-5.1 libmysqlclient16 \nssl-cert apache2-mpm-prefork \nmysql-common mysql-client-5.1 \n</code></pre>\n\n<p>You might also want to take a peek at the <a href=\"https://help.ubuntu.com/12.04/serverguide/lamp-overview.html\">Ubuntu Server Guide</a>.</p>\n",
"commentCount": "5",
"comments": [
{
"creationDate": "2013-07-21T15:15:01.587",
"id": "410096",
"postId": "45",
"score": "3",
"text": "You might want to consider APT tasks rather than `tasksel` to do this. See this: [Should I use tasksel, tasks in APT or install regular metapackages?](http://askubuntu.com/q/252056/88802)",
"userDisplayName": null,
"userId": "88802"
},
{
"creationDate": "2017-01-31T10:52:54.237",
"id": "1366237",
"postId": "45",
"score": "0",
"text": "@andol how to install phpmyadmin with this",
"userDisplayName": null,
"userId": "638318"
},
{
"creationDate": "2019-01-27T10:20:56.717",
"id": "1837875",
"postId": "45",
"score": "0",
"text": "@andol `E: Package 'php5' has no installation candidate`,\n`E: Package 'libapache2-mod-php5' has no installation candidate`,\n`E: Unable to locate package libapache2-mod-auth-mysql` and \n`E: Package 'php5-mysql' has no installation candidate` How do I over come this?",
"userDisplayName": null,
"userId": "386179"
},
{
"creationDate": "2020-05-12T21:07:07.127",
"id": "2086729",
"postId": "45",
"score": "0",
"text": "The [Ubuntu Server Guide](https://help.ubuntu.com/12.04/serverguide/lamp-overview.html) page returns a 404. Is there a valid URL for it?",
"userDisplayName": null,
"userId": "640732"
},
{
"creationDate": "2020-06-02T10:11:50.683",
"id": "2101333",
"postId": "45",
"score": "1",
"text": "@MikeWaters https://ubuntu.com/server/docs/lamp-applications :)",
"userDisplayName": null,
"userId": "513442"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 3.0",
"creationDate": "2010-07-28T19:41:59.903",
"id": "45",
"lastActivityDate": "2016-03-30T00:31:07.880",
"lastEditDate": "2016-03-30T00:31:07.880",
"lastEditorDisplayName": null,
"lastEditorUserId": "24",
"ownerDisplayName": null,
"ownerUserId": "24",
"parentId": "34",
"postTypeId": "2",
"score": "124"
} | [
{
"accepted": null,
"body": "<p>On commandline the simplest way is probably to use <a href=\"https://help.ubuntu.com/community/Tasksel\">tasksel</a>:</p>\n\n<pre><code>sudo tasksel install lamp-server\n</code></pre>\n",
"commentCount": "0",
"comments": [],
"communityOwnedDate": null,
"conten... | null | null | null | null | null |
36 | 1 | 68 | 2010-07-28T19:39:43.310 | 21 | 23377 | <p>We have installed Ubuntu desktop edition on our dev server.</p>
<p>I was wondering if there is any noticeable performance loss compared to the server edition.</p>
| 82 | 22949 | 2019-07-02T20:08:51.163 | 2022-02-22T04:03:44.930 | What is the performance loss if you run Ubuntu desktop edition on a server machine? | [
"server",
"performance"
] | 7 | 2 | CC BY-SA 4.0 | [
{
"creationDate": "2010-07-29T01:06:13.643",
"id": "178",
"postId": "36",
"score": "2",
"text": "The answers you've got are right, but I also thought I'd note one thing: You say you're running a dev server -- for that particular case, a full GUI can actually be a very good thing, especially if t... | {
"accepted": true,
"body": "<p>As far as I know, there is no performance lost as far as overhead and whatnot. It mostly depends on what you have installed. You can turn desktop Ubuntu into server Ubuntu by installing the same security/monitoring/visualization programs. The server edition just comes with a better set of pre-installed packages suited to a secure, easily maintained server.</p>\n\n<p>Either way, I would recommend NOT installing X server and a desktop environment (GNOME, KDE, etc). This reduces boot time and memory/CPU usage.</p>\n",
"commentCount": "1",
"comments": [
{
"creationDate": "2018-09-30T00:18:26.780",
"id": "1773716",
"postId": "68",
"score": "1",
"text": "Having GUI on servers increases attack vector, too.",
"userDisplayName": null,
"userId": "295286"
}
],
"communityOwnedDate": null,
"contentLicense": "CC BY-SA 4.0",
"creationDate": "2010-07-28T19:54:05.897",
"id": "68",
"lastActivityDate": "2019-07-02T20:11:45.487",
"lastEditDate": "2019-07-02T20:11:45.487",
"lastEditorDisplayName": null,
"lastEditorUserId": "22949",
"ownerDisplayName": null,
"ownerUserId": "91",
"parentId": "36",
"postTypeId": "2",
"score": "21"
} | [
{
"accepted": true,
"body": "<p>As far as I know, there is no performance lost as far as overhead and whatnot. It mostly depends on what you have installed. You can turn desktop Ubuntu into server Ubuntu by installing the same security/monitoring/visualization programs. The server edition just comes with a ... | null | null | null | null | null |