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
2053
1
2055
2010-08-12T16:19:57.170
15
1910
<p>I've just bought a game (Machinarium) which does not come with a deb file neither is it a ./configure, make etc type of application. I can just run it. Where is the best place to put it so i can create a launcher and keep it out of my home directory? </p> <p>i.e. I'm basically asking where are applications are inst...
633
null
null
2011-04-26T18:44:55.593
'Installing' Applications, where to put folders?
[ "filesystem" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T09:31:10.707", "id": "2042", "postId": "2053", "score": "0", "text": "I've left it in home as i've had trouble putting it in opt, the flash files weren't read so I've left it in home at the moment which works with a custom launcher located here \"http://ubuntu.stack...
{ "accepted": true, "body": "<p>Usually you would select <code>/opt</code> or <code>/usr/local</code> as installation path.</p>\n\n<p>You need to use <code>sudo</code> if you want to copy anything into those directories.</p>\n", "commentCount": "9", "comments": [ { "creationDate": "2010-08-12T16:47:46...
[ { "accepted": true, "body": "<p>Usually you would select <code>/opt</code> or <code>/usr/local</code> as installation path.</p>\n\n<p>You need to use <code>sudo</code> if you want to copy anything into those directories.</p>\n", "commentCount": "9", "comments": [ { "creationDate": "201...
null
null
2015-08-23T14:02:34.527
null
null
2054
1
null
2010-08-12T16:22:28.887
2
7462
<p>I'm running a fully updated Ubuntu 9.04 "Jaunty" i686 server. I have an single XFS volume in an LVM group called <code>/dev/mapper/vg0-bigthree</code>.</p> <p>If I boot to single user mode and ensure that the volume is unmounted, I still get the following every time I try to run xfs_check:</p> <pre><code>$ sudo xf...
1143
4
2010-08-12T16:27:49.457
2011-11-27T02:52:58.843
Why won't xfs_check run?
[ "lvm" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Make sure the filesystem isn't listed in /etc/mtab or /proc/mounts as mounted. (I'm not certain which xfs_check looks for). I've seen this occur in cases where a device wasn't cleanly unmounted.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": ...
null
null
2013-03-14T17:04:21.390
null
null
2057
1
2068
2010-08-12T16:45:00.203
6
741
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/116/how-do-i-get-and-install-more-themes-icons-and-pointers">How do I get and install more themes, icons, and pointers?</a> </p> </blockquote> <p>I often find myself seeing new icons but I am unable to install them...
333
-1
2017-04-13T12:23:56.577
2012-02-08T16:21:42.350
How can I install different icons?
[ "icons", "themes", "appearance" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2010-08-12T16:48:18.813", "id": "1949", "postId": "2057", "score": "0", "text": "Icons for what? Do you mean icons used in themes? Or application icons? Which flavor of desktop?", "userDisplayName": null, "userId": "4" }, { "creationDate": "2010-08-12T18:58:34....
{ "accepted": true, "body": "<p>Drag and drop the theme package in the Appearance Preferences window<br>\n (<code>System-&gt;Preferences-&gt;Appearance</code>) <strong>Theme</strong> tab.\n<img src=\"https://i.stack.imgur.com/7WwJn.png\" alt=\"alt text\"></p>\n\n<p><img src=\"https://i.stack.imgur.com/tPldC.png\" a...
[ { "accepted": null, "body": "<p>To add a new icon theme, copy them into the hidden directory (control+h in nautilus to show hidden files) <code>.icons</code> in your home directory.</p>\n\n<p>You should then be able to select them from Appearance Preferences.</p>\n\n<p>If you don't have a <code>~/.icons</co...
null
null
2012-10-03T18:51:19.253
null
null
2058
1
2059
2010-08-12T16:50:48.980
0
530
<p>I'm trying to make a launcher for Mechinarium, Its a flash game with a launcher that runs flash files in separate folders in its directory as far as im aware. I've tried to make a launcher which points towards this executable which runs fine when i click on it. When i try and run it from the launcher the player com...
633
67335
2014-08-05T05:01:21.020
2014-08-05T05:01:21.020
Creating a launcher (for Mechinarium)
[ "games", "flash" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I've had a few issues like this with various things. I find the best way to fix these is to write a little shell script and stick it in <code>~/bin</code>.</p>\n\n<p>Here's what I did for Nexuiz (which had some path issues):</p>\n\n<pre><code>#!/bin/bash\ncd ~/Nexuiz\n./nexuiz-linux-...
[ { "accepted": true, "body": "<p>I've had a few issues like this with various things. I find the best way to fix these is to write a little shell script and stick it in <code>~/bin</code>.</p>\n\n<p>Here's what I did for Nexuiz (which had some path issues):</p>\n\n<pre><code>#!/bin/bash\ncd ~/Nexuiz\n./nexui...
null
null
null
null
null
2064
1
null
2010-08-12T17:12:33.813
19
8059
<p>I know I've seen this documented somewhere before, but what's the option to keep update-manager from prompting for updates except for LTS-to-LTS releases?</p>
1147
null
null
2014-03-16T16:36:28.910
How to only perform LTS upgrades?
[ "update-manager", "lts" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>If you go to Ubuntu &gt; System &gt; Administration &gt; Update Manager, you'll see a Settings... button at the bottom left of the dialog. In the dialog, switch to the Updates tab and uncheck the updates checkboxes and set Release Upgrade to \"Long Term Support Releases Only\...
null
0
null
null
null
2070
1
2117
2010-08-12T18:04:06.733
2
803
<p>I am trying to present a full screen slideshow using OOo Impress, but the top panel stays on top of the slideshow. I went to <code>Slideshow-&gt;Slideshow Settings...</code> and made sure <code>Always on top</code> was checked.</p> <p>How can I fix this?</p>
5
null
null
2010-10-11T02:38:13.070
How to force panel not to be on top?
[ "openoffice.org", "libreoffice", "gnome-panel" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-12T18:59:58.353", "id": "1974", "postId": "2070", "score": "0", "text": "Have you tried selecting the window `Right Click > Always On Top`?", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-08-12T19:17:58.840", "id": "1977", "...
{ "accepted": true, "body": "<p>Unfortunately this is a bug in Ubuntu and there is no fix available yet.</p>\n\n<p>The bug is tracked <a href=\"https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/525807\" rel=\"nofollow\">here</a> but unfortunately most of the workarounds didn't work for me. Feel free to ...
[ { "accepted": null, "body": "<p>There are two things you can do:</p>\n\n<ol>\n<li><p><code>F11</code> that puppy before you full screen. I hopefully that will help with the panel.</p></li>\n<li><p>If not I believe <a href=\"http://ubuntuforums.org/showthread.php?t=1313657\" rel=\"nofollow\">this thread</a> ...
null
null
null
null
null
2071
1
4973
2010-08-12T18:12:21.070
2
1811
<p>I am running UNR (but using the regular gnome launcher) and have DropBox installed. Since I use my laptop on the train, there is no network connectivity. However once I reconnect to a network, dropbox seems to be completely unresponsive to the fact that there is a network connection and has to be restarted (which me...
1151
1151
2010-08-13T19:26:22.170
2011-04-06T00:04:34.923
Dropbox reconnect on network connection established
[ "10.04", "networking" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-12T18:56:21.323", "id": "1971", "postId": "2071", "score": "1", "text": "I run Dropbox on my Ubuntu/Gnome Desktop (10.04), and I've had quite a few local LAN outages lately. Dropbox has recovered on it's own every time. Perhaps this isn't a dropbox-specific problem?", ...
{ "accepted": true, "body": "<p>Due to lack of response I am going to assume that this is a problem with Dropbox itself and not Ubuntu.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-30T15:39:21.100", "id": "4973", "l...
[ { "accepted": null, "body": "<p>Does it still happen if you just disconnect your network cable then reconnect without suspending? If not, you may have a timing problem like the dropbox process already being suspended when the network goes down. You could try putting a script into <code>/etc/pm/sleep.d</co...
null
null
null
null
null
2073
1
2074
2010-08-12T18:25:22.183
10
6312
<p>I have to say, firefox on ubuntu's performance is attrocious. Very quickly it gets into 100% cpu use (thank god I have multiple cores) and hundreds of megs of ram. Even closing tabs does not help the issue (unless google.com uses supreme amounts of javascript).</p> <p>On the same machine chromium browser runs light...
1151
1151
2010-08-13T14:59:10.560
2016-05-24T18:02:17.270
Firefox Slow Performance
[ "performance", "firefox", "browser" ]
4
5
CC BY-SA 2.5
[ { "creationDate": "2010-08-12T18:41:46.797", "id": "1968", "postId": "2073", "score": "6", "text": "Please rephrase as a question. Do you want to know why it is slow? How to fix it? What alternatives there are (you seem to know this already)?", "userDisplayName": null, "userId": "667" ...
{ "accepted": true, "body": "<p>I can't replicate the issues you're detailing - this seems very odd to me (and I'm speaking on the level of testing on multiple machines. This likely may be something particular with your setup.</p>\n\n<p>Here are a few things that can contribute to poorer performance on a machine:</...
[ { "accepted": true, "body": "<p>I can't replicate the issues you're detailing - this seems very odd to me (and I'm speaking on the level of testing on multiple machines. This likely may be something particular with your setup.</p>\n\n<p>Here are a few things that can contribute to poorer performance on a ma...
null
null
null
null
null
2075
1
2078
2010-08-12T19:12:51.333
122
133724
<p>I've been managing server installations both on and off Ubuntu flavor for some time - I've become quite adjusted to <code>/etc/init.d/</code> for restarting servcies. Now I get this message:</p> <pre><code>root@tatooine:~# /etc/init.d/mysql status Rather than invoking init scripts through /etc/init.d, use the servi...
41
235
2012-01-17T19:51:37.987
2016-11-03T18:54:03.333
What's the difference between "Service" and "/etc/init.d/"?
[ "upstart", "services" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2011-06-08T15:55:34.270", "id": "52707", "postId": "2075", "score": "3", "text": "The [Upstart Cookbook](http://upstart.ubuntu.com/cookbook/#design-history) contains a good explanation of the rational for switching.", "userDisplayName": null, "userId": "1859" } ]
{ "accepted": true, "body": "<p><code>/etc/init.d</code> scripts are the old way of doing things. They come from the System V standard. However, those scripts are fired only in a particular sequence, so no real dependencies can be established.</p>\n\n<p>Therefore, upstart has been developed with the intent to subst...
[ { "accepted": true, "body": "<p><code>/etc/init.d</code> scripts are the old way of doing things. They come from the System V standard. However, those scripts are fired only in a particular sequence, so no real dependencies can be established.</p>\n\n<p>Therefore, upstart has been developed with the intent ...
null
null
null
null
null
2076
1
3054
2010-08-12T19:15:56.817
5
202
<p>I have a couple of VMs running on images instead of lvms. I am not concerned about downtime but just about convenience of the process.</p>
4
527764
2020-08-11T08:30:58.470
2020-08-11T08:30:58.470
What is the best way to convert or copy an VM image into an lvm?
[ "lvm", "conversion" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-20T07:59:14.090", "id": "2687", "postId": "2076", "score": "0", "text": "Do you want to keep snapshots or such? Because otherwise you can use the same tools you would use to copy any other image or its contents (= backup & restore)...", "userDisplayName": null, ...
{ "accepted": true, "body": "<p>There is a short discussion at <a href=\"https://serverfault.com/questions/33858/is-it-possible-to-convert-a-vmware-vmdk-image-file-to-phyaical-hardisk-drive\">serverfault</a>, hope it helps :-)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "content...
[ { "accepted": true, "body": "<p>There is a short discussion at <a href=\"https://serverfault.com/questions/33858/is-it-possible-to-convert-a-vmware-vmdk-image-file-to-phyaical-hardisk-drive\">serverfault</a>, hope it helps :-)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": nu...
null
null
null
null
null
2081
1
null
2010-08-12T20:25:46.743
1
840
<p>I recently upgraded to 10.04. Before the upgrade, I was using multiple windows, and I was able to drag applications across the windows. But, now the windows are locked. Further, the icon of the maximized window is not showing. Just a generic window icon.</p>
1087
15811
2011-08-14T08:24:17.363
2011-08-14T08:24:17.363
Unable to switch between windows
[ "10.04", "workspaces", "drag-and-drop" ]
4
3
CC BY-SA 2.5
[ { "creationDate": "2010-08-12T20:27:06.100", "id": "1993", "postId": "2081", "score": "0", "text": "do you mean monitors?", "userDisplayName": null, "userId": "333" }, { "creationDate": "2010-08-12T20:36:48.353", "id": "1995", "postId": "2081", "score": "0", "text...
null
[ { "accepted": null, "body": "<p>If you meant monitors. </p>\n\n<p>System > Preferences > Monitors</p>\n\n<p>Make sure they are on and same Image on monitors is checked off. </p>\n\n<p>If you meant workspace you can move any application by right clicking on the task bar and assigning it to the desired worksp...
null
null
2013-03-14T17:04:26.320
null
null
2093
1
2096
2010-08-12T21:33:31.230
42
117710
<p>After installing Ubuntu server how do I install the desktop environment? </p>
1046
186134
2014-08-03T16:24:06.227
2020-10-26T02:32:24.873
How to install GUI desktop on a server?
[ "system-installation", "package-management" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Depending on which desktop you wish to install, you install the the meta-package that installs all the necessary packages. You can use <code>apt-get</code> or <code>aptitude</code> to do this.</p>\n\n<pre><code>sudo apt-get install ubuntu-desktop\n</code></pre>\n\n<p>installs the Uni...
[ { "accepted": null, "body": "<pre><code>sudo apt-get install ubuntu-desktop\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-12T21:35:11.293", "id": "2094", "lastActivityDate": "2010-08-...
null
null
null
null
null
2099
1
2101
2010-08-12T22:16:06.973
85
120104
<p>With previous versions of Ubuntu (using Ext3 filesystem) I used to tune it for better performance with noticeable results by setting the <code>noatime</code> parameter in <code>/etc/fstab</code>.</p> <p>Is it still worth it to do that with the Ext4 filesystem, which is now default in Ubuntu? If so, does the procedu...
431
431
2010-08-12T22:36:07.437
2013-03-02T17:22:32.083
Is it worth to tune Ext4 with noatime?
[ "filesystem", "performance", "ext4" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>On Ubuntu 10.04, <code>relatime</code> is part of the default mount options, unless overridden in <code>/etc/fstab</code>. The previous few releases had <code>relatime</code> explicitly in <code>/etc/fstab</code>. <code>relatime</code> gives the same speed (and flash write cycle cons...
[ { "accepted": true, "body": "<p>On Ubuntu 10.04, <code>relatime</code> is part of the default mount options, unless overridden in <code>/etc/fstab</code>. The previous few releases had <code>relatime</code> explicitly in <code>/etc/fstab</code>. <code>relatime</code> gives the same speed (and flash write cy...
null
null
null
null
null
2103
1
2104
2010-08-12T23:12:39.350
0
6760
<p>I am having a dependency problem dpkg installing <a href="http://www.webmin.com/download.html" rel="nofollow">webmin</a> 1.510 (deb) package on Ubuntu 10.04.</p> <p>I do not know where to look to find info about what dependencies are needed.</p>
1046
186134
2015-08-17T12:01:03.117
2016-09-13T10:54:16.120
Installation:Troubleshooting webmin dependencies
[ "apt", "dpkg", "dependencies" ]
1
2
CC BY-SA 3.0
[ { "creationDate": "2010-08-20T08:17:34.017", "id": "2689", "postId": "2103", "score": "0", "text": "Please do remember that using Webmin on Ubuntu is not recommended or supported (and the webmin package was removed from the official Debian/Ubuntu repositories because of several quality issues wi...
{ "accepted": true, "body": "<p>The answer for dependencies is actually listed here: <a href=\"http://www.webmin.com/deb.html\" rel=\"nofollow\">http://www.webmin.com/deb.html</a></p>\n\n<blockquote>\n <p>If Debian complains about missing\n dependencies, you can install them\n with the command :</p>\n \n <p><c...
[ { "accepted": true, "body": "<p>The answer for dependencies is actually listed here: <a href=\"http://www.webmin.com/deb.html\" rel=\"nofollow\">http://www.webmin.com/deb.html</a></p>\n\n<blockquote>\n <p>If Debian complains about missing\n dependencies, you can install them\n with the command :</p>\n \...
null
null
null
null
null
2109
1
2111
2010-08-13T00:22:45.837
1
1677
<p>I'm new to Ubuntu in general (using 10.04) and from the default Ubuntu desktop after a default Ubuntu desktop install, cannot find the file system explorer program in the top application menu. </p> <p><strong>UPDATE:</strong> I want to see the <strong>complete</strong> file system, not just My Documents, My Pics,...
1046
367165
2015-06-25T18:19:50.553
2015-06-25T18:19:50.553
Finding the file system explorer application in a default desktop install?
[ "filesystem" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Usually you would want to access the items in the Places menu located to the right of Applications in the top left corner of the screen. </p>\n\n<p>The \"Computer\" option will give you a view of the removable storage devices on your computer (CD drive, USB drives, etc.) as well as t...
[ { "accepted": true, "body": "<p>Usually you would want to access the items in the Places menu located to the right of Applications in the top left corner of the screen. </p>\n\n<p>The \"Computer\" option will give you a view of the removable storage devices on your computer (CD drive, USB drives, etc.) as w...
null
null
null
null
null
2110
1
2113
2010-08-13T00:28:15.717
4
3303
<p>I've got Samba installed on Ubuntu 10.04 and am about to configure it using webmin, but I just realized I don't know the best place to create a file share on a Linux system. </p> <p>I want to use best practice as to not accidentally create a security risk or put a share in an unconventional place where an experien...
1046
1046
2010-08-13T00:42:16.733
2019-05-29T11:36:36.133
Where's the best place to share files from?
[ "filesystem", "windows", "sharing", "samba" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Often configurations are done that allow every user to have a <code>public</code> folder in their home directory. This way every user has control over their public files and no system files will ever be accessible there.</p>\n", "commentCount": "1", "comments": [ { "cre...
[ { "accepted": true, "body": "<p>Often configurations are done that allow every user to have a <code>public</code> folder in their home directory. This way every user has control over their public files and no system files will ever be accessible there.</p>\n", "commentCount": "1", "comments": [ ...
null
null
null
null
null
2115
1
2116
2010-08-13T01:17:51.793
33
19645
<p>I reformatted a hard drive to ext4, planning to use it as a backup drive. After mounting the freshly-formatted drive, I discovered a single empty directory inside it: lost+found. What's the purpose of this mysterious directory?</p>
108
4
2010-08-13T01:32:43.007
2011-08-28T20:34:05.987
What's lost+found and where did it come from?
[ "filesystem", "fsck" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><code>lost+found</code> is the directory in which <code>fsck</code> (filesystem check) will put files it restores from orphaned blocks. This can happen when something corrupts filesystem meta-blocks (also called i-nodes) in which the references of the blocks are stored which contain ...
[ { "accepted": true, "body": "<p><code>lost+found</code> is the directory in which <code>fsck</code> (filesystem check) will put files it restores from orphaned blocks. This can happen when something corrupts filesystem meta-blocks (also called i-nodes) in which the references of the blocks are stored which ...
null
null
null
null
null
2118
1
null
2010-08-13T01:43:00.953
4
12550
<p>I've been given some RPM files on CD and want to install them in Ubuntu (10.04) Desktop using a GUI app. Is there a way for me to do this without resorting to the command line? </p> <p>I'd like to know what GUI app to use, and also <strong>how</strong> to install an RPM with it.</p>
1046
67335
2014-08-05T05:03:46.127
2014-08-05T05:03:46.127
How to install an RPM using a GUI tool in Ubuntu Desktop?
[ "software-installation", "package-management", "gui" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Ubuntu is Debian based and therefore uses<code>.deb</code> packages to install. If you want to install <code>.rpm</code> packages, you first should convert them into <code>.deb</code> packages with a conversion software such as <code>alien</code>. Then you can use <code>gdebi...
null
null
null
null
null
2126
1
6272
2010-08-13T03:00:06.323
9
3034
<p>When I plug in an external USB drive, it automatically mounts and it's accesible in /media/disk/</p> <p>However after a while, this is how my /media directory looks like:</p> <pre><code>cesar@minas-tirith:~$ ls /media/ 0BC7-569E 0BC7-569E_ disk disk_ disk__ disk___ </code></pre> <p>As you can see, the <code>...
45
null
null
2017-11-09T20:20:01.317
Why does the mount point keeps changing, and how can I prevent it?
[ "filesystem", "mount", "usb-drive" ]
4
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T03:08:13.603", "id": "2021", "postId": "2126", "score": "1", "text": "Open System → Administration → Log File Viewer and look through the logs for more debug info. Try to plug and unplug the USB drive and see what info you find in the logs. It might pinpoint the cau...
{ "accepted": true, "body": "<p>For a long-term fix, you could add the drive to /etc/fstab with a designated mountpoint. I recommend using the UUID to identify the drive.</p>\n\n<p>Bonus tip:</p>\n\n<p>If you want the icon to be displayed when the drive is mounted, set the mountpoint somewhere within /media/. If yo...
[ { "accepted": null, "body": "<p>You can work around this, by unplugging the USB drive, and the going to a terminal (e.g. Application->Accessories->Terminal) and entering:</p>\n\n<pre><code>sudo rmdir /media/disk\nsudo rmdir /media/disk_\nsudo rmdir /media/disk__\nsudo rmdir /media/disk___\netc\n</code></pre...
null
null
null
null
null
2127
1
2128
2010-08-13T03:16:36.017
1
314
<p>I'd like to change the web browser shown on the application launcher, from Firefox to Chrome. </p> <p>This setting obviously differs from the default web browser known to the system because I already set Chrome as the default and it launches links instead of Firefox.</p>
1046
527764
2017-03-28T07:53:13.850
2017-03-28T07:53:33.133
Change web browser shown in the Ubuntu Desktop application launcher?
[ "browser", "default-programs" ]
1
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Locate Chrome In <strong>Applications → Internet</strong>, right click on it and select <strong>Add launcher to panel</strong>.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-13T03:25:06.523", "id": "2022", "postId": "2128", "sco...
[ { "accepted": true, "body": "<p>Locate Chrome In <strong>Applications → Internet</strong>, right click on it and select <strong>Add launcher to panel</strong>.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-13T03:25:06.523", "id": "2022", "postId"...
null
null
null
null
null
2130
1
2133
2010-08-13T04:01:15.947
11
935
<p>Not Ubuntu,I heard it on Planet Ubuntu but google doesn't tell me anything.</p> <p>It is something related to Debian.</p>
305
4
2010-08-13T13:32:24.277
2010-08-13T13:35:07.843
What is Utnubu?
[ "debian" ]
3
6
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T14:57:21.203", "id": "2080", "postId": "2130", "score": "0", "text": "@garbagecollector yes, apparently.", "userDisplayName": null, "userId": "252" }, { "creationDate": "2010-08-13T14:58:20.390", "id": "2081", "postId": "2130", "score": "...
{ "accepted": true, "body": "<p>Do you mean <a href=\"http://wiki.debian.org/Utnubu\">this</a>?</p>\n\n<blockquote>\n <p>One of Ubuntu's activities is frequently redistributing packages originally from Debian to Ubuntu's users. Well, Utnubu is about the reverse, copying packages from Ubuntu to Debian.</p>\n</block...
[ { "accepted": null, "body": "<p>It's the effort to work together with Debian. Check out the #debian-ubuntu channel on OFTC</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-13T04:10:32.130", "id": "213...
null
null
null
null
null
2134
1
2136
2010-08-13T04:17:10.923
2
2896
<p>Anything including games and obscure software</p>
305
9781
2011-10-10T18:15:55.193
2011-10-10T18:15:55.193
What are some commercial apps for Ubuntu?
[ "paid-applications", "commercial" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-14T18:03:08.797", "id": "2208", "postId": "2134", "score": "3", "text": "What's the purpose of this question? Are you looking for examples on how to sell commercial software for Ubuntu?", "userDisplayName": null, "userId": "108" } ]
{ "accepted": true, "body": "<p>Now, I'm assuming that by \"commercial\" you mean \"for-pay\" with no implications regarding Free/Non-Free.</p>\n\n<p>The <a href=\"http://shop.canonical.com/index.php?cPath=19\" rel=\"nofollow\">Canonical Store</a> sells Parallels and PowerDVD. There are Linux versions of Quake and...
[ { "accepted": true, "body": "<p>Now, I'm assuming that by \"commercial\" you mean \"for-pay\" with no implications regarding Free/Non-Free.</p>\n\n<p>The <a href=\"http://shop.canonical.com/index.php?cPath=19\" rel=\"nofollow\">Canonical Store</a> sells Parallels and PowerDVD. There are Linux versions of Q...
2010-08-13T04:17:10.923
null
null
null
null
2140
1
2143
2010-08-13T05:34:22.553
20
15564
<p>Is there a way to turn gvim into fullscreen mode? I know that this is possible on OS X through MacVim, but wasn't able to find a way to do it on Ubuntu.</p>
234
null
null
2022-09-02T21:12:00.460
Is there a way to turn gvim into fullscreen mode?
[ "gnome", "vim" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>With gnome you can set a shortucut to the \"fullscreen\" action. Use gnome-keybinding-properties, select Window Managaer and choose Change to Fullscreen, then select a shorcut (F11 for example). This shortcut will set the current Gnome Window in fullscreen mode.</p>\n\n<p>This doesn'...
[ { "accepted": true, "body": "<p>With gnome you can set a shortucut to the \"fullscreen\" action. Use gnome-keybinding-properties, select Window Managaer and choose Change to Fullscreen, then select a shorcut (F11 for example). This shortcut will set the current Gnome Window in fullscreen mode.</p>\n\n<p>Thi...
null
null
null
null
null
2145
1
null
2010-08-13T07:00:16.267
16
8106
<p>I'd like to listen to music on my home server from work. Both are Ubuntu boxes running pulseaudio. It seems from researching that applications communicate to the PA server via TCP on port 4317, so I figured it should be as easy as:</p> <pre><code>me@work: ssh -YR 4317:localhost:4317 me@home </code></pre> <p>At thi...
407
null
null
2010-08-13T15:48:15.240
How can I use pulseaudio over ssh?
[ "ssh", "pulseaudio" ]
0
6
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T07:59:16.483", "id": "2035", "postId": "2145", "score": "0", "text": "sounds like rhythmbox either isn't configured to play via pulseaudio (from what I know it goes via gstreamer so I'm not really sure where this config setting would be), or its connecting to a loca...
null
[]
null
null
2016-02-21T17:07:00.277
null
null
2146
1
2149
2010-08-13T07:55:37.973
5
6933
<p>I need to boot Ubuntu in a computer (computer A) with no CD. I have a 16 Gb pendrive with a live Ubuntu version. The pendrive works in at least two newer computers. Computer A boots from a 2Gb pendrive right. So it's likely a BIOS issue.</p> <p>But it's quite inconvenient to always carry two pendrives, how can I ma...
211
235
2010-10-17T16:48:39.473
2021-04-18T19:41:19.620
How can I boot from a 16 Gb pendrive with some old BIOS?
[ "boot", "live-usb" ]
7
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T16:39:29.070", "id": "2090", "postId": "2146", "score": "0", "text": "Looks like I would need to carry a second stick. Thanks to all.", "userDisplayName": null, "userId": "211" } ]
{ "accepted": true, "body": "<p>Very often you can run in to problems with high-capacity usb-sticks and old hardware, most of the time the it is only BIOS that seems to be the problem. So if the BIOS can be upgraded then try that.</p>\n\n<p>The only other solution (afaik) is to kickstart usb-booting from a floppy-d...
[ { "accepted": true, "body": "<p>Very often you can run in to problems with high-capacity usb-sticks and old hardware, most of the time the it is only BIOS that seems to be the problem. So if the BIOS can be upgraded then try that.</p>\n\n<p>The only other solution (afaik) is to kickstart usb-booting from a ...
null
null
null
null
null
2147
1
null
2010-08-13T07:55:49.877
4
5023
<p>Some files/inodes are deleted during filesystem check if corrupted in a way after a system crash. fsck only reports "some inodes were deleted". Is it possible to know exactly what files were deleted and how to recover them?</p>
927
4
2010-08-13T13:30:39.540
2010-09-07T16:02:57.610
Is it possible to find out which files are deleted during a filesystem recovery check?
[ "filesystem", "fsck" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Check in your <code>/var/log/fsck/</code> directory the file <code>checkfs</code>. It is the logfile of fsck.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-02-13T19:48:36.597", "id": "28727", "postId": "2148", ...
null
null
null
null
null
2150
1
2176
2010-08-13T08:44:00.683
7
342
<p>The system is a spare Dell 2400 I wiped clean, with Ubuntu 10.4 installed. Update manager has everything current, and I haven't been mucking with drivers or tricky system settings. In fact, it has been a stable and friendly system to install and use.</p> <p>So imagine my surprise when browsing to <a href="http://el...
504
17739
2011-10-27T18:38:37.603
2011-10-27T18:38:37.603
Accessing a specific URL with firefox 3.6 on Ubuntu 10.4 crashed the OS, how should I debug this?
[ "xorg", "drivers", "debug", "kernel" ]
3
2
CC BY-SA 3.0
[ { "creationDate": "2010-08-13T13:01:45.220", "id": "2057", "postId": "2150", "score": "0", "text": "The website loads fine on my Thinkpad T1. ATI graphics and Firefox 3.6.3.", "userDisplayName": null, "userId": "130" }, { "creationDate": "2010-08-14T17:57:46.217", "id": "2207...
{ "accepted": true, "body": "<p>Assuming it's a kernel crash you need to capture the kernel dump info, you can try using a kernel net console: <a href=\"https://wiki.ubuntu.com/Kernel/Netconsole\">https://wiki.ubuntu.com/Kernel/Netconsole</a></p>\n", "commentCount": "3", "comments": [ { "creationDate"...
[ { "accepted": true, "body": "<p>Assuming it's a kernel crash you need to capture the kernel dump info, you can try using a kernel net console: <a href=\"https://wiki.ubuntu.com/Kernel/Netconsole\">https://wiki.ubuntu.com/Kernel/Netconsole</a></p>\n", "commentCount": "3", "comments": [ { ...
null
null
null
null
null
2151
1
2174
2010-08-13T08:56:13.930
13
2676
<p><strong>Evernote</strong> is a cool site for capturing note, tagging it and retrieving it from everywhere. The Web application is nice but I was wondering if anyone knows about a standalone version such as for Windows, Android,... but for Ubuntu ?</p> <p>Thanks !</p>
1176
235
2010-12-30T20:49:26.507
2021-04-16T12:31:19.417
Is there a Evernote client?
[ "software-recommendation", "evernote" ]
13
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I believe they don't have Linux support but here is a cool article on various <a href=\"https://web.archive.org/web/20101201132531/www.linux.com/learn/tutorials/322137-finding-evernote-replacements-for-linux\" rel=\"nofollow noreferrer\">alternatives</a>.</p>\n", "commentCount": "1...
[ { "accepted": null, "body": "<p>I don't think there's a native client :-(</p>\n\n<p>So, your best bet might be to run it in wine. e.g.: <a href=\"http://abbysays.wordpress.com/2008/05/24/how-to-install-evernote-30-on-ubuntu/\" rel=\"nofollow\">http://abbysays.wordpress.com/2008/05/24/how-to-install-evernote...
null
null
null
null
null
2153
1
2156
2010-08-13T09:58:20.300
2
6531
<p>I was wondering does anyone know a way to make some kind of shortcut under Ubuntu that when I click on it, it will open up multiple SSH sessions (or execute other actions) in a tabbed gnome-terminal?</p>
67
7035
2011-06-07T15:18:35.293
2011-06-07T15:18:35.293
Gnome-terminal shortcut open multiple ssh connections in tabs
[ "gnome", "ssh", "gnome-terminal" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Use the following format: \n<code>gnome-terminal --tab -e \"cat /dev/urandom\" --tab -e \"top\"</code></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-13T11:55:01.750", "id": "2051", "postId": "2156", "score": "0", "text": "...
[ { "accepted": true, "body": "<p>Use the following format: \n<code>gnome-terminal --tab -e \"cat /dev/urandom\" --tab -e \"top\"</code></p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-08-13T11:55:01.750", "id": "2051", "postId": "2156", "score"...
null
null
null
null
null
2154
1
2181
2010-08-13T09:58:40.470
2
1500
<p>Having done a fresh install I need to set this up again. We could do with an up to date guide. This might encourage more people to use encryption and signing.</p> <p>I already have a keyring, but others need to know how to do that. That should probably be a separate question. I use KGPG to manage my keys.</p> <p>I...
947
236
2010-08-13T13:41:10.293
2014-04-25T16:48:28.667
Configuring GPG in Kmail
[ "kubuntu", "encryption", "email", "gnupg", "kmail" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T12:44:09.170", "id": "2055", "postId": "2154", "score": "0", "text": "What is the exact error when it fails?", "userDisplayName": null, "userId": "130" }, { "creationDate": "2010-08-13T15:47:19.623", "id": "2084", "postId": "2154", "score...
{ "accepted": true, "body": "<p>You need to put </p>\n\n<pre><code>use-agent\n</code></pre>\n\n<p>in your ~/.gnupg/gpg.conf</p>\n\n<p>I know because Seahorse used to put a blank file there and break things for people using GNOME &amp; KDE together. I wrote the patch that made it properly copy the skeleton file, bu...
[ { "accepted": true, "body": "<p>You need to put </p>\n\n<pre><code>use-agent\n</code></pre>\n\n<p>in your ~/.gnupg/gpg.conf</p>\n\n<p>I know because Seahorse used to put a blank file there and break things for people using GNOME &amp; KDE together. I wrote the patch that made it properly copy the skeleton ...
null
0
null
null
null
2160
1
2165
2010-08-13T12:29:40.807
7
2635
<p>I'd like to make an account for my daughter in which:</p> <ul> <li>Only the <strong>Applications</strong> menu is shown. Maybe <strong>Places</strong>. Definitely no <strong>System</strong>.</li> <li>The <strong>Applications</strong> menu only shows the applications I choose for her (games, education, etc.)</li> ...
175
667
2010-08-13T12:41:29.283
2010-08-13T13:23:12.100
Child-proofing an account
[ "security", "configuration", "parental-controls" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T14:45:18.517", "id": "2074", "postId": "2160", "score": "6", "text": "Completely off-topic, but I recommend computer proofing your kid. It is likely harder, but ultimately provides a better outcome. I mean, don't give her root but Ubuntu user accounts are pretty sel...
{ "accepted": true, "body": "<p>To add the new user, go into System -> Administration -> Users and Groups.\nYou can add a new account from here which you should definitely give limited permissions. I would set the account type to 'Desktop User'.</p>\n\n<p>You can then click on 'Advanced Settings', click the 'User P...
[ { "accepted": true, "body": "<p>To add the new user, go into System -> Administration -> Users and Groups.\nYou can add a new account from here which you should definitely give limited permissions. I would set the account type to 'Desktop User'.</p>\n\n<p>You can then click on 'Advanced Settings', click the...
null
null
null
null
null
2163
1
2172
2010-08-13T12:45:17.203
2
3429
<p>Has anyone got (or can point in the direction of) a nanorc file that contains syntax highlighting for C# and/or ASP.Net?</p>
630
236
2010-08-13T13:36:27.153
2019-09-18T13:38:18.080
Nano syntax highlighting for C# and/or ASP.Net
[ "mono", "nano", "syntax-highlighting", "c#" ]
3
5
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T13:47:08.673", "id": "2068", "postId": "2163", "score": "0", "text": "You probably won't find one for ASP seeing as how it's typically a Windows language and up until recently wasn't able to function on Linux Machine.", "userDisplayName": null, "userId": "41...
{ "accepted": true, "body": "<p>I don't know of an existing highlight for C# in Nano but you could write your own. The syntax for syntax highlighting is pretty simple. Here's the one for Java (which will be very similar to a C# syntax - mainly just different keywords):</p>\n\n<pre><code>## Here is an example for Ja...
[ { "accepted": true, "body": "<p>I don't know of an existing highlight for C# in Nano but you could write your own. The syntax for syntax highlighting is pretty simple. Here's the one for Java (which will be very similar to a C# syntax - mainly just different keywords):</p>\n\n<pre><code>## Here is an exampl...
null
null
null
null
null
2167
1
2169
2010-08-13T13:02:26.870
19
31235
<p>What do I need to setup on a Ubuntu 9.10 server so that a user can build applications of there choice (i.e. ./configure , make &amp;&amp; make install) with out the need for sudo/admin privileges.</p> <p>I just feel its a bit of a security risk having to give a user access to parts of the system they might not need...
1185
455
2010-08-13T13:42:15.190
2010-08-17T08:35:36.703
How to build application without sudo privileges?
[ "security", "build", "compiling", "unprivileged" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If your users use </p>\n\n<pre><code>./configure --prefix=/home/user/opt/\n</code></pre>\n\n<p>Or for cmake projects</p>\n\n<pre><code>cmake -D CMAKE_INSTALL_PREFIX:PATH=/home/user/opt/ ../source/\n</code></pre>\n\n<p>This will install the program in that prefix (instead of the defau...
[ { "accepted": null, "body": "<p>Users can build applications without sudo rights. The only time you need sudo rights is when you want to install something into the system directories.</p>\n\n<p><code>./configure</code> and <code>make</code> work always without sudo rights. <code>make install</code> usually ...
null
null
null
null
null
2177
1
null
2010-08-13T14:22:22.160
0
1140
<p>A while ago I looked at the ext3cow file system. I am interested in getting it running under lucid. I was wondering whether anyone had successfully set it up on their system and could offer any tips? I have had a quick google around but not found any mentions of getting it working under Ubuntu.</p> <p><a href="http...
67
235
2011-02-14T02:22:14.613
2011-07-18T14:21:51.613
How do I use ext3cow?
[ "filesystem" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T14:27:13.163", "id": "2069", "postId": "2177", "score": "0", "text": "What's your question? The documentation on the website says it is transparent to the kernel.", "userDisplayName": null, "userId": "4" }, { "creationDate": "2011-02-19T14:21:38.187"...
null
[ { "accepted": null, "body": "<p>As there website says: </p>\n\n<p>• It is totally modular, requiring no changes to kernel or VFS interfaces</p>\n\n<p>It hasn't been in development for a couple of years. I am doubtful but hopeful give it a try.</p>\n\n<p>Or maybe look at some <a href=\"https://help.ubuntu.co...
null
null
2013-03-14T17:01:48.240
null
null
2182
1
2185
2010-08-13T15:02:18.367
7
5245
<p>Currently whenever I connect an MTP device (my creative zen, or blackberry) rythmbox automatically tries to mount it as a music device and opens up. I just want to be able to connect my device to the usb for charging without having windows popup every time I do.</p> <p>How can I disable this "autoplay" feature?</p>...
1151
449
2010-08-13T16:08:48.597
2014-03-05T21:57:33.670
How can I disable the auto-play feature when MTP device is connected?
[ "mount", "usb", "rhythmbox" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>This is probably a better solution (and more likely to work):</p>\n\n<ol>\n<li>Open up the file manager (<code>nautilus</code>)</li>\n<li>Click Edit -> Preferences</li>\n<li>Click the 'Media' Tab</li>\n<li>Next to 'Music Player', select 'Do Nothing' from the drop down list.</li>\n</o...
[ { "accepted": null, "body": "<p>One possible solution:</p>\n\n<ol>\n<li><p>In Rhythmbox, go to Edit -> Plugins.</p></li>\n<li><p>Untick 'Portable Players - MTP'.</p></li>\n</ol>\n\n<p>I'm not sure if this will work and it will probably mean that you have to manually enable the plugin if you want to listen t...
null
null
null
null
null
2186
1
2193
2010-08-13T15:41:24.647
20
15543
<p>Because I'm lazy.... any time I want to use grep, I want it to be grep -n --colour. Is there a way to permanantly map this?</p>
140
140
2010-08-13T15:55:25.220
2016-05-28T01:42:26.363
Replace grep command with grep -n --colour?
[ "command-line" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-10-13T17:34:25.910", "id": "6770", "postId": "2186", "score": "6", "text": "+1 for \"Because I'm lazy...\". Ever considered a career as a developer? :)", "userDisplayName": null, "userId": "2385" } ]
{ "accepted": true, "body": "<p>In your $HOME/.bashrc file, add:</p>\n\n<pre><code>export GREP_OPTIONS=\"-n --color\"\n</code></pre>\n\n<p>This will work with <code>egrep</code> too and in aliases that use grep.</p>\n\n<p><strong>Update</strong>: GREP_OPTIONS is deprecated from grep 2.21 on and if you use this solu...
[ { "accepted": null, "body": "<p>Edit ~/.bash_aliases\nAdd a line that says:</p>\n\n<pre><code>alias grep='grep -n --color'\n</code></pre>\n\n<p>~/.bash_aliases is automatically included by ~/.bashrc if it exists</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-08-13T2...
null
null
null
null
null
2194
1
null
2010-08-13T16:57:18.827
357
430641
<p>What are your tips for improving overall system performance on ubuntu? Inspired by this <a href="https://askubuntu.com/q/2099">question</a> I realized that some default settings may be rather conservative on Ubuntu and that it's possible to tweak it with little or no risk if you wish to make it faster.</p> <p>This ...
431
-1
2017-04-13T12:24:44.127
2020-04-08T05:00:12.890
How can I improve Ubuntu overall system performance?
[ "performance" ]
37
11
CC BY-SA 3.0
[ { "creationDate": "2010-08-13T17:47:45.110", "id": "2102", "postId": "2194", "score": "46", "text": "It would be a good idea to mention how effective your tip is: how much of an improvement did you **notice**, or even better, **measure**?", "userDisplayName": null, "userId": "1059" }, ...
null
[ { "accepted": null, "body": "<p>Disable automatic startup of any services that are not needed (or even remove the package completely).</p>\n\n<p>A lot of packages start up services automatically. These services then use memory and CPU even they are hardly ever used. It is better in this case, to stop those ...
2010-08-13T16:57:18.827
null
null
null
null
2198
1
2204
2010-08-13T17:21:29.787
6
2026
<p>When I use gnome-terminal the background is annoyingly slightly-transparent. Here you can read the ubuntu.stackexchange.com site through the background.</p> <p><a href="https://i.stack.imgur.com/whsns.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/whsns.png" alt="enter image description here"></...
932
114
2011-02-27T02:55:05.863
2011-09-08T13:21:22.310
How can I make gnome-terminal not transparent?
[ "gnome", "themes", "gnome-terminal", "colors" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The workaround for this is to set it to transparent and pull the bar to maximum. </p>\n\n<p>That should fix your issue. :)</p>\n\n<p>Like so. </p>\n\n<p><img src=\"https://i.stack.imgur.com/Z9snw.png\" alt=\"alt text\"></p>\n", "commentCount": "2", "comments": [ { "crea...
[ { "accepted": null, "body": "<p>I think this is a bug. Many other people have experienced it too. You can read more about it and find workarounds at <a href=\"https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/561370\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug...
null
null
null
null
null
2199
1
2207
2010-08-13T17:24:58.237
0
500
<p>I love the software updater in Ubuntu Desktop and want to configure underlying package managers with other sources of software. Sometimes I run into a new software project that isn't delivered through the updater. I install the software outside the updater but I know there's some way to tell the updater to monitor...
1046
455
2010-08-13T22:11:59.140
2010-08-13T22:11:59.140
Customize software sources for Ubuntu Desktop updater to manage?
[ "package-management", "apt", "updates", "dpkg", "update-manager" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Basically the updater program (update-manager) needs an APT source url, which can be an ftp-server or http-server. But the files on the server needs to be structured in a special way for the updater to work and you can't just add anything to it. These servers are often referred to as...
[ { "accepted": null, "body": "<p>If the outside sources are PPAs, you can simply add them in the Third Party tab. If you're compiling from source or downloading random .deb files from the Internet (not from a PPA page or Debuntu or Medibuntu, which do have full repos), then the Update Manager can't handle t...
null
null
null
null
null
2206
1
2208
2010-08-13T18:21:48.037
4
518
<p>I have to install Ubuntu on a two-screen setup. How should I do that and what are some specific things that I should keep in mind while doing it. Will it break anything?</p> <p>I use an ATI graphics card</p>
87
25863
2012-11-21T22:15:33.993
2012-11-21T22:15:33.993
Using Ubuntu with a two-screen setup
[ "ati", "multiple-monitors" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T18:36:51.080", "id": "2109", "postId": "2206", "score": "1", "text": "Could you please rephrase your question? You say you have a two screen setup, but you're asking how to setup two screens? Also please include what Video Drivers you are using - or you graphics car...
{ "accepted": true, "body": "<p>System -> Preferences -> Monitors gives you a useful graphical interface to easily set this up. This works very well for me using the open source ATI drivers. I doubt you will encounter any great problems (using a fairly mainstream graphics card). If you're using proprietary drivers ...
[ { "accepted": true, "body": "<p>System -> Preferences -> Monitors gives you a useful graphical interface to easily set this up. This works very well for me using the open source ATI drivers. I doubt you will encounter any great problems (using a fairly mainstream graphics card). If you're using proprietary ...
null
null
null
null
null
2209
1
2210
2010-08-13T19:11:16.027
1
1349
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/852/why-are-flash-applications-so-sluggish-in-ubuntu">Why are Flash applications so sluggish in Ubuntu?</a> </p> </blockquote> <p>I have just installed Ubuntu for a friend. He uses 32 bit. When he views YouTube vid...
87
-1
2017-04-12T07:23:19.023
2010-08-13T19:13:40.623
Preventing Video Playing lag in Flash
[ "flash" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>A better video card might help.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-08-13T19:20:26.070", "id": "2119", "postId": "2210", "score": "0", "text": "its probably something around there maybe drivers :)", "userDispl...
[ { "accepted": true, "body": "<p>A better video card might help.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-08-13T19:20:26.070", "id": "2119", "postId": "2210", "score": "0", "text": "its probably something around there maybe drive...
null
null
2010-08-15T20:43:58.203
null
null
2212
1
2232
2010-08-13T20:51:15.243
5
8785
<p>I used <code>mplayer -options url://to/radiostation</code> to listen to internet radio for some time. However I'd like to use another software for this. What do you use and what do you consider the advantages of this software?</p>
236
235
2011-09-17T21:16:57.587
2018-03-18T11:35:53.797
Player for internet radio
[ "software-recommendation", "internet-radio" ]
9
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Try \"Radio Tray\"!\nIt's quite new and active developed. And really small.. <a href=\"http://radiotray.sourceforge.net/\" rel=\"nofollow\">http://radiotray.sourceforge.net/</a></p>\n\n<p>Development Blog: <a href=\"http://linuxsoftware.blogsome.com/category/radio-tray/\" rel=\"nofol...
[ { "accepted": null, "body": "<p>Personally I like to use VLC for most media playing. Since it can play just about anything.</p>\n\n<p>It does internet radio and playing other media streams such as RTP and UDP.</p>\n\n<p><a href=\"http://wiki.videolan.org/What_can_vlc_do%3F#Listen_to_online_radio\" rel=\"nof...
null
null
null
null
null
2214
1
2224
2010-08-13T21:09:09.660
242
752884
<p>In <code>/etc/sudoers</code> I see this:</p> <pre><code># Allow members of group sudo to execute any command after they have # provided their password # (Note that later entries override this, so you might need to move # it further down) %sudo ALL=(ALL) ALL </code></pre> <p>So how do I add a user to that <code>sud...
1196
886656
2018-11-27T20:17:57.767
2019-10-01T18:12:07.757
How do I add a user to the "sudo" group?
[ "sudo", "user-management", "groups" ]
8
3
CC BY-SA 3.0
[ { "creationDate": "2017-05-04T17:27:35.500", "id": "1434871", "postId": "2214", "score": "0", "text": "Is anyone else here trying to get sudo to work with no password on ubuntu 17?", "userDisplayName": null, "userId": "136879" }, { "creationDate": "2018-05-03T22:27:11.760", "...
{ "accepted": true, "body": "<pre><code>sudo usermod -aG sudo &lt;username&gt;\n</code></pre>\n\n<p>The <code>a</code> is very important. Without it they'll be removed from all other groups. You will need to either restart your shell/terminal or log out and back in for this to take effect. </p>\n\n<p>See also: </p>...
[ { "accepted": null, "body": "<p>You can either use the user management GUI for it (same place where you create users), or use <code>sudo adduser &lt;username&gt; sudo</code> in the command line.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2012-03-05T08:27:49.897", ...
null
null
null
null
null
2216
1
4083
2010-08-13T21:11:02.620
4
2394
<p>I've been using Eclipse for quite a while. I just switched from OpenJDK to SunJDK. I went back to using Eclipse, it opened just fine. I added some libraries to my build path of a project, but the error checker was still saying I didn't have it. So I decided to restart Eclipse. After than I can't start eclipse. It do...
1193
66
2010-08-19T15:02:52.060
2010-09-12T23:32:35.603
Can't launch Eclipse
[ "10.04", "64-bit", "eclipse" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-13T21:48:37.360", "id": "2144", "postId": "2216", "score": "1", "text": "`eclipse -consoleLog` might get you some information?", "userDisplayName": null, "userId": "932" }, { "creationDate": "2010-08-13T22:04:14.060", "id": "2148", "postId": "22...
{ "accepted": true, "body": "<p>I used apt-get purge eclipse and then apt-get install eclipse and it still did the same thing. I ended up purging Sun JDK and reinstalling Eclipse and it installed OpenJDK. All works again.</p>\n\n<p>However, I'm a little disappointed that it wasn't working with Sun JDK. Oh well. Wha...
[ { "accepted": null, "body": "<p>there is a log in workspace/.metadata/.plugins/org.eclipse.ui.workbench/log that you can check although I don't think that's going to work in your case. Also what do you mean you reinstalled eclipse? are you using synaptic or just unzipping into a directory? try <code>which e...
null
null
null
null
null
2219
1
2234
2010-08-13T21:23:53.830
323
609146
<p>I just updated the DNS record (<code>ns1</code>, <code>ns2</code>, <code>ns3.myhostingcompany.com</code>) for a site I've got hosted, but I still get the domain registrar parking page.</p> <p>I'd like to see if the problem is Ubuntu's cached DNS records. Is there a way to clear Ubuntu's DNS cache? (if such a thing ...
199
23878
2016-06-02T14:53:20.153
2023-04-27T10:32:28.373
How do I clear the DNS cache?
[ "networking", "dns" ]
17
2
CC BY-SA 3.0
[ { "creationDate": "2014-07-13T12:42:34.320", "id": "665882", "postId": "2219", "score": "1", "text": "Also, check `/etc/hosts`. I've just been sure that the old IP address of my domain was being cached, but only `strace ping example.com` revealed that I forgot to remove the `/etc/hosts` record w...
{ "accepted": true, "body": "<h3>For 18.04 and higher</h3>\n<p>Look at <a href=\"https://askubuntu.com/questions/2219/how-do-i-clear-the-dns-cache/929478#929478\">Mike Shultz' answer</a>.</p>\n<h3>For 11.10 and below</h3>\n<p>Ubuntu doesn't cache dns records by default so unless you've installed a dns cache there i...
[ { "accepted": null, "body": "<p><code>sudo /etc/init.d/nscd restart</code></p>\n\n<p><a href=\"http://www.ubuntugeek.com/howto-clearflush-dns-cache-in-ubuntu.html\">http://www.ubuntugeek.com/howto-clearflush-dns-cache-in-ubuntu.html</a></p>\n\n<p>Also as a note you can check and see if your DNS changes have...
null
null
null
null
null
2226
1
2230
2010-08-13T22:14:47.233
19
13378
<p>I'm also interested in its variants, like kubuntu-desktop. It appears to include GNOME (or KDE) and a bunch of other things. But it's quite large - is there a breakdown of what is included in ubuntu-desktop and exactly what those items are/do?</p>
124
449
2011-01-18T10:21:50.663
2011-01-18T10:21:50.663
What exactly is in ubuntu-desktop?
[ "package-management", "metapackages" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The ubuntu-desktop (and similar) packages are metapackages. That is, they contain no data (besides a small documentation file in the case of the *-desktop packages). But they depend on dozens of other packages that make up each of the Ubuntu flavors.</p>\n\n<p>You can see a complete ...
[ { "accepted": null, "body": "<p><a href=\"http://packages.ubuntu.com/lucid/ubuntu-desktop\" rel=\"nofollow\">Too much to list here!</a></p>\n\n<p>You can click through each package for a detailed description. Note these dependant packages have their own dependencies and some of those have even more.</p>\n",...
null
null
null
null
null
2235
1
null
2010-08-14T00:19:31.550
5
2235
<p>I have an Asus r1f laptop. For some reason, hibernate/sleep isn't working properly at all. Are there any other packages I can use or tweaks I can implement to get this working?</p> <p>I've googled around and this appears to be an issue with some laptops and their need for proprietary drivers. Is this true? Is there...
1200
null
null
2010-11-11T13:36:53.743
How to make hibernate/sleep work on laptops where default setup isn't working?
[ "10.04", "hibernate", "laptop" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You should try <a href=\"http://suspend.sourceforge.net/\" rel=\"nofollow\">µswsusp</a>. From the Wikipedia article:</p>\n\n<blockquote>\n <p>uswsusp (userspace software suspend)\n is a suspend-to-ram and\n suspend-to-disk implementation for the\n Linux operating system, ...
null
null
null
null
null
2236
1
2253
2010-08-14T00:25:44.580
1
1366
<p>When i right click to bring up a menu, for example on the desktop, i have 'open terminal here' which i know should have a terminal icon next to this however it doesn't. Any ideas? I had a poke around in gconf-editor but didn't have much luck (though i didn't try very hard ;)</p> <p>Thanks</p>
633
866
2011-02-20T09:21:59.367
2011-02-27T19:32:54.423
Icons on menus have disappeared
[ "gnome", "nautilus", "icons" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-14T00:45:08.143", "id": "2157", "postId": "2236", "score": "0", "text": "What flavor of Ubuntu are you using?", "userDisplayName": null, "userId": "41" } ]
{ "accepted": true, "body": "<p>In gconf-editor go to desktop -> gnome -> interface and check the checkbox for menus_have_icons. There's also a buttons_have_icons which you may want to enable.</p>\n\n<p>This was a delibrate 'feature' in Gnome 2.28, from which Ubuntu 10.04 for built.</p>\n\n<p>These two options can ...
[ { "accepted": true, "body": "<p>In gconf-editor go to desktop -> gnome -> interface and check the checkbox for menus_have_icons. There's also a buttons_have_icons which you may want to enable.</p>\n\n<p>This was a delibrate 'feature' in Gnome 2.28, from which Ubuntu 10.04 for built.</p>\n\n<p>These two opti...
null
null
null
null
null
2238
1
2241
2010-08-14T00:54:25.880
18
859
<p>I'm an avid developer but I never actually gotten around to setting up my own PPA - how would someone go about this? Common issues encountered? How do I get my source code to be compiled into packages on the PPA?</p>
41
null
null
2010-08-14T02:10:21.540
How can I start my own Repository
[ "package-management", "ppa", "launchpad", "development" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Register on Launchpad like txwikinger said, then you need to generate a GPG key</p>\n\n<pre><code>gpg --gen-key\n</code></pre>\n\n<p>and upload it to Ubuntu's keyserver</p>\n\n<pre><code>gpg --keyserver keyserver.ubuntu.com --publish-keys $KEYID\n</code></pre>\n\n<p>Replacing <code>$...
[ { "accepted": null, "body": "<p>You register for an account in <a href=\"https://launchpad.net\" rel=\"nofollow\">https://launchpad.net</a> on your home page you can start your own ppa. The ppa is hosted on launchpad.</p>\n\n<p>You compile your sources by creating a <code>.deb</code> package and <a href=\"h...
null
null
null
null
null
2243
1
2257
2010-08-14T02:52:13.187
18
73794
<p>I frequently use ccleaner to (<em>cover my tracks</em>), clean up unused data stored on my computer from web traffic and hotfixes on my windows system.</p> <p>I was wondering if there is a piece of software that does the same thing for ubuntu that ccleaner does for windows?</p> <p>Please and thank you.</p>
333
5149
2011-06-11T10:08:01.490
2015-06-20T15:07:22.723
CCleaner equivalent?
[ "software-recommendation" ]
5
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<h1><a href=\"http://bleachbit.sourceforge.net/\" rel=\"noreferrer\">BleachBit</a> (Available in the software center)</h1>\n<blockquote>\n<p>BleachBit quickly frees disk space and tirelessly guards your privacy. Free cache, delete cookies, clear Internet history, shred temporary files, ...
[ { "accepted": null, "body": "<p>Computer Janitor can clean up old kernels and a bunch of other stuff. For history/cookies/etc, I like to just set Firefox to delete all that every time I close the browser.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2012-08-27T08:02:5...
null
null
null
null
null
2246
1
null
2010-08-14T03:44:51.737
19
31700
<p>Is there a feature (or aptitude package) in Ubuntu 10.04 that will wake my computer up from standby when it gets an ssh (or other webrequest).</p> <p>I've been trying to put my computer in hibernate/standby when I'm not running code in an effort to "go green" at my university. However, I often need to ssh into my ...
1215
87
2010-08-15T20:39:42.567
2015-03-09T19:28:05.840
Wake from hibernate on ssh request
[ "10.04", "networking", "ssh", "suspend", "hibernate" ]
5
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>I believe here it the <a href=\"http://wiki.xbmc.org/index.php?title=HOW-TO_set_up_Wake-On-Lan_%28Ubuntu%29\" rel=\"nofollow\">link</a> that would help you out :) </p>\n\n<p>There are clear instructions for setting up to WOL (wake on lan)</p>\n", "commentCount": "3", ...
null
null
null
null
null
2251
1
null
2010-08-14T04:50:28.220
3
2098
<p>I had a problem with my Ubuntu 10.04 that automatically log off while working,Even i working with Excel its automatically log off and returned to login screen,i checked it all the power settings and updated all it to never.Also i disabled screen saver.In some forums they are telling that keystroke is enabled in your...
1219
66
2010-08-20T02:26:10.147
2010-08-20T06:33:03.377
Automatic logoff
[ "10.04", "login-screen", "session" ]
2
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-14T05:57:53.613", "id": "2167", "postId": "2251", "score": "1", "text": "Could you please give more details. The information given does not allow anymore than guessing. Do you mean that the whole screen went black and it restarted the graphical screen as if the compute...
null
[ { "accepted": null, "body": "<p>A Windows machine with the same symptoms turned out to have a bad memory module. If you have a Ubuntu live CD, use it to run a memory check.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-08-14T19:58:49.157", "id": "2217", ...
null
null
2013-03-14T17:04:31.933
null
null
2254
1
2255
2010-08-14T08:42:11.777
6
6586
<p>My Ubuntu server has this version installed:</p> <pre><code># dpkg -l | grep wsgi ii libapache2-mod-wsgi 2.8-2ubuntu1 Python WSGI adapter module for Apache </code></pre> <p>How can I get the <a href="http://code.google.com/p/modwsgi/downloads/list" rel="noreferrer">latest Version 3.3</a>?</p>
1229
null
null
2019-02-26T10:20:54.373
How to update mod_wsgi to latest version on Ubuntu 10.04?
[ "10.04", "package-management", "updates" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Download and compile it. There is a pretty good <em>README</em> in their source package. But you can start by installing <code>build-essential</code> the basic system for compiling, then just follow the <em>README</em></p>\n", "commentCount": "1", "comments": [ { "creat...
[ { "accepted": true, "body": "<p>Download and compile it. There is a pretty good <em>README</em> in their source package. But you can start by installing <code>build-essential</code> the basic system for compiling, then just follow the <em>README</em></p>\n", "commentCount": "1", "comments": [ ...
null
null
null
null
null
2256
1
null
2010-08-14T09:44:02.143
1
4000
<p>I have some insurance files that I need to be able to view, but they are in the MDI format I can't get them to work at all in Ubuntu. I've searched the entire forum and I've even installed Microsoft office 2003 &amp; 2007 through Wine, but it still doesn't work correctly. </p> <p>The only solutions posted in the f...
1219
8844
2012-05-04T17:50:28.057
2012-05-04T17:50:28.057
view or convert MDI file
[ "files", "file-format", "format-conversion" ]
3
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>I didn't have access to any Microsoft Document Imaging (MDI) files to test out on my system, but I figured I'd see if I could get the Bugysoft MDI2PDF converter (a Windows program) to run with Wine. I got some errors from the installer and was not able to get the program to s...
null
null
2013-03-14T17:04:35.930
null
null
2258
1
null
2010-08-14T09:55:42.043
2
2333
<p>I have a Logitech MX5000 keyboard/mouse combo. I'm using the Logitech Bluetooth dongle, and I use it in USB emulation mode (not native Bluetooth).</p> <p>I tried to install Ubuntu 10.04 using WUBI. After the Ubuntu setup started natively, the keyboard and mouse refuse to work.</p> <p>I have <strong>no</strong> other...
1234
527764
2022-03-16T09:41:01.517
2022-03-16T09:41:05.493
Keyboard/Mouse not recognised during installation
[ "system-installation", "keyboard", "mouse", "10.04", "wubi" ]
2
1
CC BY-SA 4.0
[ { "creationDate": "2010-12-16T01:53:48.727", "id": "18865", "postId": "2258", "score": "0", "text": "I had this problem on a Dell Inspiron 2650 when installing 10.10, with the internal keyboard/touchpad combo. Still having trouble with it, in fact. http://askubuntu.com/questions/16813/sometimes-...
null
[ { "accepted": null, "body": "<p>Unfortunately, I don't know what the problem is but I did come across this program called <a href=\"http://www.hidpoint.com/\" rel=\"nofollow\">HIDpoint</a> which is a configuration program for a variety of Logitech input devices (and a couple of others). I can't say if it wi...
null
null
null
null
null
2261
1
209877
2010-08-14T11:43:20.460
65
85091
<p>What is the Ubuntu way for system administrators to receive system notifications, which typically take the form of e-mail sent to the root account?</p> <p>Examples of such notifications are the output of cron jobs, or <a href="https://superuser.com/questions/175686/automatic-notification-of-degraded-raid-array-in-u...
1059
-1
2017-03-20T10:04:50.303
2024-02-03T08:35:15.503
How are administrators supposed to read root's mail?
[ "mail", "administration", "root", "cron-jobs" ]
6
6
CC BY-SA 2.5
[ { "creationDate": "2011-11-17T14:48:24.103", "id": "90522", "postId": "2261", "score": "1", "text": "I managed to get KMail to read my local mail using some very strange hacks I found, but since the update to 11.10 I'm lost", "userDisplayName": null, "userId": "19009" }, { "creat...
{ "accepted": true, "body": "<p>Encouraged in the comments by <a href=\"https://askubuntu.com/users/1059/gilles\">Gilles</a>, I have adapted and expanded another answer:</p>\n\n<ul>\n<li><a href=\"https://askubuntu.com/questions/192572/how-read-local-email-in-thunderbird\">How do I read local email in thunderbird?<...
[ { "accepted": null, "body": "<p>Currently there is no notification to the user that a root local mailbox even exists, because <code>user</code> != <code>root</code> If you needed to check the mailbox you could type the following: <code>sudo mail</code> to launch the mail application under root.</p>\n\n<p>Yo...
null
null
null
null
null
2263
1
2265
2010-08-14T12:24:52.217
150
320652
<p>I've become very accustomed to managing service startups on Redhat/RHEL platforms using <code>chkconfig</code> though that doesn't appear to be the Debian/Ubuntu way - How do I update runlevel information for system services on Ubuntu?</p> <p>Ultimately looking for the equivalents of:</p> <pre><code>chkconfig --ad...
41
41
2010-08-14T12:32:13.200
2018-07-10T18:13:41.063
Chkconfig alternative for Ubuntu Server?
[ "server", "services" ]
5
1
CC BY-SA 2.5
[ { "creationDate": "2015-02-10T02:38:47.913", "id": "807884", "postId": "2263", "score": "1", "text": "BTW: you can `apt-get install chkconfig` the package on ubuntu as well. However it is broken since years, the following symlink will make it (somewhat) work: `ln -s /usr/lib/insserv/insserv /sbi...
{ "accepted": true, "body": "<p>The equivalent to <code>chkconfig</code> is <code>update-rc.d</code></p>\n\n<p>The equivalents you seek are</p>\n\n<pre><code>update-rc.d &lt;service&gt; defaults\nupdate-rc.d &lt;service&gt; start 20 3 4 5\nupdate-rc.d -f &lt;service&gt; remove\n</code></pre>\n\n<p>See <a href=\"ht...
[ { "accepted": true, "body": "<p>The equivalent to <code>chkconfig</code> is <code>update-rc.d</code></p>\n\n<p>The equivalents you seek are</p>\n\n<pre><code>update-rc.d &lt;service&gt; defaults\nupdate-rc.d &lt;service&gt; start 20 3 4 5\nupdate-rc.d -f &lt;service&gt; remove\n</code></pre>\n\n<p>See <a h...
null
null
null
null
null
2266
1
2269
2010-08-14T12:53:11.287
8
10009
<p>I am about to install 10.04 (from bare metal to replace 9.04) and I want to set it up so that I can shh into the machine, but only from other machines on my local network. (I.e., I want to reject all ssh attempts from other than 192.168.1 set of IPs.) How do I do that correctly on 10.04?</p>
179
67
2010-08-14T13:59:11.667
2011-09-16T14:51:14.327
How to set up an Ubuntu 10.04 machine to accept ssh requests only from within the local network?
[ "security", "networking", "ssh", "firewall" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-14T14:54:25.310", "id": "2194", "postId": "2266", "score": "4", "text": "The `hosts.allow/deny` answers are correct, but it also makes sense for your home gateway/router to silently ignore all inbound packets from port 22 (and most other ports too).", "userDisplayN...
{ "accepted": true, "body": "<p>You have to edit the two configuration files <code>/etc/hosts.allow</code> and <code>/etc/hosts.deny</code> (you can get a detailed explanation of the format with <code>man hosts_access</code>):</p>\n\n<p><strong>etc/hosts.allow:</strong></p>\n\n<pre><code>sshd: 192.168.1.\n</code></...
[ { "accepted": true, "body": "<p>You have to edit the two configuration files <code>/etc/hosts.allow</code> and <code>/etc/hosts.deny</code> (you can get a detailed explanation of the format with <code>man hosts_access</code>):</p>\n\n<p><strong>etc/hosts.allow:</strong></p>\n\n<pre><code>sshd: 192.168.1.\n<...
null
null
null
null
null
2271
1
2272
2010-08-14T13:43:19.100
134
155627
<p>What measures can/should I take to make sure that security around my SSH server is absolutely impermeable?</p> <p>This will be community wiki from the start, so lets see what people do to secure their servers.</p>
455
6424
2015-01-30T16:27:44.730
2017-08-10T05:09:13.473
How to harden an SSH server?
[ "security", "ssh" ]
13
4
CC BY-SA 3.0
[ { "creationDate": "2010-08-16T15:44:24.400", "id": "2336", "postId": "2271", "score": "45", "text": "Absolute impermeability requires turning the box off.", "userDisplayName": null, "userId": "963" }, { "creationDate": "2010-10-20T23:11:27.623", "id": "8471", "postId": "2...
{ "accepted": true, "body": "<p>Make the sshd block client IP's that have failed to supply correct login information \"<a href=\"http://denyhosts.sourceforge.net/\" rel=\"nofollow\">DenyHØsts</a>\" can do this job quite effectively. I have this installed on all my Linux boxes that are in some way reachable from the...
[ { "accepted": true, "body": "<p>Make the sshd block client IP's that have failed to supply correct login information \"<a href=\"http://denyhosts.sourceforge.net/\" rel=\"nofollow\">DenyHØsts</a>\" can do this job quite effectively. I have this installed on all my Linux boxes that are in some way reachable ...
2010-08-14T13:43:19.100
null
null
null
null
2276
1
2277
2010-08-14T14:09:09.863
10
5499
<p>I have been playing around with my blog, alot. I have couple of old computers laying around i want to put to use. </p> <p>I was wondering if there is a way to setup a server, then will be linked to a url that i buy and server pages and maybe even install wordpress.</p> <p>Any information on setting that up on Ubun...
333
25863
2012-06-18T18:21:47.223
2022-05-19T18:05:44.890
How to setup a machine to host my websites to the world - with my own url?
[ "apache2", "websites", "hosting" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-14T14:25:18.890", "id": "2188", "postId": "2276", "score": "0", "text": "Why do you want to set that up on Ubuntu Desktop?", "userDisplayName": null, "userId": "289" }, { "creationDate": "2010-08-14T16:15:17.507", "id": "2202", "postId": "2276",...
{ "accepted": true, "body": "<p>Setting up a webserver on Ubuntu is very easy to do you can either use apt-get and install Apache, PHP and MySQL manuall or use tasksel to install the LAMP stack.</p>\n\n<p><code>sudo tasksel install lamp-server</code></p>\n\n<p><a href=\"https://help.ubuntu.com/community/ApacheMySQL...
[ { "accepted": true, "body": "<p>Setting up a webserver on Ubuntu is very easy to do you can either use apt-get and install Apache, PHP and MySQL manuall or use tasksel to install the LAMP stack.</p>\n\n<p><code>sudo tasksel install lamp-server</code></p>\n\n<p><a href=\"https://help.ubuntu.com/community/Apa...
null
null
null
null
null
2280
1
2581
2010-08-14T16:33:45.290
10
6890
<p>By default 'mounted volumes' are shown on the Ubuntu desktop. I usually disable this (gconf-editor or Ubuntu Tweak) because I don't want, for instance, my Windows partition on the Desktop.</p> <p>However this would be a useful to display USB flash data sticks or memory cards, which are not permanently mounted volum...
866
25863
2012-11-21T21:18:05.237
2012-11-21T21:18:05.237
Selective mounted volumes for the GNOME Desktop and Nautilus Sidebar
[ "gnome", "nautilus", "mount" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Where are \"40GB Filesystem\", \"80gb\" and \"backup\" mounted?</p>\n\n<p>My guess is under /media.</p>\n\n<p>This is something that used to really annoy me, that Windows shares from the file server would appear as removable storage in my Places menu.</p>\n\n<p>So I changed the mount...
[ { "accepted": null, "body": "<p>The transparent nautilus folder that is shown on the desktop shows all user mounts, so if you mount those partitions at boot they won't be shown on the desktop.</p>\n\n<p>You can mount them by adding a line for them to /etc/fstab, but the best mount options depend on what the...
null
null
null
null
null
2281
1
2286
2010-08-14T17:20:32.040
7
2421
<p>I want to take a stab at creating my own layouts for conky, but I'm having trouble finding any recent guides. </p> <p>If you know of any, I would be grateful if you could post some links. </p>
633
8844
2011-04-07T06:03:16.390
2012-03-17T23:09:36.920
Conky Guides (links)
[ "customization", "appearance", "conky" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-15T10:17:36.127", "id": "2247", "postId": "2281", "score": "0", "text": "When I dove into conky, all I did was look over the documentation (http://conky.sourceforge.net/documentation.html) and wiki(http://wiki.conky.be/index.php?title=Conky_Wiki). It's syntax is very e...
{ "accepted": true, "body": "<p>I started with this <a href=\"http://lifehacker.com/5067341/customize-conky-for-ambient-linux-productivity\" rel=\"nofollow\">lifehacker article</a> to set me up which led me to this <a href=\"http://ubuntuforums.org/showthread.php?t=281865\" rel=\"nofollow\">ubuntu forums thread</a>...
[ { "accepted": true, "body": "<p>I started with this <a href=\"http://lifehacker.com/5067341/customize-conky-for-ambient-linux-productivity\" rel=\"nofollow\">lifehacker article</a> to set me up which led me to this <a href=\"http://ubuntuforums.org/showthread.php?t=281865\" rel=\"nofollow\">ubuntu forums th...
2010-08-14T17:20:32.040
0
null
null
null
2283
1
2313
2010-08-14T17:41:58.887
16
24573
<p>It's great that the indicator applet tells me I have 2 hours and 12 minutes of battery left, or that it will be charged in 1 hour 8 minutes, but I might well change my pattern of usage during that time and am frankly not confused by percentages.</p> <p>How do I make the applet show a percentage charged or discharge...
1260
235
2012-01-07T19:33:37.093
2020-02-10T02:38:58.520
Can I set the power indicator to show battery percentage instead of time remaining?
[ "indicator", "battery" ]
8
2
CC BY-SA 3.0
[ { "creationDate": "2010-09-02T11:56:50.547", "id": "3509", "postId": "2283", "score": "1", "text": "Which version are using? I'm using lucid, and it's the exact opposite for me. It only show the percentage, and not the time remaining, though I'd like to see both.", "userDisplayName": null, ...
{ "accepted": true, "body": "<p>Matthew Paul Thomas, an interface designer for Canonical's Ubuntu team, <a href=\"http://design.canonical.com/2010/04/battery/\" rel=\"noreferrer\">in his blog comments</a> this April wrote \"I think the only point in showing a percentage charge is so that a human can get an idea of ...
[ { "accepted": null, "body": "<p>I don't think the indicator shows that information yet.</p>\n\n<p>You can click on the menu entry which says \"X hours YY minutes left to (dis)charge\" and it will open the battery profile dialog. That one has percentages under \"Laptop Battery -> Details (scroll to bottom)\"...
null
null
null
null
null
2290
1
2298
2010-08-14T20:11:19.623
1
1631
<p>This network (wired) printer works great using the latest HPLIP drivers. However when I plug in an SD card, it just blinks and never shows up mounted anywhere. Has anyone come up with a way to mount these? I'm using Lucid, 10.04.<br> re: version, hp-info says </p> <pre><code>xxxxx@lucid:~$ hp-info HP Linux Imaging...
49
866
2010-12-28T09:25:06.340
2010-12-28T09:25:06.340
Can't get HP Officejet 6500 card reader to work
[ "networking", "drivers", "printing", "card-reader" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>No go on this I'm afraid. <a href=\"https://bugs.launchpad.net/hplip/+bug/353685/comments/1\" rel=\"nofollow\">You have to access the card reader over USB</a>.</p>\n\n<blockquote>\n <p>We have removed support for the hp-unload (the card reader). To access the card please use the bui...
[ { "accepted": true, "body": "<p>No go on this I'm afraid. <a href=\"https://bugs.launchpad.net/hplip/+bug/353685/comments/1\" rel=\"nofollow\">You have to access the card reader over USB</a>.</p>\n\n<blockquote>\n <p>We have removed support for the hp-unload (the card reader). To access the card please use...
null
null
null
null
null
2294
1
2297
2010-08-14T21:54:28.820
0
4038
<p>I just installed 10.04, and used manual partitioning to preserve my '/home' from a 9.04 install. (To be clear: I did not upgraded 9.04 to 10.04, but installed 10.04 off a of CD, keeping only my '/home'.) After the sucessful 10.04 install, I used synaptic to apply all updates, rebooted, removed some packages (mostly ...
179
6005
2012-07-09T13:09:48.717
2012-07-09T13:09:48.717
How to fix a Package Manager Error in notification area after upgrading a fresh install of lucid with a '/home' from Jaunty?
[ "10.04", "package-management" ]
1
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-14T22:12:18.327", "id": "2221", "postId": "2294", "score": "0", "text": "When you say you use synaptic to apply all updates, do you mean after the new installation of 10.04?", "userDisplayName": null, "userId": "4" }, { "creationDate": "2010-08-14T22:21...
{ "accepted": true, "body": "<p>This should fix the permission problem (<a href=\"http://ubuntuforums.org/showthread.php?t=1536078\" rel=\"nofollow\">from this thread</a>):</p>\n\n<pre><code>sudo chmod o+r /etc/apt/apt.conf.d/99synaptic\n</code></pre>\n\n<p>But usually if you have broken dependencies you'd look in ...
[ { "accepted": true, "body": "<p>This should fix the permission problem (<a href=\"http://ubuntuforums.org/showthread.php?t=1536078\" rel=\"nofollow\">from this thread</a>):</p>\n\n<pre><code>sudo chmod o+r /etc/apt/apt.conf.d/99synaptic\n</code></pre>\n\n<p>But usually if you have broken dependencies you'd ...
null
null
null
null
null
2299
1
2305
2010-08-14T23:27:50.553
1
240
<p>This is a bit of a weird question, and I don't even know if it belongs here or not.</p> <p>I want to set up a Ubuntu box with a keyboard and a twitter program, so that everything that is typed into the keyboard is posted on twitter. So what I am looking for is a simple twitter client that will force all input via k...
176
7035
2011-06-07T15:18:02.143
2011-06-07T15:18:02.143
Simple Twitter client to post all text entry
[ "scripts" ]
2
1
CC BY-SA 3.0
[ { "creationDate": "2010-08-15T00:03:29.007", "id": "2225", "postId": "2299", "score": "0", "text": "If you don't get anything here, and if you have some programming experience, you could head over to Stack Overflow to get some ideas on how to write the program yourself. I don't think it'd be tha...
{ "accepted": true, "body": "<p>I am sure all of this can be done through a simple python script. Interesting idea. I am sure you have some use for it. </p>\n\n<p>I would recommend taking a look at the <a href=\"http://code.google.com/p/python-twitter/\" rel=\"nofollow\">twitter-python API</a> -- simple and straigh...
[ { "accepted": null, "body": "<p>There are some command-line twitter clients (either <a href=\"http://www.ubuntu-unleashed.com/2008/03/howto-twitter-from-command-line-in.html\" rel=\"nofollow\">hand</a> <a href=\"http://www.fsckin.com/2008/03/19/twittering-from-the-command-line/\" rel=\"nofollow\">rolled</a>...
null
null
null
null
null
2300
1
2312
2010-08-14T23:52:00.683
2
2474
<p>I'm having trouble with vlc, when i try and adjust the volume with my scroll wheel it doesn't change the volume, in settings x-axis control is set to volume control so i can't understand why it wont work</p> <p>Any ideas? Cheers</p>
633
null
null
2012-05-21T10:11:11.923
VLC - scroll wheel doesn't change volume level
[ "sound" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-15T00:26:35.823", "id": "2226", "postId": "2300", "score": "0", "text": "In what settings did you set the x-axis control? and does scrolling work in other programs eg. OpenOffice?", "userDisplayName": null, "userId": "455" } ]
{ "accepted": true, "body": "<p>Using the 1.1.2 version of VLC and it does work. Give it a try. :)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-15T11:37:09.957", "id": "2312", "lastActivityDate": "2010-08-15T12:02:3...
[ { "accepted": null, "body": "<p>If that doesn't work i believe ctrl + up/down arrows will increase and decrease the volume as well.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-15T06:15:28.710", "i...
null
null
null
null
null
2301
1
null
2010-08-15T02:33:30.933
14
5872
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/4408/what-should-i-do-when-ubuntu-freezes">What should I do when Ubuntu freezes?</a> </p> </blockquote> <p>At random times, Ubuntu 10.04 freezes, and I have to do a hard shutdown. It was upgraded from 9.10 which d...
1246
-1
2017-04-13T12:23:56.577
2014-04-25T22:10:41.897
Randomly Freezes - How Can I Diagnose the Problem?
[ "10.04" ]
0
1
CC BY-SA 3.0
[ { "creationDate": "2010-08-15T12:58:21.960", "id": "2251", "postId": "2301", "score": "0", "text": "possible duplicates: [I have problems installing ubuntu 10.04](http://ubuntu.stackexchange.com/questions/1444/i-have-problems-installing-ubuntu-10-04) - [How can I find out what is causing my gnom...
null
[]
null
0
2012-07-31T09:32:03.693
null
null
2314
1
null
2010-08-15T13:01:53.903
5
6058
<h2>Background</h2> <p>I'm running Ubuntu as a guest OS in a VM. Originally the VM was created with Ubuntu 9.10 64-bit and with vmware-tools installed, when I resized or maximized the VMware Player, the guest OS was correctly and automatically resized. Once I upgraded to Ubuntu 10.04 (not reinstalled), automatic resiz...
1284
1284
2010-09-08T23:33:58.790
2011-10-15T06:28:04.990
Guest Resizing Ubuntu 10.04 64-bit in VMware Player not working
[ "virtualization", "vmware" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-09-02T23:43:38.930", "id": "3529", "postId": "2314", "score": "1", "text": "Are you running the vmware-tools that comes with vmware? Or openvm-tools? I'd try openvm-tools (you can get the package over apt) and see if that works better. You may want to fully uninstall v...
null
[ { "accepted": null, "body": "<p>i dont know about vmware, but with virtual box, they there is a setting that says adjust with windows size, which you can enable and you can run smooth. I believe porting your guest system in vmware to vbox is straightforward and simple. Link <a href=\"http://www.ubuntugeek.c...
null
null
2011-10-25T11:25:34.540
null
null
2316
1
null
2010-08-15T13:56:29.730
26
15188
<p>I'm a bit of a fan of the <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Interrobang">interrobang</a> (‽), but it obviously is not on my keyboard. How can I map that character to a key combination?</p>
130
455
2010-08-15T14:21:39.873
2023-07-31T02:42:08.713
How can I map a character to a key combination?
[ "xorg", "keyboard", "keyboard-layout", "shortcut-keys" ]
4
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>In GNOME you can enter unicode characters by typing: <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>u</kbd>+<kbd>unicode point</kbd>, followed <kbd>Space</kbd> or <kbd>Enter</kbd>.</p>\n<p>So, to type an interrobang, you'd enter:\n<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>u</kbd>+<kbd>203...
null
null
null
null
null
2317
1
2347
2010-08-15T14:02:17.003
5
4287
<p>I had a look at my <code>bootchart</code>s and something seems to be wrong with them. The <code>ureadahead</code> process does what it's supposed to do (disk utilisation is 100% most of the time), but it also blocks any other action.</p> <p>Since I've got a slow, laptop harddrive, <code>ureadahead</code> itself tak...
1287
1287
2010-08-15T21:30:50.617
2010-09-23T20:15:16.750
ureadahead seems to block the system on boot
[ "boot", "time" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-15T18:23:35.493", "id": "2262", "postId": "2317", "score": "0", "text": "Would you be able to upload your bootchart here?", "userDisplayName": null, "userId": "866" }, { "creationDate": "2010-08-15T21:31:20.523", "id": "2273", "postId": "2317", ...
{ "accepted": true, "body": "<p>Blocking the boot is by design. The point of ureadahead is to preload all the data your boot will require ahead of time. The reason to do this is that the primary reason for disc slowness is seek times - even slow hard drives should be able to push out >50 MB/sec reads, but if you ...
[ { "accepted": true, "body": "<p>Blocking the boot is by design. The point of ureadahead is to preload all the data your boot will require ahead of time. The reason to do this is that the primary reason for disc slowness is seek times - even slow hard drives should be able to push out >50 MB/sec reads, but...
null
null
null
null
null
2319
1
2360
2010-08-15T14:25:18.570
3
990
<p>I want to test Sidux in Dual-Boot! Cause it is Debianoid a question popped up: Is ist possible to use PPAs in Sidux, too?</p>
654
866
2011-01-10T19:01:49.547
2012-01-26T17:53:21.917
Can I use Ubuntu PPAs in Sidux?
[ "ppa", "debian" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>No. Some packages may work, however there is a good probability that a package may not work on sidux (or more specifically Debian sid).</p>\n\n<p>This is <strong>not <em>just</em> because of dependency issues</strong>. Dependency issues are easily resolved by creating dummy packages ...
[ { "accepted": null, "body": "<p>Technically yes. The PPAs use the same format as normal apt respositories so you'd be fine in that respect.</p>\n\n<p>The problem comes with dependencies. If packages have different names, you're not going to be able to fulfil some deps without pulling more and more Ubuntu pa...
null
null
2012-01-26T18:15:39.500
null
null
2321
1
2325
2010-08-15T14:46:51.000
77
248040
<p>I suspect that the name server provided by my ADSL modem/router is buggy. Whenever I browse to a website for the first time in ubuntu, resolving the domain name takes at least 15 seconds.</p> <p>To work around that problem, I changed the nameserver configuration in <code>/etc/resolv.conf</code> from 192.168.1.1 (my...
1288
1288
2010-08-16T10:20:20.827
2020-07-06T11:34:33.647
What is the proper way to change the DNS IP?
[ "network-manager", "dns" ]
15
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If you have typical connection setup with the network manager and DHCP, try the following:</p>\n\n<ol>\n<li>Right click on the network manager icon in the panel and choose \"Edit connections...\"</li>\n<li>Select your connection from the wired or wireless tab, choose \"Edit\"</li>\n<...
[ { "accepted": null, "body": "<p>I believe if you change it under the network manager its self the changes with persist. </p>\n\n<p>To use eth0 for example</p>\n\n<p>Network Manager -> Wired -> Auto eth0 -> ipv4 Settings.</p>\n\n<p>Set your DNS server to 8.8.8.8 and apply. </p>\n", "commentCount": "3", ...
null
null
null
null
null
2323
1
2556
2010-08-15T14:58:24.590
1
227
<p>I'm running HDMI video and audio from the on-board ATI graphics output of a <a href="http://www.gigabyte-usa.com/Products/Motherboard/Products_Spec.aspx?ProductID=2951" rel="nofollow">GIGABYTE GA-MA78GM-S2HP motherboard</a> to an <a href="http://www.p4c.philips.com/cgi-bin/dcbint/cpindex.pl?tmplt=Funai&amp;scy=US&am...
1188
1188
2010-12-02T05:29:18.763
2010-12-02T05:29:18.763
How do I troubleshoot sporadic HDMI failures?
[ "10.04", "video" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-12-01T23:19:00.830", "id": "16601", "postId": "2323", "score": "0", "text": "Please update your question as you gather new info, per the latest update your system is freezing.", "userDisplayName": null, "userId": "742" } ]
{ "accepted": true, "body": "<p>a) </p>\n\n<p>Have you tried to restart X?. You can do it from the terminal (switch using CTRL+ALt+F1) and writing:</p>\n\n<pre><code>/etc/init.d/gdm restart\n</code></pre>\n\n<p>or</p>\n\n<pre><code>service gdm restart\n</code></pre>\n\n<p>If this doesn't work you could try to unloa...
[ { "accepted": true, "body": "<p>a) </p>\n\n<p>Have you tried to restart X?. You can do it from the terminal (switch using CTRL+ALt+F1) and writing:</p>\n\n<pre><code>/etc/init.d/gdm restart\n</code></pre>\n\n<p>or</p>\n\n<pre><code>service gdm restart\n</code></pre>\n\n<p>If this doesn't work you could try ...
null
null
null
null
null
2332
1
2358
2010-08-15T17:56:11.807
1
2266
<p>I have used cowbuilder to set-up a chainroot with ubuntu+1 (essentially minimal ubuntu installation in a sub-folder, which you can "change" into, for example for building packages in a clean environment).</p> <p>How can I start gnome-session from there? Ideally I want it to appear on a new VT. I hope to achieve poo...
72
72
2010-08-16T00:32:46.620
2010-08-16T20:45:47.150
How to start GNOME session from chainroot?
[ "virtualization" ]
2
4
CC BY-SA 2.5
[ { "creationDate": "2010-08-15T18:19:55.003", "id": "2260", "postId": "2332", "score": "2", "text": "Please elaborate, what is \"chainroot\"?", "userDisplayName": null, "userId": "455" }, { "creationDate": "2010-08-16T00:37:36.970", "id": "2288", "postId": "2332", "sco...
{ "accepted": true, "body": "<p>You should be able to do this with a combination of <code>startx</code> and <code>/etc/X11/Xsession</code>, as long as you've got the necessary trees bind-mounted (I'd guess that you'll need <code>/dev</code>, <code>/sys</code>, and <code>/proc</code>)</p>\n\n<p>Chroot into your… chr...
[ { "accepted": true, "body": "<p>You should be able to do this with a combination of <code>startx</code> and <code>/etc/X11/Xsession</code>, as long as you've got the necessary trees bind-mounted (I'd guess that you'll need <code>/dev</code>, <code>/sys</code>, and <code>/proc</code>)</p>\n\n<p>Chroot into y...
null
null
null
null
null
2336
1
41945
2010-08-15T20:25:42.210
1
1277
<p>I'm running Ubuntu 10.04 LTS (Lucid Lynx) on my Lenovo Thinkpad T60. I randomly get screen flickerings on my screen. Once it happens, it doesn't go away (unless I reboot my computer). I would describe the flickering as horizontal color lines appearing throughout the screen where the text is difficult to read ever...
394
null
null
2011-05-11T03:13:32.193
Thinkpad T60 flickering screen
[ "video", "laptop", "thinkpad" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I'm now running Ubuntu 11.04 on my Thinkpad T60, and the screen flickering issue doesn't exist anymore.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2011-05-11T03:13:32.193", "id": "41945", "...
[ { "accepted": null, "body": "<p>Based on your description, sounds like <a href=\"https://bugs.launchpad.net/ubuntu/+source/linux/+bug/541501\" rel=\"nofollow\">Bug #541501</a> which is still open.</p>\n\n<p>I have a similar problem on a Thinkpad T60 with ATI Radeon Mobility X1300. None of the workarounds su...
null
null
null
null
null
2337
1
3665
2010-08-15T21:03:28.080
3
480
<p>I'm having problems installing the drivers for internet connectivity from service provider. My computer recognizes the files when I insert the stick but does not want to install the drivers when I click on the .exe files.</p>
794
23
2010-09-04T09:15:47.553
2010-09-05T18:16:53.273
Installing drivers for internet connectivity
[ "windows", "networking", "drivers" ]
5
6
CC BY-SA 2.5
[ { "creationDate": "2010-08-15T21:15:32.867", "id": "2272", "postId": "2337", "score": "3", "text": "Please give more details. What is the model of the device? Which service provider? Is it wireless, ethernet, dialup, other?", "userDisplayName": null, "userId": "667" }, { "creatio...
{ "accepted": true, "body": "<p>When you see the windows drivers on the modem it is in USB-drive state. You need to install usb-modeswitch to toggel it in to modem mode.\nThis is also what namkid is refereing to as \"flip flop USB\". You can install this tool from the software center.</p>\n", "commentCount": "0",...
[ { "accepted": null, "body": "<p>I am not sure that you necessarily need to do this, it depends on what network interface you are trying to install. </p>\n\n<p>However assuming it is a wireless card and that you really do require the windows drivers you may find what you need to know on the <a href=\"https:/...
null
null
null
null
null
2340
1
2343
2010-08-15T22:14:17.820
2
899
<p>When Kubuntu needs to be upgraded between versions (e.g. 9.10 to 10.04), there's a notifier icon that shows up in the system tray,</p> <p><img src="https://www.howtoforge.com/images/upgrade_kubuntu_9.10_to_10.04/5.png" alt="upgrade icon"></p> <p>(<a href="http://www.howtoforge.com/how-to-upgrade-kubuntu-9.10-karmi...
104
527764
2017-03-29T06:51:49.380
2017-03-29T06:51:49.380
How do I get the Kubuntu upgrade notification icon back?
[ "upgrade", "kubuntu", "notification" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Open up KPackageKit in Kickoff (under the Computer tab), and it should offer to install updates.</p>\n\n<p>If KPK can't do it:</p>\n\n<pre><code>sudo do-release-upgrade\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-16T00:41:06.790", ...
[ { "accepted": true, "body": "<p>Open up KPackageKit in Kickoff (under the Computer tab), and it should offer to install updates.</p>\n\n<p>If KPK can't do it:</p>\n\n<pre><code>sudo do-release-upgrade\n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-08-16T0...
null
null
null
null
null
2341
1
2342
2010-08-15T22:38:46.467
1
2106
<p>I have a very fresh install of Lucid 10.04 64bit, fully upgraded, and with a raft of additional packages added. Amongst them is <code>emacs</code> (23.1+1-4ubuntu7). I habitually launch <code>emacs</code> from a terminal. </p> <p>I just observed that when I have the GUI <code>emacs</code> (i.e., the result of runni...
179
507051
2017-12-13T16:46:42.027
2017-12-13T16:48:20.017
How to get rid of odd error line when ALT+TAB'ing away from an emacs launched in terminal
[ "10.04", "command-line", "emacs" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The <a href=\"https://bugs.launchpad.net/ubuntu/+source/light-themes/+bug/538499\" rel=\"nofollow noreferrer\">bug is\nknown</a>,\nand there is a work-around in <a href=\"https://bugs.launchpad.net/ubuntu/+source/light-themes/+bug/538499/comments/24\" rel=\"nofollow noreferrer\">this...
[ { "accepted": true, "body": "<p>The <a href=\"https://bugs.launchpad.net/ubuntu/+source/light-themes/+bug/538499\" rel=\"nofollow noreferrer\">bug is\nknown</a>,\nand there is a work-around in <a href=\"https://bugs.launchpad.net/ubuntu/+source/light-themes/+bug/538499/comments/24\" rel=\"nofollow noreferre...
null
null
null
null
null
2344
1
null
2010-08-15T23:44:10.620
2
3530
<p>The audio configuration must have changed from 9.10 to 10.04, because audio no longer seems to work with DOOM 3. This was the suggested way to run DOOM 3 before, and it worked fine:</p> <pre><code>doom3 +set s_alsa_pcm plughw:0 </code></pre> <p>However, DOOM 3 is completely silent after I upgraded to Ubuntu 10.04....
90
90
2010-08-17T19:31:49.350
2010-08-17T19:31:49.350
Anyone get DOOM 3 audio working properly with Ubuntu 10.04?
[ "10.04", "sound", "games" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-16T09:00:44.293", "id": "2309", "postId": "2344", "score": "0", "text": "Sadly Doom III stopped working for me after upgrading to 10.04 :/", "userDisplayName": null, "userId": "644" } ]
null
[ { "accepted": null, "body": "<p>Try change the driver to OSS, perhaps like this (sorry I can't verify this command atm):</p>\n\n<pre><code>doom3 +set s_driver oss\n</code></pre>\n\n<p>Also check that nothing else is using the sound card, like a music player?</p>\n", "commentCount": "0", "comments": ...
null
null
2013-03-14T17:04:45.367
null
null
2345
1
null
2010-08-16T00:35:59.143
5
443
<p>I guess the question explains it all...</p>
null
235
2013-03-04T15:18:25.487
2013-03-04T15:18:25.487
Where to file bugs/wishlist for Unity?
[ "unity", "bug-reporting" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p><a href=\"https://bugs.edge.launchpad.net/unity/+filebug\">https://bugs.edge.launchpad.net/unity/+filebug</a></p>\n\n<p>The link answers it all.... =)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", ...
null
null
null
null
baktong
2348
1
2357
2010-08-16T01:38:43.447
2
657
<p>Is there a network-synchronized multi-user IDE available in the Ubuntu repositories?</p> <p>If so, how did you find out about it? This is not the sort of thing that has an easy-to-search-for name...</p>
1304
235
2012-04-11T14:13:53.883
2012-04-11T14:13:53.883
Is there a SubEthaEdit-like text editor?
[ "software-recommendation", "text-editor" ]
4
2
CC BY-SA 3.0
[ { "creationDate": "2010-08-16T01:52:41.930", "id": "2295", "postId": "2348", "score": "0", "text": "i think you might need to explain more.", "userDisplayName": null, "userId": "333" }, { "creationDate": "2010-08-16T02:52:01.773", "id": "2298", "postId": "2348", "scor...
{ "accepted": true, "body": "<p>I don't know about a real IDE (programming environment) but there are several applications that allow you to work together on \"something\". Some that I know about:</p>\n\n<ul>\n<li>The *obby family of applications (Gobby, etc.) are text editors, but not really usable as a full IDE ...
[ { "accepted": null, "body": "<p>I haven't used either, but I believe <a href=\"http://gobby.0x539.de/trac/\" rel=\"nofollow\">Gobby</a> is similar</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-08-16T02:27:...
null
null
null
null
null
2351
1
2384
2010-08-16T02:50:38.360
3
926
<p>Where is a good (working, no dependency issues) PPA for qemu-kqemu and the kqemu module builder for Ubuntu 10.04?</p> <p>A good PPA from which to obtain kqemu for 10.04 from would be one that has a working package with dependencies set to be handled correctly and that one can install without having to hold packages...
1304
1304
2010-09-09T15:44:08.567
2010-09-09T15:44:08.567
kqemu ppa for 10.04
[ "10.04", "virtualization", "qemu" ]
1
5
CC BY-SA 2.5
[ { "creationDate": "2010-08-16T12:40:29.583", "id": "2318", "postId": "2351", "score": "1", "text": "@Downvoters: Please justify your votes. @Closer: how is this subjective? It's a clear question with a clear answer.", "userDisplayName": null, "userId": "449" }, { "creationDate": ...
{ "accepted": true, "body": "<p>Try <a href=\"https://launchpad.net/~dnjl/+archive/virtualization\" rel=\"nofollow\">this</a> ppa:</p>\n\n<pre><code>deb http://ppa.launchpad.net/dnjl/virtualization/ubuntu lucid main\ndeb-src http://ppa.launchpad.net/dnjl/virtualization/ubuntu lucid main\n</code></pre>\n", "commen...
[ { "accepted": true, "body": "<p>Try <a href=\"https://launchpad.net/~dnjl/+archive/virtualization\" rel=\"nofollow\">this</a> ppa:</p>\n\n<pre><code>deb http://ppa.launchpad.net/dnjl/virtualization/ubuntu lucid main\ndeb-src http://ppa.launchpad.net/dnjl/virtualization/ubuntu lucid main\n</code></pre>\n", ...
null
null
null
null
null
2352
1
2359
2010-08-16T02:51:00.277
9
4365
<p>I was wondering if anyone has a workaround for VNC remote not working with Ubuntu running compiz. From what I can tell it works if I disable compiz effects, but who's not a fan of eye candy? Anyway, it's not a huge deal if there's no work around anyone knows because I've been using nx server instead to remote connec...
541
null
null
2010-08-17T13:21:37.603
VNC remote doesn't work with Ubuntu?
[ "compiz", "vnc" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-08-16T04:18:54.197", "id": "2301", "postId": "2352", "score": "1", "text": "I can't reproduce this (VNC works for me when running compiz, although the eye-candy makes it rather slow), maybe it's related to your graphics card driver or you use a different VNC server (I use...
{ "accepted": true, "body": "<p>I have the same issue. I don't know how to fix it, but I came up with a decent work-around. I added a launcher on the top panel to switch to the Metacity window manager.</p>\n\n<ol>\n<li>Right click on the panel and click \"Add to Panel...\"</li>\n<li>Choose \"Custom Application Laun...
[ { "accepted": true, "body": "<p>I have the same issue. I don't know how to fix it, but I came up with a decent work-around. I added a launcher on the top panel to switch to the Metacity window manager.</p>\n\n<ol>\n<li>Right click on the panel and click \"Add to Panel...\"</li>\n<li>Choose \"Custom Applicat...
null
null
null
null
null
2353
1
2355
2010-08-16T03:31:09.180
10
2702
<p>I want to experiment with virtualization in Ubuntu 10.04 and have found the following list of hopefully relevant names: Xen, OpenVZ, KVM, Vservers, EC2 and Solaris Zones, although this is just a sample list and the question is not exclusive to these.</p> <p>From the community's experience, what virtualization solut...
1046
235
2010-11-02T02:21:16.557
2024-02-27T10:56:03.420
What's the friendliest virtualization solution?
[ "virtualization" ]
7
5
CC BY-SA 2.5
[ { "creationDate": "2010-08-16T08:19:56.780", "id": "2307", "postId": "2353", "score": "2", "text": "What problem are you trying to solve?", "userDisplayName": null, "userId": "24" }, { "creationDate": "2010-08-16T12:19:08.100", "id": "2317", "postId": "2353", "score":...
{ "accepted": true, "body": "<p>I'd recommend VirtualBox, if you're just getting started. (<code>apt-get install virtualbox-ose</code>) It's intended for running a virtual machine on a desktop (or laptop) computer, so that you can use both the virtual (guest) computer and the real (host) computer together. It gives...
[ { "accepted": true, "body": "<p>I'd recommend VirtualBox, if you're just getting started. (<code>apt-get install virtualbox-ose</code>) It's intended for running a virtual machine on a desktop (or laptop) computer, so that you can use both the virtual (guest) computer and the real (host) computer together. ...
null
null
null
null
null
2354
1
null
2010-08-16T03:34:32.770
2
382
<p>How does one prevent the power-save load-cycling of a laptop hard drive in 10.04 in desktop and laptop machines? These desktop and laptop machines with laptop hard drives have thousands of load cycles, already according to smartctl, and we don't want them to die of kerchunking.</p> <p>Laptop-mode-tools is, or was,...
1304
1304
2010-08-23T11:03:50.560
2010-08-23T11:03:50.560
Fix laptop hard drive load cycles / kerchunking in desktop and laptop Ubuntu 10.04 machines
[ "hardware", "laptop" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-17T03:20:48.823", "id": "2409", "postId": "2354", "score": "1", "text": "It seems that there is no way to get Ubuntu to hold off disk accesses for hours in a way that makes it possible to sleep laptop drives in an always-on machine without causing spin-up almost immedi...
null
[ { "accepted": null, "body": "<p><code>sudo hdparm -B254 /dev/yourdisk</code></p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-08-17T03:00:43.477", "id": "2408", "postId": "2361", "score": "1", "text": "That only fixes it temporarily. \...
null
null
2013-03-14T17:04:50.030
null
null
2363
1
null
2010-08-16T06:52:52.070
4
1493
<p>I alternate between a Unicomp <a href="http://pckeyboards.stores.yahoo.net/en104bl.html" rel="nofollow">clicky keyboard</a> by day, and the Apple bluetooth keyboard by night.</p> <p>The Apple keyboard physically swaps the <kbd>Alt</kbd> and <kbd>Windows</kbd> keys. How do I counteract this?</p> <p>Also, how can I ...
409
17739
2011-10-27T18:39:39.973
2017-05-03T06:51:29.963
Conveniently switch between Apple and PC keyboard (swap Windows and Alt keys)
[ "keyboard", "automation" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>This is on Ubuntu 10.04.</p>\n\n<h2>Manually swapping the Windows and Alt keys</h2>\n\n<ol>\n<li>System -> Preferences -> Keyboard</li>\n<li>Layouts tab</li>\n<li>Click \"Options...\"</li>\n<li>Expand \"Alt/Win key behavior\"</li>\n<li>Choose between:\n<ul>\n<li>Default (when...
null
null
null
null
null
2366
1
2367
2010-08-16T07:40:40.977
3
44540
<p>How do i add a new user to my FTP server running ProFTPD. I have the server running, i added a system user but i get Login incorrect.</p> <p>Thank you for your help in advance.</p>
82
41
2010-08-16T12:15:23.833
2016-03-21T14:50:59.043
How do I manage users in ProFTPD?
[ "configuration", "ftp", "authentication" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-08-16T08:17:36.083", "id": "2306", "postId": "2366", "score": "0", "text": "Do you have virtual users enabled?", "userDisplayName": null, "userId": "289" }, { "creationDate": "2010-08-16T12:14:17.047", "id": "2315", "postId": "2366", "score": "...
{ "accepted": true, "body": "<p>If normal system users are used, you simply use the system utilities: adduser, usermod, useradd, userdem, deluser, etc</p>\n\n<p>If virtual users are enabled the users are managed in the file defined by the AuthUserFile directive and the groups in AuthGroupFile. The format is similar...
[ { "accepted": true, "body": "<p>If normal system users are used, you simply use the system utilities: adduser, usermod, useradd, userdem, deluser, etc</p>\n\n<p>If virtual users are enabled the users are managed in the file defined by the AuthUserFile directive and the groups in AuthGroupFile. The format is...
null
null
null
null
null
2368
1
2369
2010-08-16T08:25:04.800
642
1298460
<p>I want to schedule a task to run on a regular basis and have heard that Cron is the way to do this.</p> <p>How do I add Cron jobs in Ubuntu?</p>
82
449
2015-08-18T11:26:15.997
2020-04-07T18:59:30.453
How do I set up a Cron job?
[ "cron" ]
8
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>Put a shell script in one of these folders: <code>/etc/cron.daily</code>, <code>/etc/cron.hourly</code>, <code>/etc/cron.monthly</code> or <code>/etc/cron.weekly</code>. </p>\n\n<p>If these are not enough for you, you can add more specific tasks e.g. twice a month or every 5 minutes....
[ { "accepted": true, "body": "<p>Put a shell script in one of these folders: <code>/etc/cron.daily</code>, <code>/etc/cron.hourly</code>, <code>/etc/cron.monthly</code> or <code>/etc/cron.weekly</code>. </p>\n\n<p>If these are not enough for you, you can add more specific tasks e.g. twice a month or every 5 ...
null
null
null
null
null
2374
1
null
2010-08-16T09:41:17.237
1
2009
<p>I have an application that is latency sensitive. Although I care about throughput, extreme low latency is more important to me.</p> <p>Please suggest how I can optimise my server to achieve the lowest possible latency - that is, the lowest possible response time from a request being received on a network interface ...
1313
721
2011-03-23T02:18:12.027
2011-03-23T02:18:12.027
How can I optimise a server for a Low Latency application
[ "server", "performance" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>First and foremost, I think you should install and use the <code>linux-rt</code> kernel. This kernel is patched and allows nearly all of the kernel to be preempted, with the exception of a few very small regions of code (\"raw_spinlock critical regions\"). This is done by rep...
null
null
2013-03-14T17:04:57.317
null
null
2379
1
2380
2010-08-16T13:49:53.480
23
23034
<p>From outside of my house, whenever I login to my Ubuntu server using SSH, it takes about 6 seconds for me to get the prompt for password, however when I login to my web hosting server it takes about 1 second. What can I do to speed this up?</p> <pre><code>$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=8.0...
76
41
2010-08-16T15:51:02.417
2012-03-10T16:25:34.997
How to speed up SSH login?
[ "configuration", "ssh" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The number one reason I've seen for this is a configuration option in SSHD <code>UseDNS</code> this option (enabled by default) causes the server to perform DNS resolution on the incoming requests. A time consuming operation. I've seen logins go from one minute plus waiting for passw...
[ { "accepted": true, "body": "<p>The number one reason I've seen for this is a configuration option in SSHD <code>UseDNS</code> this option (enabled by default) causes the server to perform DNS resolution on the incoming requests. A time consuming operation. I've seen logins go from one minute plus waiting f...
null
null
null
null
null
2386
1
2421
2010-08-16T16:26:19.680
1
265
<p>Im using <a href="http://tilda.sourceforge.net/wiki/index.php/Main_Page" rel="nofollow">tilda</a> on 2 computer, a desktop and a notebook, both with ubuntu LL 10.04 and Compiz.</p> <p>The notebook has 6Gb RAM, 4 Cpu's (Core i3 330M) @ 2,13GHz, and an ATI Radeon HD 5650 (with ati closed drivers).. its a new notebook...
829
829
2010-08-16T18:16:51.410
2010-08-16T20:23:04.070
Why tilda take long time to appear on my laptop?
[ "compiz", "software-recommendation" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It was a driver problem.</p>\n\n<p>I solved installing the latest version of ATI drivers, adding two repositories:</p>\n\n<pre><code>deb http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu lucid main \ndeb-src http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu lucid main\nke...
[ { "accepted": null, "body": "<p>I would try re-installing; also maybe checking to see if the key binding you use launches another process in the background that you may be unaware of. </p>\n\n<p>Open <code>top</code> and then run tilda, maybe that will help you troubleshoot better.</p>\n", "commentCount...
null
null
null
null
null
2388
1
null
2010-08-16T16:46:38.483
3
374
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/144621/how-do-i-stop-the-screensaver-from-turning-on-when-i-watching-online-videos">How do I stop the screensaver from turning on when I watching online videos?</a> </p> </blockquote> <p>Is there a way to configure...
175
-1
2017-04-13T12:23:44.677
2010-09-29T19:58:05.183
Screen/Power management during media use
[ "video", "sound", "hibernate", "flash", "multimedia" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2012-09-01T19:27:20.140
null
null
2389
1
492343
2010-08-16T17:07:01.653
330
257555
<p>I'd like to get a list of packages installed manually by <code>apt</code> or <code>aptitude</code> and be able to find out whether a <code>foobar</code> package was installed manually or automatically.</p> <p>How can we do that from the command line?</p>
203
900728
2021-09-13T19:16:45.840
2023-11-23T09:59:54.087
How to list manually installed packages?
[ "apt", "package-management", "aptitude" ]
20
4
CC BY-SA 4.0
[ { "creationDate": "2012-04-29T06:37:31.107", "id": "152268", "postId": "2389", "score": "2", "text": "possible duplicate of [Is it possible to tell what packages I've installed that aren't in the vanilla install?](http://askubuntu.com/questions/365/is-it-possible-to-tell-what-packages-ive-instal...
{ "accepted": true, "body": "<p>You can use either of these two one-liners. Both yield the exact same output on my machine and are more precise than all solutions proposed up until now (July 6, 2014) in this question.</p>\n\n<p><strong>Using <code>apt-mark</code>:</strong></p>\n\n<pre><code>comm -23 &lt;(apt-mark s...
[ { "accepted": null, "body": "<p><code>apt-mark showauto | grep -iE '^foobar$'</code> will output \"foobar\" if the package was installed automatically, nothing otherwise.</p>\n\n<p><code>aptitude search '!~M ~i'</code> will list the packages that were not installed automatically. It's a pity aptitude won't ...
null
null
null
null
null
2392
1
null
2010-08-16T17:26:12.103
11
13505
<p>I am using a keyboard with the <kbd>Fn</kbd> key. This is on a laptop.</p> <p>So my <kbd>Fn</kbd> + <kbd>Up</kbd>/<kbd>Down</kbd>/<kbd>Left</kbd>/<kbd>Right</kbd> keys are mapped to brightness/volume. I would much rather them be mounted to <kbd>Page Up</kbd>/<kbd>Page Down</kbd> and <kbd>Home</kbd>/<kbd>End</kbd>. A...
1151
1066942
2022-01-11T10:51:20.157
2022-01-11T10:51:20.157
Re-mapping keyboard keys
[ "keyboard-layout" ]
3
1
CC BY-SA 4.0
[ { "creationDate": "2012-01-11T03:04:13.070", "id": "108229", "postId": "2392", "score": "0", "text": "Related question: http://superuser.com/questions/377063/mapping-keys-on-linux", "userDisplayName": null, "userId": "41425" } ]
null
[ { "accepted": null, "body": "<p>The <kbd>Fn</kbd> key combinations is not defined in software and can therefor not be redefined, so you need a <a href=\"http://en.wikipedia.org/wiki/Soldering_iron\" rel=\"nofollow\">soldering iron</a> and some electronics knowhow!</p>\n", "commentCount": "8", "comme...
null
null
null
null
null
2399
1
2410
2010-08-16T18:13:23.210
8
4133
<p>I am playing ADOM right now and under F1 button there is very aggressive tactic, which is extremaly useful when you are fighting on distance. Right now I can't use it, because help dialog pops up. How can I turn it off?</p>
238
6005
2011-12-14T01:37:32.200
2011-12-16T22:37:19.343
How to turn off calling help on F1?
[ "keyboard", "shortcut-keys" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ol>\n<li>Launch System → Preferences → Keyboard Shortcuts</li>\n<li>Locate the line that says \"Launch help browser\"</li>\n<li>Click where it says \"F1\"</li>\n<li>Hit the Backspace key.</li>\n<li>It should now say \"Disabled\"</li>\n</ol>\n", "commentCount": "2", "comments": [ ...
[ { "accepted": true, "body": "<ol>\n<li>Launch System → Preferences → Keyboard Shortcuts</li>\n<li>Locate the line that says \"Launch help browser\"</li>\n<li>Click where it says \"F1\"</li>\n<li>Hit the Backspace key.</li>\n<li>It should now say \"Disabled\"</li>\n</ol>\n", "commentCount": "2", "com...
null
null
null
null
null
2401
1
null
2010-08-16T18:18:23.997
2
1408
<p>A fresh install gives me full native resolution but it's still pretty unusable. Scrolling a browser or page of text is so slow it's forced me back to windows (!). Youtube video is out of the question.</p> <p>I've also tried netbook edition but same problems (unsurprisingly).</p> <p>Specifically, I have the Sony VG...
1341
null
null
2012-04-05T14:34:00.077
Has anyone got graphics working properly on 10.04 on a Sony Vaio P series?
[ "10.04", "drivers", "sony", "vaio" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>It's a known problem with the intel GMA 500 that your computer uses. The fix is avaliable in a <a href=\"http://code.google.com/p/gma500/wiki/PPARepository\" rel=\"nofollow\">ppa</a>. To sum up, type in your teminal:</p>\n\n<pre><code>sudo add-apt-repository ppa:gma500/ppa\ns...
null
null
2013-03-14T17:05:02.013
null
null
2405
1
2486
2010-08-16T18:43:23.947
1
531
<p>Something's wrong with nautilus. When I boot my computer and it logs in, Gnome shows, things are running, I can run programs and everything, but my desktop has no icons. I have to open a terminal and run <code>killall nautilus</code> and then suddenly everything works fine.</p> <p>How can I diagnose and fix this? O...
65
333
2010-08-16T20:43:48.857
2010-08-17T14:52:16.013
Nautilus doesn't show my desktop until I kill it
[ "10.04", "nautilus", "scripts", "startup" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-08-16T19:38:05.097", "id": "2363", "postId": "2405", "score": "0", "text": "Are you running GNOME? Are there any messages in `$HOME/.xsession-errors`?", "userDisplayName": null, "userId": "236" } ]
{ "accepted": true, "body": "<p>This is a known bug in GNOME affecting many distributions.</p>\n\n<p>See <a href=\"https://bugs.launchpad.net/fedora/+source/nautilus/+bug/218070\" rel=\"nofollow\">this bug report</a> for details and workarounds.</p>\n", "commentCount": "1", "comments": [ { "creationDa...
[ { "accepted": null, "body": "<pre><code>#!/bin/bash\nkillall nautilus\n</code></pre>\n\n<p>Would be your script. make sure you make it executable</p>\n\n<pre><code>chmod +x nameofscript.sh\n</code></pre>\n\n<p>all you would have to do is place the script in the start up sequence using. </p>\n\n<p>Systems > ...
null
null
null
null
null
2408
1
2694
2010-08-16T19:03:48.103
6
2922
<p>I've been using Ubuntu for about 8 months now, and the time it takes to un-hibernate seems to vary by minutes sometimes. I haven't been able to see a correlation between what's open when it's hibernated and how long it takes. I'm wondering how to go about diagnosing this?</p> <p>I spun off the question about timing...
1333
-1
2017-04-12T07:23:19.023
2019-08-31T18:17:59.630
Where do I even start if hibernate / un-hibernate is slow?
[ "hibernate" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The official hibernate troubleshooting page is <a href=\"https://wiki.ubuntu.com/DebuggingKernelSuspendHibernateResume\" rel=\"nofollow\">Debugging Kernel Hibernate</a></p>\n\n<p>However, <a href=\"http://ubuntuforums.org/showthread.php?t=1144999\" rel=\"nofollow\">this</a> forums ar...
[ { "accepted": null, "body": "<p>I think the time taken to (un)hibernate will depend mainly on the RAM and swap usage. When you hibernate, the data in RAM is basically saved into swap and when you unhibernate it is loaded from disk. This will be slower when there is more RAM to move. When some swap is used i...
null
null
null
null
null
2411
1
2537
2010-08-16T19:22:44.867
301
236305
<p>I think I'm being the victim of a bug here. Sometimes while I'm working (I still don't know why), my network traffic goes up to 200 KB/s and stays that way, even tough I'm not doing anything internet-related. </p> <p>This sometimes happens to me with the CPU usage. When it does, I just run a <code>top</code> comman...
1012
196255
2013-12-11T11:21:16.300
2023-03-16T15:34:45.813
How do I find out which process is eating up my bandwidth?
[ "networking", "bandwidth" ]
6
2
CC BY-SA 3.0
[ { "creationDate": "2023-04-10T08:29:05.240", "id": "2561545", "postId": "2411", "score": "0", "text": "Related: https://unix.stackexchange.com/questions/67807/is-there-a-top-like-command-that-shows-the-network-bandwidths-and-file-accesses", "userDisplayName": null, "userId": "52975" },...
{ "accepted": true, "body": "<p>I've had a lot of success with <a href=\"https://github.com/raboof/nethogs\" rel=\"noreferrer\">nethogs</a>. It has to run as root but there are different ways you can sort the statistics (like KB/s or total bandwidth monitored since nethogs started).</p>\n<p>Also, if you use wireles...
[ { "accepted": null, "body": "<p>You might want to look into <code>ntop</code> - which should monitor network activity on a process level. You can find <code>ntop</code> in the Software Center or with <code>sudo apt-get install ntop</code></p>\n\n<p>For installation instruction, follow their page <a href=\"h...
null
null
null
null
null