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
3617
1
3620
2010-09-04T20:16:41.417
15
14554
<p>I would like to create a movie DVD that contains some pictures and small movies. I'm not after anything too fancy, just the ability to add some music, create a title screen and add a menu. Basically, something like <a href="http://explore.live.com/windows-live-movie-maker">Windows Movie Maker</a>. </p> <p>What would be my best option?</p>
1986
22949
2013-08-30T14:29:30.690
2013-08-30T14:29:30.690
How do I create a movie DVD?
[ "software-recommendation", "dvd" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Another good alternative to Windows Movie Maker is <a href=\"http://www.openshotvideo.com/\">OpenShot</a> which has more features than pitivi but still manages to have a simple, easy to use interface. A good program for writing videos to DVD (With support for titles and menus) is <a href=\"http://www.rastersoft.com/programas/devede.html\">DeVeDe</a>.</p>\n\n<p>Both of these applications are available to install from the Ubuntu Software Centre.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2012-05-07T03:11:15.803", "id": "158132", "postId": "3620", "score": "0", "text": "K3b is also good at writing DVD movies.", "userDisplayName": null, "userId": "53649" }, { "creationDate": "2016-08-03T11:14:59.717", "id": "1218668", "postId": "3620", "score": "0", "text": "I used DeVeDe and it got the job done!", "userDisplayName": null, "userId": "183715" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-04T21:02:09.770", "id": "3620", "lastActivityDate": "2010-09-04T21:02:09.770", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "667", "parentId": "3617", "postTypeId": "2", "score": "11" }
[ { "accepted": null, "body": "<p>You can create a video DVD using Brasero CD-creator, which you can find in the multimedia menu. </p>\n\n<p>If you launch it, you can select 'make a video CD/DVD'. \nThen you can add movies to it. </p>\n\n<p>If you want to edit your movies, you can use Pitivi, also found in th...
null
null
null
null
null
3618
1
3814
2010-09-04T20:44:27.743
5
3140
<p>My server (running ubuntu 8.04LTS server) reports the time as 9:38PM BST right now. BST (British Summer Time) is 1 hour ahead of UTC (or Greenwich Mean Time if you really want to confuse matters)</p> <p>The act of parliament defines that we in the UK use BST for</p> <blockquote> <p>the period beginning at one o'clock, Greenwich mean time, in the morning of the last Sunday in March and ending at one o'clock, Greenwich mean time, in the morning of the last Sunday in October.</p> </blockquote> <p>No problems scheduling this in cron but I don't know what date format/timezone I should be using. Do I set it to move forward at 1AM but back at 2AM when it ends? That makes sense if the machine uses BST but then I worry that that cron will not trigger at 2AM because the system clock might get reset back to 1AM before it has a chance to trigger - thus making my script run 1 hour late.</p> <p>Or does it just use UTC?</p>
1008
235
2010-09-04T21:21:09.753
2013-02-06T13:27:51.757
How can I use cron to schedule a script that implements daylight saving on a non- DST aware application when my server automatically uses DST?
[ "server", "cron-jobs", "time", "8.04" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The answer lies in the cron sources (which you can get by <code>apt-get source cron</code>),\nparticularly in the main loop at lines 159--272 of file <code>cron.c</code>.</p>\n\n<p><code>crond</code> sleeps for a minute, then wakes up and queries the\nsystem time, comparing it to its own idea of time (i.e., what time it\nwould be if nothing altered the clock). Based on the difference\nbetween the actual and the expected time, <code>crond</code> takes different\nactions; two of them are relevant in your case:</p>\n\n<ol>\n<li><p>Time has leaped forward more than 5 minutes but less than 3 hours\n(DST starts): cron runs wildcard jobs scheduled at the actual time,\nand any job scheduled at a fixed time between the computed time and\nthe actual time. Relevant source is at lines 221--247:</p>\n\n<pre><code> /*\n * case 2: timeDiff is a medium-sized positive number,\n * for example because we went to DST run wildcard\n * jobs once, then run any fixed-time jobs that would\n * otherwise be skipped if we use up our minute\n * (possible, if there are a lot of jobs to run) go\n * around the loop again so that wildcard jobs have\n * a chance to run, and we do our housekeeping\n */\n Debug(DSCH, (\"[%d], DST begins %d minutes to go\\n\",\n getpid(), timeRunning - virtualTime))\n /* run wildcard jobs for current minute */\n find_jobs(timeRunning, &amp;database, TRUE, FALSE);\n\n\n /* run fixed-time jobs for each minute missed */ \n do {\n if (job_runqueue())\n sleep(10);\n virtualTime++;\n find_jobs(virtualTime, &amp;database, FALSE, TRUE);\n set_time();\n } while (virtualTime&lt; timeRunning &amp;&amp;\n clockTime == timeRunning);\n break;\n</code></pre></li>\n<li><p>Time has gone backwards less than 3 hours (DST ends): just run\nwildcard jobs, skip fixed-schedule jobs since they have already\nrun. Relevant source is at lines 247--258:</p>\n\n<pre><code>/*\n * case 3: timeDiff is a small or medium-sized\n * negative num, eg. because of DST ending just run\n * the wildcard jobs. The fixed-time jobs probably\n * have already run, and should not be repeated\n * virtual time does not change until we are caught up\n */\nDebug(DSCH, (\"[%d], DST ends %d minutes to go\\n\",\n getpid(), virtualTime - timeRunning))\nfind_jobs(timeRunning, &amp;database, TRUE, FALSE);\nbreak;\n</code></pre></li>\n</ol>\n\n<p>So, when entering DST, you should have no problem: your script will be\nrun (either just before, or immediately after the time leap).</p>\n\n<p>When exiting DST, there is a risk that your (fixed-time) job will be\nskipped, if you schedule it <em>exactly</em> at 1 o'clock. My suggestion\nwould be to schedule the run either 1 minute before 1 o'clock, \nor at 2 o'clock (or after). </p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-07T17:06:34.383", "id": "3814", "lastActivityDate": "2010-09-08T13:23:03.650", "lastEditDate": "2010-09-08T13:23:03.650", "lastEditorDisplayName": null, "lastEditorUserId": "325", "ownerDisplayName": null, "ownerUserId": "325", "parentId": "3618", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>You may try to toggle the <code>UTC=no</code> if it's <code>yes</code> or vice versa in <code>/etc/default/rcS</code>. To do this, run:</p>\n\n<pre><code>gksu gedit /etc/default/rcS\n</code></pre>\n\n<ul>\n<li>Change <code>UTC=no</code> to <code>UTC=yes</code>, <em>or</em></l...
null
null
null
null
null
3623
1
3624
2010-09-04T21:55:01.473
10
3569
<p>Often I need to create packages which another package depend on (i.e. build dependencies). Instead of having all those packages first being build in my ppa (which can sometimes take some time), I would like to use the results directory from pbuilder as a source for the pbuilder itself.</p> <p>How can I do this? Can I do this via a hook? </p>
4
null
null
2010-10-11T04:21:48.030
How can I use local .deb files in my pbuilder builds?
[ "packaging", "pbuilder" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can stick them in a simple repo created with dpkg-scanpackages and make that available via apache. Then update pbuilder's apt config to use your repo.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-04T22:01:30.303", "id": "3643", "postId": "3624", "score": "3", "text": "See also https://wiki.ubuntu.com/PbuilderHowto#Building With Local Packages. Not sure if their OTHERMIRROR example, against local file system works right off. I took the easy route of using a http://localhost/ path for my extra package repo.", "userDisplayName": null, "userId": "24" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-04T21:57:31.427", "id": "3624", "lastActivityDate": "2010-09-04T21:57:31.427", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "945", "parentId": "3623", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>You can stick them in a simple repo created with dpkg-scanpackages and make that available via apache. Then update pbuilder's apt config to use your repo.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-04T22:01:30.303", "id...
null
null
null
null
null
3627
1
3643
2010-09-04T22:27:52.623
3
288
<p>Suddenly, the propriety Broadcom STA wireless driver ceased to work on my Inspiron 1525 Dell. All of a sudden, when I turned on the laptop the tooltip of the wireless indicator in the top panel shows <code>networking disabled</code>.</p> <p>This also cause the wired network interface not to work, unless I manually <code>dhclient</code> it.</p> <p>Indeed, <code>lsmod</code> doesn't show anything with <code>bcm</code> in it.</p> <p>How can I further troubleshoot the issue?</p>
1453
235
2010-09-05T18:01:11.637
2010-09-05T18:01:11.637
Proprietary BCM wireless driver ceased to work
[ "wireless", "inspiron" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Look at the file <code>/var/lib/NetworkManager/NetworkManager.state</code>. Very likely the attribute <code>NetworkingEnabled</code> or <code>WirelessEnabled</code> is set to false. </p>\n\n<p>Make sure the two lines show</p>\n\n<pre><code>NetworkingEnabled=true\nWirelessEnabled=true\n</code></pre>\n\n<p>save the file and the restart the network-manager daemon with</p>\n\n<pre><code>sudo stop network-manager\nsudo start network-manager\n</code></pre>\n\n<p>After this your network should come up again. </p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-09-05T04:57:17.633", "id": "3659", "postId": "3643", "score": "0", "text": "How could that happen? I didn't do anything with sudo at all. Moreover, after I suspended and got back from suspending it suddenly began to work. I really hate this kind of weird problems.", "userDisplayName": null, "userId": "1453" }, { "creationDate": "2010-09-05T16:29:35.847", "id": "3682", "postId": "3643", "score": "0", "text": "Yeah. sometimes that happens particularly when the computer crashes, or in conjunction with sleeping when it crashes from that state. If we would know exactly the details, we probably would have fixed it already. Otherwise, please use this workaround, and hopefully we will find the source and remove the problem in its entirety.", "userDisplayName": null, "userId": "4" }, { "creationDate": "2010-09-11T18:56:25.127", "id": "4070", "postId": "3643", "score": "0", "text": "what you should do is, detect that the networking is not enabled, and add to the networking menu option to \"Renew NetworkManager\", in case it is off. Thanks.", "userDisplayName": null, "userId": "1453" }, { "creationDate": "2010-09-11T18:58:16.680", "id": "4071", "postId": "3643", "score": "0", "text": "it happens after I return from hibernate, and it for some reason fails to return from hibernate. I'll try to report a bug once details are clear...", "userDisplayName": null, "userId": "1453" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-05T01:31:03.597", "id": "3643", "lastActivityDate": "2010-09-05T01:31:03.597", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "4", "parentId": "3627", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>Look at the file <code>/var/lib/NetworkManager/NetworkManager.state</code>. Very likely the attribute <code>NetworkingEnabled</code> or <code>WirelessEnabled</code> is set to false. </p>\n\n<p>Make sure the two lines show</p>\n\n<pre><code>NetworkingEnabled=true\nWirelessEna...
null
null
null
null
null
3629
1
3631
2010-09-04T22:34:24.267
8
3815
<p>I'm looking to stream my desktop live via a service such as ustream and having extreme difficulty in finding a solution.</p> <p>I've tried WebcamStudio and it could only use FME files which don't work with Ustream. </p>
497
25863
2012-11-21T21:52:52.467
2012-11-21T21:52:52.467
How can I stream my desktop via Ustream?
[ "video", "streaming" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Steps:</p>\n\n<ol>\n<li>Install webcam studio ( <a href=\"http://sourceforge.net/projects/webcamstudio/files/\" rel=\"nofollow\">http://sourceforge.net/projects/webcamstudio/files/</a> )</li>\n<li>start <code>webcamstudio</code></li>\n<li>click <code>Sources</code> => <code>Desktop</code></li>\n<li>click the Play icon</li>\n<li>you can checkout a preview with the <code>Show Preview</code> button</li>\n<li>login to ustream and click start broadcast</li>\n<li>in the flash input dialog choose <code>webcamstudio</code></li>\n</ol>\n\n<p>credits go to: <a href=\"http://ubuntuforums.org/showpost.php?p=9517840&amp;postcount=16\" rel=\"nofollow\">http://ubuntuforums.org/showpost.php?p=9517840&amp;postcount=16</a>\n<br>\nedit: Testet this at lucid and it is working.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2013-02-12T16:39:34.167", "id": "318189", "postId": "3631", "score": "0", "text": "The latest version of WCS doesn't work. It's deprecated. :(", "userDisplayName": null, "userId": "40299" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-04T22:43:37.957", "id": "3631", "lastActivityDate": "2010-09-05T22:23:08.623", "lastEditDate": "2010-09-05T22:23:08.623", "lastEditorDisplayName": null, "lastEditorUserId": "1990", "ownerDisplayName": null, "ownerUserId": "1990", "parentId": "3629", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Steps:</p>\n\n<ol>\n<li>Install webcam studio ( <a href=\"http://sourceforge.net/projects/webcamstudio/files/\" rel=\"nofollow\">http://sourceforge.net/projects/webcamstudio/files/</a> )</li>\n<li>start <code>webcamstudio</code></li>\n<li>click <code>Sources</code> => <code>D...
null
null
null
null
null
3632
1
3644
2010-09-04T22:46:18.157
4
216
<p>In order to allow php5.2 being used on lucid, I created a ppa (<a href="https://launchpad.net/~txwikinger/+archive/php5.2" rel="nofollow">ppa:txwikinger/php5.2</a>) and build several php5.2 packages there. In order to prefer those packages I have given instructions to pin them. However, the packages php5-mcrypt and php5-imap do not correctly load due to the dependency to phpapi, even phpapi is provided by i.e. php5-cgi, php5-cli which are available. What is the problem?</p>
4
null
null
2010-09-25T17:00:08.260
How can I make sure that pinning with apt-get is compatible with virtual packages?
[ "apt", "packaging", "pinning" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I found the problem. I made a mistake with the pinning conditions. </p>\n\n<p>Edit:</p>\n\n<p>The version of the pinning did not match what could be found or was missing for the package depending on the virtual package.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-05T05:00:04.497", "id": "3661", "postId": "3644", "score": "2", "text": "What exactly was the mistake? Posting more detail would make this question more useful to anyone who finds themselves in a similar situation.", "userDisplayName": null, "userId": "453" }, { "creationDate": "2010-09-25T16:59:38.717", "id": "4855", "postId": "3644", "score": "0", "text": "The version of the pinning did not match what could be found or was missing for the package depending on the virtual package.", "userDisplayName": null, "userId": "4" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-05T02:12:24.593", "id": "3644", "lastActivityDate": "2010-09-25T17:00:08.260", "lastEditDate": "2010-09-25T17:00:08.260", "lastEditorDisplayName": null, "lastEditorUserId": "4", "ownerDisplayName": null, "ownerUserId": "4", "parentId": "3632", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>I found the problem. I made a mistake with the pinning conditions. </p>\n\n<p>Edit:</p>\n\n<p>The version of the pinning did not match what could be found or was missing for the package depending on the virtual package.</p>\n", "commentCount": "2", "comments": [ ...
null
null
null
null
null
3645
1
3650
2010-09-05T04:07:35.653
57
389492
<p>I have a file that ends in .ts, which according to wikipedia is an <a href="http://en.wikipedia.org/wiki/MPEG_transport_stream">MPEG2 file</a>. I've never run into a file like this so I want it want the file to be in a more common format/container to use on multiple devices.</p>
235
169736
2014-02-19T02:12:20.563
2017-02-21T13:04:26.713
How do I convert .ts files into something useful?
[ "video", "format-conversion" ]
7
4
CC BY-SA 2.5
[ { "creationDate": "2016-10-19T12:08:04.217", "id": "1283513", "postId": "3645", "score": "1", "text": "Old question, but in 2016 with 'normal' Ubuntu codecs, common players like VLC and SMPlayer can play `.ts` files as such, and maybe they should be left alone, especially that when trying the mo...
{ "accepted": true, "body": "<p>.TS files are technically just MPEG2 files. You can use pretty much any converter (avidemux, handbrake or even ffmpeg directly).</p>\n\n<p>But the only reason to do so would be filesize. Mpeg2 files play pretty much everywhere.\nThe only confusing part is the actual file-extension.</p>\n\n<p>You can safely and freely rename them to .mpeg</p>\n\n<p>PS. By turning it into Matroska, you just made is very hard for people on other systems to be able to play the file. I understand picking a free codec, and then choosing the appropiate container, but if you keep it at MPEG2, why change the container to something relatively obscure?</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-09-05T17:55:14.983", "id": "3688", "postId": "3650", "score": "0", "text": "Thanks for clearing this all up! Renaming it seems to be exactly what I needed to get me video players to recognize the file.", "userDisplayName": null, "userId": "235" }, { "creationDate": "2010-09-06T07:29:36.387", "id": "3725", "postId": "3650", "score": "40", "text": "A .ts file is an MPEG ‘transport stream’; it's not at all the same container as a ‘program stream’ (typically .mpeg). Resolution has nothing to do with it. Transport streams can contain multiple independent groups of video/streams, and have a load of error correction data (making .ts files bigger). They're typically used for broadcast systems where multiple channels are multiplexed and the transmission medium may be unreliable. For PC use where file integrity is (hopefully) assured, you will save space and improve compatibility by converting to a Program Stream.", "userDisplayName": null, "userId": "1889" }, { "creationDate": "2012-11-07T09:01:11.993", "id": "265171", "postId": "3650", "score": "26", "text": "This answer is wrong. There are two different container formats for MPEG: MPEG-PS (program stream) and MPEG-TS (transport stream). MPEG-PS files can be .mpeg, .mpg, .vob, etc. MPEG-TS files can be .ts, .mts, or something else. You cannot simply change the file extension to convert between them. But you *can* re-mux from one to the other without losing quality, retaining the same encoded video/audio streams from one container format to the other. BTW, Ralf's suggestion may *appear* to work but only in media players that ignore the file extension and support both formats anyway.", "userDisplayName": null, "userId": "54256" }, { "creationDate": "2012-11-07T09:05:58.053", "id": "265176", "postId": "3650", "score": "0", "text": "Kees Cook's answer is the one that I would recommend following.", "userDisplayName": null, "userId": "54256" }, { "creationDate": "2014-08-04T11:36:11.707", "id": "683207", "postId": "3650", "score": "11", "text": "According to who MKV is \"obscure\"?", "userDisplayName": null, "userId": "271" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-09-05T07:37:03.140", "id": "3650", "lastActivityDate": "2017-02-21T13:04:26.713", "lastEditDate": "2017-02-21T13:04:26.713", "lastEditorDisplayName": null, "lastEditorUserId": "32201", "ownerDisplayName": null, "ownerUserId": "1958", "parentId": "3645", "postTypeId": "2", "score": "39" }
[ { "accepted": null, "body": "<p>From looking at this <a href=\"http://ubuntuforums.org/showthread.php?t=920606\">forums thread</a> I can make it into a matroska file, which I already use.</p>\n\n<pre><code> ffmpeg -i input.ts -vcodec copy -sameq -acodec copy -f matroska output.ts\n</code></pre>\n\n<p>I was ...
null
null
null
null
null
3648
1
null
2010-09-05T06:20:30.943
2
873
<p>The pen works great out of the box. Any idea how to get multi-touch working?</p> <p>Thanks!</p>
71
null
null
2010-10-22T20:37:34.360
multi-touch support with fujitsu t900
[ "drivers", "tablet", "multi-touch" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Multitouch is supposed to be better supported in Maverick...\n<a href=\"http://www.markshuttleworth.com/archives/455\" rel=\"nofollow\">http://www.markshuttleworth.com/archives/455</a></p>\n\n<p>Maybe you just have to wait, or if you can't, install the Beta :-)</p>\n", "c...
null
null
2013-03-14T17:08:08.967
null
null
3651
1
3914
2010-09-05T07:37:41.790
9
5673
<p>I have Ubuntu 10.04 server currently setup with dhcp3-server as well as a bridged interface (br0) for use with virtual machines. The problem I have is that when the server reboots, dhcp3-server fails to load because of the extra delay caused by bringing up the bridged interface.</p> <p>Essentially br0 doesn't have an IP address for use with DHCP3-Server until late in the boot cycle, well after DHCP3-server has attempted to load.</p> <p>Once the server has booted I can run '/etc/init.d/dhcp3-server start' without any issue.</p> <p>Is there any way I can either: - Force dhcp3-server to wait until the interface has loaded before attempting to load? - Start dhcp3-server after everything else has loaded up?</p>
2009
8844
2011-09-04T03:55:28.223
2017-10-22T20:49:19.083
How can I start DHCP3-server later, so that it waits for a bridge interface to initialise before loading?
[ "10.04", "server", "networking", "virtualization" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>One solution is to tell the dhcp-server not to start automatically and then add the following two lines to you <code>/etc/network/interfaces</code> file for you bridge definition</p>\n\n<pre><code>post-up /etc/init.d/dhcp3-server start\npre-down /etc/init.d/dhcp3-server stop\n</code></pre>\n\n<p>So it will end up looking like this</p>\n\n<pre><code>iface br0 inet static\n bridge_ports eth0 eth1\n address 192.168.1.2\n broadcast 192.168.1.255\n netmask 255.255.255.0\n gateway 192.168.1.1\n post-up /etc/init.d/dhcp3-server start\n pre-down /etc/init.d/dhcp3-server stop\n</code></pre>\n\n<p>This way the network management (ifup/ifdown, NOT network-manager) will start the DHCP server after bringing up the bridge, and shut it down before removing the bridge.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-11T05:45:30.593", "id": "4041", "postId": "3914", "score": "0", "text": "I have tested both answers and this post-up / pre-down solution is much much cleaner and upgrade friendly. Thanks heaps for the great suggestions! I searched high and low for a simple solution like this one", "userDisplayName": null, "userId": "2009" }, { "creationDate": "2010-09-11T12:05:12.950", "id": "4047", "postId": "3914", "score": "0", "text": "My pleasure ;) its always great to be appreciated.", "userDisplayName": null, "userId": "455" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-09T12:10:40.050", "id": "3914", "lastActivityDate": "2010-09-09T12:10:40.050", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "455", "parentId": "3651", "postTypeId": "2", "score": "11" }
[ { "accepted": null, "body": "<p>You could modify the <code>/etc/init.d/dhcp3-server</code> startup script to wait for\nan IP address to be available on <code>br0</code>. For instance: <em>(Warning: untested code!)</em></p>\n\n<pre><code># wait 5 secs between br0-ready tests\nwait_time_between_probes=5\n# m...
null
null
null
null
null
3652
1
null
2010-09-05T08:09:03.153
4
2445
<p>I want to do iPhone tethering using MyWi, I can see the network it creates but I just can't join. Having WEP security on would throw me into the passphrase input again and leaving it unprotected doesn't connect.</p>
2010
41
2010-10-15T16:14:31.193
2010-10-15T16:14:31.193
Can't join wifi ad hoc network created by MyWi
[ "10.04", "wireless", "networking", "iphone", "tether" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>Make sure you are using it with the correct security type. Most keys are 40/128bit.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-22T10:13:01.897", "id": "4554", ...
null
null
2013-03-14T17:08:49.433
null
null
3656
1
null
2010-09-05T10:30:11.750
9
820
<p>I run Ubuntu 10.04 on an EEEPC with a <strong>4GB fast SSD</strong> set as the / partition, and a <strong>16GB slower SSD</strong> set as the /home partition. I keep running out of space on "/", and can no longer install the latest updates, or new apps.</p> <p>How can I better manage the partitions to avoid this problem? Bear in mind that the large SSD is lower performance so I don't think I should use this for the OS. Is it possible to install apps to a different partition when using apt?</p> <p>Any advice?</p> <p>Thank you.</p>
2015
null
null
2010-09-05T11:48:45.070
Partition advice, how can I stop running out of space on "/" partition?
[ "apt", "partitioning" ]
3
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>On my old EEE701 with 4Gb, I found that Synaptic keeps all old deb files after downloading them in /var/cache/apt/archives. If you set this to clear out after download, you might find that 4Gb is enough on its own.</p>\n\n<p>In Synaptic, go to settings/preferences, choose th...
null
null
null
null
null
3659
1
null
2010-09-05T11:11:11.313
7
11192
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/49869/how-to-roll-back-ubuntu-to-a-previous-version">How to roll back Ubuntu to a previous version?</a> </p> </blockquote> <p>Is it at all possible to downgrade from one version of Ubuntu to a previous version without doing a re-install similar to the way you can upgrade.</p> <p>If so, what are the required steps?</p> <p><em>In this specific case from Netbook Remix 10.10 to Netbook Remix 10.04</em></p>
null
-1
2017-04-13T12:24:17.760
2010-12-01T00:54:57.327
Downgrade from one version to a previous version?
[ "10.04", "10.10", "ubuntu-netbook", "uninstall", "versions" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2012-05-22T16:17:46.593
null
Diago
3662
1
null
2010-09-05T12:18:54.390
14
5966
<p>I'd like to map </p> <ul> <li><p><kbd>Super</kbd> + <kbd>UpArrow</kbd> to <kbd>PageUp</kbd></p></li> <li><p><kbd>Super</kbd> + <kbd>DownArrow</kbd> to <kbd>PageDown</kbd></p></li> <li><p><kbd>Super</kbd> + <kbd>Left</kbd> to <kbd>Home</kbd></p></li> <li><p><kbd>Super</kbd> + <kbd>Right</kbd> to <kbd>End</kbd> </p></li> </ul> <p>on an Apple aluminum wireless keyboard. Those who know the keyboard would note that it already does these with the <kbd>Fn</kbd> key by default; that's fine, and I'd like to keep that, but be able to do the same with a one-handed key combination as well, hence my wanting the <kbd>Super</kbd> mappings.</p> <p>I've been searching around for a possible way to do this via xmodmap for 3 hours, yet nothing has worked. </p>
2020
17739
2011-10-27T18:42:07.367
2011-10-27T18:42:42.220
How can I map Super + UpArrow to PageUp?
[ "keyboard", "keyboard-layout", "shortcut-keys" ]
2
0
CC BY-SA 3.0
[]
null
[ { "accepted": null, "body": "<p>I've tried something similar using xmodmap and its cognates and didn't succeed. Try <code>xbindkeys</code> in conjunction with <code>xdotool</code>. This is what I put in <code>~/.xbindkeysrc</code> to bind numeric keypad 1 and 2 to <kbd>Ctrl</kbd>-<kbd>PageUp</kbd> and <kbd>...
null
null
null
null
null
3667
1
150793
2010-09-05T14:12:54.577
3
3136
<p>After installing Ubuntu 10.04 I had some flickering issues, so I tried upgrading drivers and such, then I installed the <code>fglrx</code> driver and the flickering have gone away but when trying to access the TTY screens from 1-6 the screen goes blank. I'm able to get back in to gnome on tty7.</p> <p>any one have a suggestion on what to try here?</p> <hr> <p><strong>Dennis</strong></p> <p>the output is:</p> <p>glennwiz@Linux-laptop:~$ sudo cat /dev/vcs1</p> <pre><code>Ubuntu 10.04.1 LTS Linux-laptop tty1 Linux-laptop login: </code></pre> <p><strong>Nerdfest</strong> im using radeon x1300</p> <pre><code>lspci output 00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub (rev 03) 00:01.0 PCI bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express PCI Express Root Port (rev 03) 00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller (rev 01) 00:1c.0 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 1 (rev 01) 00:1c.1 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 2 (rev 01) 00:1c.3 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 4 (rev 01) 00:1d.0 USB Controller: Intel Corporation N10/ICH7 Family USB UHCI Controller #1 (rev 01) 00:1d.1 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #2 (rev 01) 00:1d.2 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #3 (rev 01) 00:1d.3 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #4 (rev 01) 00:1d.7 USB Controller: Intel Corporation N10/ICH 7 Family USB2 EHCI Controller (rev 01) 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e1) 00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 01) 00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 01) 01:00.0 VGA compatible controller: ATI Technologies Inc M52 [Mobility Radeon X1300] 02:06.0 CardBus bridge: Texas Instruments PCIxx12 Cardbus Controller 02:06.2 Mass storage controller: Texas Instruments 5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD) 02:06.3 SD Host controller: Texas Instruments PCIxx12 SDA Standard Compliant SD Host Controller 02:06.4 Communication controller: Texas Instruments PCIxx12 GemCore based SmartCard controller 08:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5753M Gigabit Ethernet PCI Express (rev 21) 10:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02) </code></pre> <hr> <p>Anyone have a suggestion?</p>
1085
1085
2010-09-06T22:05:53.553
2013-09-02T17:43:45.230
Black tty 1-6 screens
[ "10.04", "drivers", "upgrade" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I know this thread has been dead for quite a while now, but the problem may still exist for some of you, as it did for me until some moments ago.\nHere is how to get your tty-consoles back if you just get black screens after hitting <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>F1</kbd> to <kbd>F6</kbd>:</p>\n\n<ol>\n<li><p>In a console, run</p>\n\n<pre><code>sudo apt-get install v86d\n</code></pre></li>\n<li><p>When installation finishes, open:</p>\n\n<pre><code>gksudo gedit /etc/default/grub\n</code></pre></li>\n<li><p>Find the line that reads:</p>\n\n<pre><code>GRUB_CMDLINE_LINUX_DEFAULT=\"quiet\"\n</code></pre>\n\n<p><em>Note: there may be more entries between the \"\"s, depending on previous changes.</em></p>\n\n<p>Replace it with (or expand accordingly):</p>\n\n<pre><code>GRUB_CMDLINE_LINUX_DEFAULT=\"quiet nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap\"\n</code></pre></li>\n<li><p>Find another line which reads:</p>\n\n<pre><code>#GRUB_GFXMODE=640x480\n</code></pre>\n\n<p>And replace it with:</p>\n\n<pre><code>GRUB_GFXMODE=1280x1024\n</code></pre>\n\n<p>Note: be sure there's no <code>#</code> in front.</p></li>\n<li><p>Save and close the editor.</p></li>\n<li><p>Now open:</p>\n\n<pre><code>gksudo gedit /etc/initramfs-tools/modules\n</code></pre>\n\n<p>At the end of the file, add the line:</p>\n\n<pre><code>uvesafb mode_option=1280x1024-24 mtrr=3 scroll=ywrap\n</code></pre></li>\n<li><p>Save and close the editor.</p></li>\n<li><p>Finally run:</p>\n\n<pre><code>FRAMEBUFFER=y | sudo tee /etc/initramfs-tools/conf.d/splash &amp;&amp; sudo update-grub2 &amp;&amp; sudo update-initramfs -u\n</code></pre></li>\n<li><p>Now reboot. After reboot, your tty-consoles should be accessible again.</p></li>\n</ol>\n\n<p><strong>Source: <a href=\"http://crunchbanglinux.org/forums/topic/8883/how-to-fix-tty16-ctrlaltfx-terminals-if-they-are-not-working/\" rel=\"nofollow\">crunchbanglinux.org: How to fix tty1-6 (Ctrl+Alt+Fx terminals) if they are not working</a></strong></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2012-06-14T13:01:14.960", "id": "150793", "lastActivityDate": "2013-09-02T17:43:45.230", "lastEditDate": "2013-09-02T17:43:45.230", "lastEditorDisplayName": null, "lastEditorUserId": "52726", "ownerDisplayName": null, "ownerUserId": "69032", "parentId": "3667", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>Per <a href=\"https://superuser.com/questions/168740/ubuntu-10-04-ati-mobility-radeon-x1300-screen-flickering-in-dark-areas/168764#168764\">this answer on another site</a>:</p>\n\n<blockquote>\n <p>I needed to create the file\n <code>/etc/modprobe.d/radeon-kms.conf</code>, ...
null
null
null
null
null
3672
1
3676
2010-09-05T15:49:29.330
6
1691
<p>I've just upgraded to Maverick 10.10 beta and notice heavy performance penalty on my Nvidia GT240 card. Will it be fixed for release?</p> <p>EDIT:For me, 260.19.12 fixes all bugs. Perfomance &amp; stability now perfect!</p>
2026
2026
2010-10-16T04:44:41.073
2012-09-28T08:02:21.933
Nvidia proprietary driver performance in 10.10
[ "10.10", "drivers", "nvidia" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-24T15:32:08.277", "id": "30921", "postId": "3672", "score": "0", "text": "could you help me with similar problem? http://askubuntu.com/questions/27907/compiz-slow-under-proprietary-nvidia-driver", "userDisplayName": null, "userId": "1982" } ]
{ "accepted": true, "body": "<p>For those that don't know the specifics, the driver version is the recently-released <code>256.53</code>. This was released in a rush after the previous version turned out to be a huge performance slug in certain situations.</p>\n\n<p>However, there are still lots and lots of people (myself included) having problems with <code>256.53</code>. This may be related to the kernel (as everybody involved seems to be on <code>2.6.35</code>) but either way, the fix has to come from Nvidia.</p>\n\n<p>And even if they do managed to get a new version out before Maverick releases, it needs testing and pulling into Ubuntu. Do not trust to hope.</p>\n\n<p>I personally suggest you report your issue, along with a bug log (read the stickies) on the <a href=\"http://www.nvnews.net/vbulletin/forumdisplay.php?f=14\" rel=\"nofollow\">nvidia linux forum</a>. In my experience, you'll get a lot more feedback there than you will through the standard support mechanism.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-09-06T13:49:30.647", "id": "3743", "postId": "3676", "score": "0", "text": "Thanks for reply. I use exactly 256.53 driver. I have run GtkPerf and found slowest step here - text output (maybe cairo bug?) . All tests took 20 seconds, while in 10.04 it was < 3 seconds. Glxgears are slow too (2500 fps vs. 30000 in Lucid) . Now I use nouaveu driver (2D only, no compiz) and hope 3D will be fixed soon. I will check nvidia forum too.", "userDisplayName": null, "userId": "2026" }, { "creationDate": "2010-10-11T03:09:06.427", "id": "5843", "postId": "3676", "score": "0", "text": "I am having this same issue on 10.10 release and I even read around and got a 260+ beta driver. Still having the same issue very frustrating. I know there's nothing that canonical can do but I gotta go back to 10.04 until this is fixed. Everything from startup to shutdown is horribly slow.", "userDisplayName": null, "userId": "3144" }, { "creationDate": "2010-10-11T08:10:40.613", "id": "5890", "postId": "3676", "score": "0", "text": "Yes, 260.19.06 driver is not ideal too. But that bug (LCD text) was fixed.", "userDisplayName": null, "userId": "2026" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-05T16:29:22.383", "id": "3676", "lastActivityDate": "2010-09-05T16:29:22.383", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "3672", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Most likely not.</p>\n\n<p>It is the <em>proprietary</em> driver so there is not much Canonical or the community can do about it.</p>\n\n<p>The only chance that it will be improved is if it is the kernel interface to the driver that is causing the performance penalty but I ha...
null
null
null
null
null
3673
1
3685
2010-09-05T15:50:18.533
3
684
<p>I just updated to the Maverick beta (actually it's a fresh install, and not an upgrade of 10.04). But now "Ubuntu One" doesn't show up in my me-menu thing. In addition, when I go to Ubuntu One from System->Preferences and attempt to log in from there it will sometimes look like it works, but other times it won't do anything. When I go to the command line and type u1sdtool -s it will either say something like "doing auth dance" or "auth failed" and often it has never even prompted me to log in or try to get a new password (even though I know it's correct).</p> <p>Anyway, this is the main hangup I have with the Maverick beta. I can't get to my ubuntu one account from the native client.</p> <p>Is this a widespread issue? Is there something I can do to fix this?</p>
693
667
2010-09-05T16:13:53.803
2011-02-28T00:56:18.263
How to troubleshoot Ubuntu One in Maverick beta?
[ "10.10", "ubuntu-one" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-09-05T15:52:43.660", "id": "3679", "postId": "3673", "score": "0", "text": "I can't work out what you are asking - please rephrase as a question. Remember that Maverick is still in beta and shouldn't be used apart from for testing. If you find any problems like this, plea...
{ "accepted": true, "body": "<p>The Ubuntu One team welcome any testing support that you can provide. If you encounter a problem during an Ubuntu alpha or beta phase, please file bugs at our Launchpad site.\n<a href=\"https://bugs.launchpad.net/ubuntuone-client\" rel=\"nofollow\">https://bugs.launchpad.net/ubuntuone-client</a></p>\n\n<p>Before filing a bug, though, it would be helpful if you search/scan over the existing bugs in order to reduce duplicates.</p>\n\n<p>The issues that you point out have already been reported so we're working on them ;) They should be revolved very soon.</p>\n\n<p>Thanks!</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-05T20:12:40.677", "id": "3685", "lastActivityDate": "2010-09-05T20:12:40.677", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2033", "parentId": "3673", "postTypeId": "2", "score": "8" }
[ { "accepted": true, "body": "<p>The Ubuntu One team welcome any testing support that you can provide. If you encounter a problem during an Ubuntu alpha or beta phase, please file bugs at our Launchpad site.\n<a href=\"https://bugs.launchpad.net/ubuntuone-client\" rel=\"nofollow\">https://bugs.launchpad.net/...
null
null
null
null
null
3677
1
3843
2010-09-05T17:01:37.863
14
35581
<p>I use Ubuntu 10.04 and I see, that every time when I start it enables Wireless Connectivity.<br> I know, that there is a topic about it on Ubuntu forums, but I think I will get old before I get an answer there (if there is one). </p> <p>I would like to disable it by default, but to have possibility to enable or disable it later.</p> <p>I want to know how to disable the wireless adapter. Something like Fn + ... in Windows, but in windows it remembers the last state. In Ubuntu the wireless adapter is always enabled at startup.</p> <p>When I press <kbd>Fn</kbd>+<kbd>F2</kbd> it disables those diodes and Wireless + Bluetooth.</p>
2028
527764
2017-04-04T14:19:32.283
2017-04-04T14:21:17.020
Disable wireless on startup
[ "10.04", "wireless" ]
12
2
CC BY-SA 3.0
[ { "creationDate": "2022-02-11T12:52:24.350", "id": "2407469", "postId": "3677", "score": "0", "text": "People searching an alternative answer could try https://askubuntu.com/questions/1039506/how-can-i-disable-wlan-by-default-in-the-network-manager (place sudo rfkill block wifi in your /etc/rc.l...
{ "accepted": true, "body": "<p>There are so many ways to disable the card. The simplest I would say would be to put:</p>\n\n<pre><code>sudo ifdown wlan0 \n</code></pre>\n\n<p>in your <code>/etc/rc.local</code> above the line <code>exit 0</code>. This should disable the wireless card (replace <code>wlan0</code> with your wireless interface card)</p>\n\n<p>If you want to enable/disable on a keyboard press, <a href=\"http://ubuntuforums.org/showthread.php?t=1287673\" rel=\"nofollow noreferrer\">this thread on Ubuntu Forums</a> explains how to link a keyboard event to a script. If you want it to toggle when you push keys you will have to add some logic to the script. Though the simplest way might be to have one key to enable and another to disable.</p>\n\n<p>down script</p>\n\n<pre><code> #!/bin/bash\n IFACE=wlan0\n ifconfig ${IFACE} down\n</code></pre>\n\n<p>and \nup script </p>\n\n<pre><code> #!/bin/bash\n IFACE=wlan0\n ifconfig ${IFACE} up\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-09T16:11:36.683", "id": "3924", "postId": "3843", "score": "0", "text": "Do I understand correctly, that placing this `sudo ifdown wlan0` in `rc.local` will not affect the system anyhow even after reboot? Do I need to call this script somehow?", "userDisplayName": null, "userId": "2028" }, { "creationDate": "2011-07-15T13:38:09.813", "id": "59559", "postId": "3843", "score": "0", "text": "That script is called immediately at the end of the boot script. It will effectively turn off the wifi card once the system has finished booting. The only thing that will happen is that the wifi card gets turned off.", "userDisplayName": null, "userId": "10616" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-09-08T02:32:30.737", "id": "3843", "lastActivityDate": "2017-04-04T14:21:17.020", "lastEditDate": "2017-04-04T14:21:17.020", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "1643", "parentId": "3677", "postTypeId": "2", "score": "12" }
[ { "accepted": null, "body": "<p>You can stop it connecting to specific connections automatically quite easily.</p>\n\n<ol>\n<li>Right click the Network Manager notification applet</li>\n<li>Click Edit Connections...</li>\n<li>Under the Wireless tab, click edit on the connection(s) you want to disable by def...
null
null
null
null
null
3678
1
3679
2010-09-05T17:08:34.333
70
50535
<p>Does anybody know of any resources that can show me how to make my own "Dropbox, Ubuntu One" server at home?</p> <p>I really like the idea of these services, but I don't want to put my 'stuff' in the clouds. Ideally, it should have a client that runs on Linux and Windows.</p> <p>I tried to setup iFolder on my Ubuntu 10.04, but without any success so far.</p>
1978
187049
2013-08-25T04:02:40.230
2014-07-29T08:35:15.217
How to make my own Dropbox / Ubuntu One server at home?
[ "software-recommendation", "file-server" ]
12
5
CC BY-SA 3.0
[ { "creationDate": "2011-01-31T19:22:31.490", "id": "26216", "postId": "3678", "score": "0", "text": "I'm not sure I understand the problem. What's wrong with dropbox?", "userDisplayName": null, "userId": "449" }, { "creationDate": "2011-01-31T19:37:07.697", "id": "26222", ...
{ "accepted": true, "body": "<p>Currently there's not a great open source alternative that's going to work out of the box. The best thing to keep an eye on is the sparkleshare project: <a href=\"http://www.sparkleshare.org/\">http://www.sparkleshare.org/</a></p>\n\n<p>Hopefully that will grow into a great, do it yourself, alternative. </p>\n", "commentCount": "1", "comments": [ { "creationDate": "2012-02-03T21:30:11.537", "id": "116886", "postId": "3679", "score": "2", "text": "Unfortunately it is using git DVCS as backend not suited for ~1TB binary data, since modifications on binary data will bloat server space usage. But beside that it looks promising.", "userDisplayName": null, "userId": "4977" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-05T17:13:04.860", "id": "3679", "lastActivityDate": "2010-09-05T17:13:04.860", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1550", "parentId": "3678", "postTypeId": "2", "score": "41" }
[ { "accepted": true, "body": "<p>Currently there's not a great open source alternative that's going to work out of the box. The best thing to keep an eye on is the sparkleshare project: <a href=\"http://www.sparkleshare.org/\">http://www.sparkleshare.org/</a></p>\n\n<p>Hopefully that will grow into a great, ...
null
null
null
null
null
3683
1
3684
2010-09-05T19:57:11.670
2
1214
<p>Is Flock browser available in Ubuntu 10.4. If so how do I download in command line. Is it perhaps:</p> <p>sudo apt get Flock browser</p> <p>Not sure, will appreciate some help. Thnxs</p>
794
41
2010-09-05T21:06:47.570
2010-09-06T18:21:46.033
Download Flock browser in command line
[ "10.04", "command-line" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>It is probably not available in the core repositories:</p>\n\n<pre><code>apt-cache search flock\n</code></pre>\n\n<p>returns nothing like that on an Ubuntu system.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-05T20:34:46.223", "id": "3697", "postId": "3684", "score": "0", "text": "Thanks. Did a bit of browsing and found that Ubuntu needs to be prepared for Flock first with: sudo apt-get install libstdc++5", "userDisplayName": null, "userId": "794" }, { "creationDate": "2010-09-05T21:07:14.853", "id": "3698", "postId": "3684", "score": "0", "text": "@namkid: You may want to consider documenting your steps to setup Flock as an answer to this question.", "userDisplayName": null, "userId": "41" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-05T20:04:08.743", "id": "3684", "lastActivityDate": "2010-09-06T09:28:53.340", "lastEditDate": "2010-09-06T09:28:53.340", "lastEditorDisplayName": null, "lastEditorUserId": "449", "ownerDisplayName": null, "ownerUserId": "1627", "parentId": "3683", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>It is probably not available in the core repositories:</p>\n\n<pre><code>apt-cache search flock\n</code></pre>\n\n<p>returns nothing like that on an Ubuntu system.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-05T20:34:46.223", ...
null
null
null
null
null
3689
1
3698
2010-09-05T20:32:56.013
5
2991
<p>I'm currently (for some days now) having the problem, that my Ubuntu clock runs too fast. and by too fast I mean like: last time I adjusted it was at 4 PM, now (10:25 PM) it shows 10:57 PM ! Any ideas how to fix that?</p> <p>Could it have something to do with handbrake? (I'm currently ripping my DVD collection, so handbrake is always running).</p> <p>My System:</p> <p>Ubuntu 10.4, all updates, handbrake from getdeb (0.9.4 I think), Intel Core2Quad, 4 GB Ram, NVidia GTX 260 (195.36.24 according to nvidia-settings)</p> <hr /> <p><a href="http://pastebin.com/VAanad5E" rel="nofollow noreferrer">Output of <code>dmesg</code></a> <br> <a href="http://pastebin.com/VAZLAHzR" rel="nofollow noreferrer">Output of <code>cat /proc/interrupts</code></a><br></p> <p>Output of <code>cmdline</code>:</p> <pre><code>BOOT_IMAGE=/boot/vmlinuz-2.6.32-24-generic root=UUID=082d6800-413b-43d7-b4d1-b96b0d774f32 ro quiet splash </code></pre>
1826
527764
2021-05-16T11:14:00.357
2021-05-16T11:14:00.357
Clock running too fast
[ "10.04", "time" ]
4
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>Maybe your CMOS battery is getting empty (the battery on the motherboard itself).</p>\n\n<p>You can hit <code>F1</code> (or <code>DEL</code> according to you motherboard) at the first seconds during pc starup to enter BIOS. </p>\n\n<p>in the BIOS you can check the hardware clock. </p>\n\n<p>Just let the computer run and check if the time stays correct (during this time you can't use your computer)</p>\n\n<p>If the hardware clock is not running correctly, you can replace the battery.\n<a href=\"http://www.computerhope.com/issues/ch000239.htm\" rel=\"nofollow\">http://www.computerhope.com/issues/ch000239.htm</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-05T22:16:29.807", "id": "3698", "lastActivityDate": "2010-09-05T22:16:29.807", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1990", "parentId": "3689", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>Maybe your CMOS battery is getting empty (the battery on the motherboard itself).</p>\n\n<p>You can hit <code>F1</code> (or <code>DEL</code> according to you motherboard) at the first seconds during pc starup to enter BIOS. </p>\n\n<p>in the BIOS you can check the hardware cl...
null
null
null
null
null
3690
1
3692
2010-09-05T21:14:45.597
15
20024
<p>I have been moving toward Ubuntu from a long time Windows development background. The one program I cannot seem to do without is a graphic editor. I have seen recommendations for programs, but they turn out to be directed at children or tailored to working with personal photographs.</p> <p>I am looking for something more for programming tasks like analysing colors, resizing, creating web graphics, etc. I have used Photoshop in the past and more recently have mostly used Paint.net for Windows.</p> <p>Is there a program for Ubuntu that covers this area?</p>
571
5149
2011-04-27T10:18:12.317
2020-05-22T02:42:35.590
Alternative to Photoshop or Paint.NET
[ "software-recommendation" ]
12
3
CC BY-SA 3.0
[ { "creationDate": "2012-06-15T15:53:35.793", "id": "183298", "postId": "3690", "score": "2", "text": "You'll be hard-pressed to find a solid alternative other than Gimp :S", "userDisplayName": null, "userId": "40421" }, { "creationDate": "2012-06-15T16:55:38.297", "id": "1833...
{ "accepted": true, "body": "<p><a href=\"http://www.gimp.org/\" rel=\"nofollow noreferrer\">GIMP</a> (<a href=\"http://apt.ubuntu.com/p/gimp\" rel=\"nofollow noreferrer\">install</a>) should do the job.</p>\n\n<p>Many people I know complained that GIMP has an awkward and unintuitive user interface, but hopefully you can get used to it and get the job done.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-09-05T22:22:50.357", "id": "3702", "postId": "3692", "score": "0", "text": "Other aspects that GIMP noticeably lacks are some convenience features like adjustment layers and layer folders. I have used both, though, and GIMP is fine for 90% of what I need to do--which seems similar to the OPs requirements.", "userDisplayName": null, "userId": "2038" }, { "creationDate": "2010-09-05T22:53:26.147", "id": "3705", "postId": "3692", "score": "2", "text": "Thanks. I downloaded and messed around with it and thius is what I wanted. I wasn;t really an expert with Photoshop, so I don't have any UI bias to get over.", "userDisplayName": null, "userId": "571" }, { "creationDate": "2010-09-06T00:23:11.830", "id": "3708", "postId": "3692", "score": "8", "text": "I actually have experienced the reverse of the UI effect mentioned - I use GIMP so much that when I had to work with Photoshop once, it was terribly unintuitive ;-) So I think it is in fact just a familiarity bias, not something inherently better about one program's UI as opposed to the other.", "userDisplayName": null, "userId": "104" }, { "creationDate": "2011-02-20T07:03:31.823", "id": "29979", "postId": "3692", "score": "0", "text": "I have an issue with Gimp, something about the resolution. Sometimes you just can see the color change steps in gradients for instance. Something similar affects anti-aliasing.", "userDisplayName": null, "userId": "8673" }, { "creationDate": "2015-09-21T18:22:19.613", "id": "980864", "postId": "3692", "score": "1", "text": "Be sure to put GIMP in **Single-Window Mode** if you're coming from Photoshop. You can find that under the Windows menu.", "userDisplayName": null, "userId": "342764" }, { "creationDate": "2020-05-22T02:40:15.297", "id": "2093574", "postId": "3692", "score": "0", "text": "GIMP use single-window mode since version 2.7, [available from Ubuntu 14.04+](https://askubuntu.com/a/136999/349837)", "userDisplayName": null, "userId": "349837" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-09-05T21:28:08.897", "id": "3692", "lastActivityDate": "2020-05-22T02:39:34.693", "lastEditDate": "2020-05-22T02:39:34.693", "lastEditorDisplayName": null, "lastEditorUserId": "349837", "ownerDisplayName": null, "ownerUserId": "1943", "parentId": "3690", "postTypeId": "2", "score": "25" }
[ { "accepted": true, "body": "<p><a href=\"http://www.gimp.org/\" rel=\"nofollow noreferrer\">GIMP</a> (<a href=\"http://apt.ubuntu.com/p/gimp\" rel=\"nofollow noreferrer\">install</a>) should do the job.</p>\n\n<p>Many people I know complained that GIMP has an awkward and unintuitive user interface, but hop...
null
null
null
null
null
3697
1
3706
2010-09-05T22:14:49.670
400
662111
<p>How do I install fonts on Ubuntu Linux? I need them to be available in gimp.</p>
333
126561
2021-12-31T05:54:24.350
2023-12-06T18:15:59.453
How do I install fonts?
[ "fonts" ]
15
0
CC BY-SA 4.0
[]
{ "accepted": true, "body": "<p>Many fonts are packaged for Ubuntu and available via the \"Fonts\" category of the Ubuntu Software Center. If you prefer <code>apt-get</code>, search for packages starting with <em>otf-</em> or <em>ttf-</em>.</p>\n\n<p>Font files that are placed in the hidden <code>.fonts</code> directory of your home folder will automatically be available (but <code>/etc/fonts/fonts.conf</code> indicates it will be removed soon.). You can also place them in the <code>~/.local/share/fonts</code> directory on newer versions of Ubuntu per the comments below.</p>\n\n<p>You can also double-click on the font file (or select <em>Open with Font Viewer</em> in the right-click menu). Then click the <strong>Install Font</strong> button.</p>\n\n<p>If you need the fonts to be available system-wide, you'll need to copy them to <code>/usr/local/share/fonts</code> and reboot (or manually rebuild the font cache with <code>fc-cache -f -v</code>).</p>\n\n<p>You can confirm they are installed correctly by running <code>fc-list | grep \"&lt;name-of-font&gt;\"</code></p>\n\n<p>You may need to restart some programs, like OpenOffice Writer, before they actually show the new fonts (usually such programs are caching the font list when they start up).</p>\n\n<p><em>Edit: Changed advice to manually install into <code>/usr/local/share/fonts</code> instead of <code>/usr/share/fonts</code> to reflect comments and best practice.</em></p>\n", "commentCount": "9", "comments": [ { "creationDate": "2016-03-27T10:28:38.853", "id": "1119319", "postId": "3706", "score": "29", "text": "Instead of `~/.fonts`, it's also possible to place fonts in `~/.local/share/fonts`.", "userDisplayName": null, "userId": "83783" }, { "creationDate": "2016-08-16T20:37:21.580", "id": "1229910", "postId": "3706", "score": "2", "text": "This is no longer true in 16.10. You have to do it through Synaptic or another package installer.", "userDisplayName": null, "userId": "542123" }, { "creationDate": "2017-01-19T05:45:49.840", "id": "1356100", "postId": "3706", "score": "10", "text": "Manually modifying `/usr/share/fonts` feels wrong to me. I think manually installed system-wide fonts should go to `/usr/local/share/fonts`.", "userDisplayName": null, "userId": "343793" }, { "creationDate": "2017-04-06T14:15:33.380", "id": "1412915", "postId": "3706", "score": "3", "text": "_fc-cache_ comes with the package _fontconfig_ on latest Ubuntu server versions, so don't forget your `apt-get install fontconfig` if your system cannot find _fc-cache_\nAnd yes, _fc-cache_ also scans /usr/local/share/fonts, so placing them there would be more respectful of Linux filesystem hierarchy.", "userDisplayName": null, "userId": "66174" }, { "creationDate": "2017-05-08T08:13:34.410", "id": "1437169", "postId": "3706", "score": "2", "text": "Note that if you want to install `mscorefonts` you need to manually download this package https://packages.debian.org/en/sid/all/ttf-mscorefonts-installer/download since the version in the Ubuntu repositories is broken.", "userDisplayName": null, "userId": "329227" }, { "creationDate": "2018-05-20T14:01:24.813", "id": "1690656", "postId": "3706", "score": "0", "text": "And where are fonts in Gnome Software? I cannot find them. Ubuntu Software center was discontinued.", "userDisplayName": null, "userId": "573767" }, { "creationDate": "2020-04-17T06:05:20.803", "id": "2066101", "postId": "3706", "score": "1", "text": "Not all font paths are supported (auto-loaded) equally by applications. In my experience `/usr/share/fonts/` is the most reliable place.", "userDisplayName": null, "userId": "323990" }, { "creationDate": "2022-12-28T12:08:02.137", "id": "2526997", "postId": "3706", "score": "0", "text": "apt has `ttf-mscorefonts-installer`", "userDisplayName": null, "userId": "729760" }, { "creationDate": "2023-01-04T11:06:34.303", "id": "2528903", "postId": "3706", "score": "0", "text": "If the font file is not being picked up by fc-cache, it may be because the file is zipped, even if the file ending is for a font such as `.ttf`. You can verify that the file is a font file and not a zip file with `file your-file.ttf`. If it is showing as a zip file, it can be unzipped with `unzip your-file.ttf`", "userDisplayName": null, "userId": "321971" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-09-05T22:49:38.057", "id": "3706", "lastActivityDate": "2020-03-24T23:27:30.627", "lastEditDate": "2020-03-24T23:27:30.627", "lastEditorDisplayName": null, "lastEditorUserId": "247661", "ownerDisplayName": null, "ownerUserId": "115", "parentId": "3697", "postTypeId": "2", "score": "455" }
[ { "accepted": null, "body": "<p>Copy the fonts to <code>/usr/local/share/fonts</code> or a subfolder (such as <code>/usr/local/share/fonts/TTF</code>) and then run <code>sudo fc-cache -fv</code>. There are some graphical programs you can install to make this easier, but I've never felt the need to try any o...
null
null
null
null
null
3700
1
3731
2010-09-05T22:19:50.707
6
4632
<p>I have an Archos 605 media player that seems to have become corrupted, so I'm trying to run fsck on it. It mounts as a FAT32 hard drive, so I ran </p> <blockquote> <p>sudo dosfsck -a</p> </blockquote> <p>and this is what I got:</p> <blockquote> <p>dosfsck 3.0.7, 24 Dec 2009, FAT32, LFN There are differences between boot sector and its backup. Differences: (offset:original/backup) 65:03/00<br> Not automatically fixing this. Unable to create unique name</p> </blockquote> <p>I suspect this means I'm screwed, but I'd appreciate any additional insight from someone who knows more about dosfsck than I do.</p>
1081
null
null
2014-04-01T09:12:14.353
dosfsck "Unable to create unique name"
[ "fsck" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>it sounds like the partition table is screwed up. </p>\n\n<p>Fortunately there is a good linux tool to get it back working\n<br />\n<a href=\"http://en.wikipedia.org/wiki/TestDisk\" rel=\"nofollow\">http://en.wikipedia.org/wiki/TestDisk</a> </p>\n\n<p><code>sudo apt-get install testdisk</code></p>\n\n<p>the wiki contains a good guide for exactly your problem (recover fat32 partition)\n<br/>\n<a href=\"http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step\" rel=\"nofollow\">http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step</a></p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-06T11:33:40.110", "id": "3731", "lastActivityDate": "2010-09-06T11:33:40.110", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1990", "parentId": "3700", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>it sounds like the partition table is screwed up. </p>\n\n<p>Fortunately there is a good linux tool to get it back working\n<br />\n<a href=\"http://en.wikipedia.org/wiki/TestDisk\" rel=\"nofollow\">http://en.wikipedia.org/wiki/TestDisk</a> </p>\n\n<p><code>sudo apt-get insta...
null
null
null
null
null
3707
1
null
2010-09-05T22:50:09.967
8
2114
<p>I run ubuntu on my macbook pro, with nvidia proprietary driver.</p> <p>I've made a little hack script <a href="http://www.coldcode.net/2010/05/nvidia-auto-display.html" rel="nofollow">http://www.coldcode.net/2010/05/nvidia-auto-display.html</a> which detects the presence/absence of an external monitor and switches the resolution accordingly.</p> <p>Does anybody know of a better way to do that? </p> <p>My script also works around specific issues of the nvidia partial xrandr implementation; assuming a xrandr compliant xorg driver, is there a way to do the same thing in a less hackish way?</p>
1943
null
null
2010-11-05T09:51:46.197
Automatically change resolution when connecting an external monitor, nvidia driver
[ "xorg", "nvidia" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-09-14T15:56:29.727", "id": "4191", "postId": "3707", "score": "0", "text": "Not that I know of. Your script might be the best way of going about that at the moment; searching around I don't really see anything.", "userDisplayName": null, "userId": "2224" } ]
null
[ { "accepted": null, "body": "<p>I've found that running <code>gnome-display-properties</code> (on 10.04 at least) will automatically detect and configure my resolution based on the monitors I have connected at the moment. Then I can simply dismiss it (using the 'Close' button, 'Apply' works also but requir...
null
null
null
null
null
3708
1
null
2010-09-05T23:19:06.313
4
80
<p>Recently the network manager applet has been crashing immediately after startup and only at startup. It remains stable throughout the rest of the day. How would I begin to discover what the issue is? There must be a general method of attack on a problem like this. Normally I would try running the program from the terminal to see if any error messages are printed but nm-applet does not seem to crash once I restart it.</p>
100
211
2010-09-06T15:26:14.120
2010-09-06T21:40:21.910
How to troubleshoot/bug report a problem that only appears right after startup?
[ "troubleshooting", "session" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>You might want to look into <code>~/.xsession-errors</code> for relevant error messages.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-06T15:21:16.563", "id": "3740",...
null
0
null
null
null
3710
1
null
2010-09-05T23:41:32.133
1
471
<p>When I start <a href="http://www.bluetile.org/" rel="nofollow">bluetile</a> it replaces the current theme of the window manager. How can I keep the current theme and settings, and still use bluetile?</p>
640
null
null
2010-09-06T00:13:35.480
How can I stop bluetile from changing the window manager theme?
[ "themes", "compiz", "window-manager", "metacity" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>If I'm reading the bluetile site properly, it is a window manager itself, so when you load it, it replaces your window manager, which is where your theme is coming from. If you watch the video he explains the theme, the buttons have been modified to fit in with the tiling as...
null
0
2013-03-14T17:09:03.613
null
null
3719
1
3742
2010-09-06T03:10:03.977
16
5380
<p>I often use a USB mouse and my laptop's pointing stick at the same time. I can adjust the sensitivity in Mouse Preferences, but the sensitivities of the two mice are so different that I cannot find a compromise setting.</p> <p>Is there a way to specify a different sensitivity setting for each mouse?</p>
1859
74792
2014-06-10T08:43:57.667
2014-06-10T08:43:57.667
How can I set different sensitivities for two mice at the same time?
[ "xorg", "mouse", "configuration", "input-devices" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can use <a href=\"http://manpages.ubuntu.com/manpages/man1/xinput.1.html\" rel=\"noreferrer\"><strong>xinput</strong></a> to set the sensitivities/accels for the mice.</p>\n\n<pre><code>$ xinput list\n⎡ Virtual core pointer id=2 [master pointer (3)]\n⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]\n⎜ ↳ Logitech USB-PS/2 Optical Mouse id=8 [slave pointer (2)]\n⎜ ↳ Microsoft Microsoft® Nano Transceiver v2.0 id=10 [slave pointer (2)]\n⎜ ↳ Microsoft Microsoft® Nano Transceiver v2.0 id=11 [slave pointer (2)]\n⎜ ↳ Macintosh mouse button emulation id=13 [slave pointer (2)]\n⎣ Virtual core keyboard id=3 [master keyboard (2)]\n ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]\n ↳ Power Button id=6 [slave keyboard (3)]\n ↳ Power Button id=7 [slave keyboard (3)]\n ↳ Microsoft Microsoft® Nano Transceiver v2.0 id=9 [slave keyboard (3)]\n ↳ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]\n</code></pre>\n\n<p>From that output take the numeric <code>id</code> of the mice. I'll provide an example for my Logitech mouse. For multiple mice rinse and repeat.</p>\n\n<p>So for my logitech I will use <code>xinput get-feedbacks &lt;device name&gt;</code> and <code>xinput set-ptr-feedback &lt;device name&gt; &lt;threshold&gt; &lt;num&gt; &lt;denom&gt;</code></p>\n\n<pre><code>$ xinput get-feedbacks 8\n1 feedback class\nPtrFeedbackClass id=0\n accelNum is 3\n accelDenom is 10\n threshold is 4\n</code></pre>\n\n<p>The accel is set as a fraction so you need to set the nom and denom for it:</p>\n\n<pre><code>$ xinput set-ptr-feedback 8 4 3 1\n$ xinput get-feedbacks 8\n1 feedback class\nPtrFeedbackClass id=0\n accelNum is 3\n accelDenom is 1\n threshold is 4\n</code></pre>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-09-09T05:03:26.363", "id": "3895", "postId": "3742", "score": "0", "text": "Works wonders. Now I'm just banging my head against [this bug](https://bugs.launchpad.net/ubuntu/+source/xinput/+bug/507305).", "userDisplayName": null, "userId": "1859" }, { "creationDate": "2011-04-29T09:45:39.067", "id": "41944", "postId": "3742", "score": "0", "text": "Please update your bug report for natty if it still aint fixed :-S", "userDisplayName": "user15380", "userId": null }, { "creationDate": "2017-04-16T19:29:45.350", "id": "1421584", "postId": "3742", "score": "2", "text": "Is this persisted between reboots?", "userDisplayName": null, "userId": "320022" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-09-06T15:40:44.563", "id": "3742", "lastActivityDate": "2014-06-10T08:37:08.167", "lastEditDate": "2014-06-10T08:37:08.167", "lastEditorDisplayName": null, "lastEditorUserId": "74792", "ownerDisplayName": null, "ownerUserId": "289", "parentId": "3719", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>You can use <a href=\"http://manpages.ubuntu.com/manpages/man1/xinput.1.html\" rel=\"noreferrer\"><strong>xinput</strong></a> to set the sensitivities/accels for the mice.</p>\n\n<pre><code>$ xinput list\n⎡ Virtual core pointer id=2 [master pointer (3...
null
null
null
null
null
3727
1
3767
2010-09-06T10:00:32.177
-2
363
<p>The title explains it already...</p>
2051
7702
2011-04-07T11:12:52.483
2011-04-07T11:12:52.483
From the time Ubuntu font is released, how long will it take for major websites(facebook, yahoo, google etc.) to support it?
[ "fonts", "ubuntu-font-family" ]
3
5
CC BY-SA 2.5
[ { "creationDate": "2010-09-06T10:07:13.593", "id": "3733", "postId": "3727", "score": "0", "text": "Sorry, the title doesn't really explain anything. What font are you talking about? And what do you mean by \"support\"? What do you envisage these websites doing with it?", "userDisplayName": ...
{ "accepted": true, "body": "<p>The font is supported on any website that uses generic font families - serif, sans and mono. If you want the Ubuntu font to be used, you will need to set the default sans font (the Ubuntu font will be a sans font I think) in your browser options to the Ubuntu font. You could even set the serif font to the Ubuntu font but you will get a 'sans' look instead of a 'serif' look. </p>\n\n<p><img src=\"https://i.stack.imgur.com/ea3wM.png\" alt=\"fonts\"></p>\n\n<p>It is unlikely that a website will set the font specifically to the Ubuntu font, if that's what you mean. Using a specific font is discouraged in web design because users might not have this font on their system. The closest you will get (this is only likely to happen on Ubuntu related sites) is to have sites that say 'use the Ubuntu font if possible and fall back to the default sans font if the Ubuntu font is not installed' by setting the font-family to \"ubuntu,sans-serif\".</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-10-10T23:58:37.910", "id": "5812", "postId": "3767", "score": "1", "text": "That's what I meant. Sorry for not making it clear. I kinda thought that most websites, if not all, are compelled to support a font that is used by a major operating system. Apparently my understanding was wrong. Thanks for all the response :-)", "userDisplayName": null, "userId": "2051" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-06T20:34:50.753", "id": "3767", "lastActivityDate": "2010-09-06T20:34:50.753", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "667", "parentId": "3727", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Since most websites only use the most standard fonts, the answer is: Probably never.</p>\n\n<p>But seriously... :)</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2011-04-07T11:36:06.590", "id": "37861", "postId": "3739", ...
null
null
2010-09-06T22:54:13.227
null
null
3732
1
null
2010-09-06T12:13:48.893
3
5195
<p>Firefox 3.6.8 on Ubuntu 9.10; using TreeStyleTab 0.10.2010040201.</p> <p>I use the tab-bar on the right, and I would like to see more of the tab names without widening the bar. The default font used is Sans, I believe; I would like to use something like condensed DejaVu Sans. I haven't found anything in the settings, nor in the <code>about:config</code> page, so I presume I can play some .css trick, but I don't know where to start.</p> <p>How can I do this change?</p>
1629
1629
2010-09-06T23:10:59.730
2010-10-10T21:17:20.913
Change font used in the tab-bar of TreeStyleTab
[ "firefox", "9.10", "extension" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-09-06T23:13:15.717", "id": "3773", "postId": "3732", "score": "0", "text": "@Javier: I'm sorry I rolled back your edit, but I believe it is important that this is an extension-related question; I'm looking for a specific answer hopefully by someone with the same extension...
null
[ { "accepted": null, "body": "<p>You can tweak firefox UI fonts, colors etc by editing the userchrome.css file. The process is explained with a long list of snippets for \"common\" tweaks <a href=\"http://www.linnhe2.free-online.co.uk/firefox/chrome.html\" rel=\"nofollow\">here</a>. Or if u just want to twea...
null
null
2013-03-14T17:09:35.330
null
null
3735
1
3797
2010-09-06T12:50:43.740
2
5361
<p>I'm having trouble getting a cheap LCD 18.5 inch monitor to work properly with Ubuntu 10.04.1. The brand is "Great Wall". It's supposed to have resolution 1366x768, but I can only set it as 1360x768.</p> <p>I have Ubuntu installed on an external hard drive, and for what it's worth, at work I have a nicer 18.5 inch monitor, HP brand, also 1366 x 768, and it works perfectly when I boot there.</p> <p>I have tried using cvt, but it gives me this:</p> <pre><code>$ cvt 1366 768 # 1368x768 59.88 Hz (CVT) hsync: 47.79 kHz; pclk: 85.25 MHz Modeline "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync </code></pre> <p>I managed to add this 1368 x 768 mode to my xorg.conf, that I generated using some command I can't remember now (sorry!), but it looked just as bad as 1360 x 768, so I undid the change.</p> <p>I can live with it for watching video, but any extended OpenOffice session makes me want to poke my eyes out :)</p> <p>I'm using Intel graphics: 00:02.0 VGA compatible controller: Intel Corporation 82915G/GV/910GL Integrated Graphics Controller (rev 04)</p> <p>Any suggestions? Can I get the EDID out of the HP monitor and try to override it for the monitor at home? (and cross my fingers)</p> <p>EDIT: I have added the xorg-edgers PPA, and it didn't make any difference. Here is my Xorg.0.log in case it helps: <a href="http://clippy.cz.cc/index.php?show=124" rel="nofollow">http://clippy.cz.cc/index.php?show=124</a></p> <p>EDIT2: I got the modeline for 1366 x 768 on the HP monitor at work. Going to try it at home and see what happens. This is what I got from the Xorg.0.log when booting the computer with my external HD with Ubuntu 10.04:</p> <pre><code>Modeline "1366x768"x0.0 85.50 1366 1435 1578 1790 768 771 781 798 -hsync +vsync (47.8 kHz) </code></pre> <p>EDIT3: Tried the modeline above, and it gave similar results to modelines for 1360 and 1368. But then I noticed something, so see below for the answer to my own question :)</p>
1775
1775
2010-09-07T12:16:25.560
2010-09-07T12:23:17.117
Monitor resolution 1366 x 768, with bad EDID detected
[ "10.04", "xorg", "resolution", "intel-graphics" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-09-06T12:54:36.730", "id": "3740", "postId": "3735", "score": "0", "text": "did you try running ubuntu off livecd/liveusb and check if you still have the bad display issue ?", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-09-06T13:41:...
{ "accepted": true, "body": "<p>Well, this will teach me to actually spend appropriate money on monitors...</p>\n\n<p>This \"Elcheapo\" Great Wall monitor (obviously made in China) just \"says\" that it can do 1366x768... What it actually does is simply accept higher resolutions, and downscale everything to 1280x768.</p>\n\n<p>I noticed in one of the info screens of the monitor setup menus (the ones you get by pressing the buttons on the edge of the monitor itself) that, no matter which modeline I set, it always reported the resolution as 1280x768, though I didn't get that resolution offered by the System->Preferences->Monitors application.</p>\n\n<p>So I used cvt to generate a modeline for that resolution:</p>\n\n<pre><code>$ cvt 1280 768\n# 1280x768 59.87 Hz (CVT) hsync: 47.78 kHz; pclk: 79.50 MHz\nModeline \"1280x768_60.00\" 79.50 1280 1344 1472 1664 768 771 781 798 -hsync +vsync\n$ xrandr --newmode \"1280x768_60.00\" 79.50 1280 1344 1472 1664 768 771 781 798 -hsync +vsync\n$ xrandr --addmode VGA1 \"1280x768_60.00\"\n</code></pre>\n\n<p>Then I finally could choose 1280x768 resolution in the System->Preferences->Monitors application.</p>\n\n<p>And lo and behold! Fantastically clear, crisp text!!! I've lost 86 horizontal pixels over what was advertised, but it's well worth it.</p>\n\n<p>Someday I might try this screen with Windows, but with no computer running that at home, it will be a while... But I doubt Windows can make pixel columns magically appear in an LCD screen! :)</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-07T12:23:17.117", "id": "3797", "lastActivityDate": "2010-09-07T12:23:17.117", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1775", "parentId": "3735", "postTypeId": "2", "score": "0" }
[ { "accepted": true, "body": "<p>Well, this will teach me to actually spend appropriate money on monitors...</p>\n\n<p>This \"Elcheapo\" Great Wall monitor (obviously made in China) just \"says\" that it can do 1366x768... What it actually does is simply accept higher resolutions, and downscale everything to...
null
null
null
null
null
3743
1
8674
2010-09-06T15:54:48.410
1
634
<p>I've just sorted out the tearing in videos on my PC following this guide:</p> <p><a href="http://ubuntuforums.org/showthread.php?t=1390284" rel="nofollow">http://ubuntuforums.org/showthread.php?t=1390284</a></p> <p>However before this i had a wonderfully performing cube, Nice smooth and no/very little tearing (at least only around the sides) Now however the cube feels slow when rotating and i get some sort of tearing (white lines) underneath my gnome panel when 'landing' on a desktop Any ideas how i can return to the previous performance of the cube without turning sync to VBlank off?</p>
633
null
null
2010-10-21T14:01:37.603
Video tearing sorted now Low cube performance
[ "nvidia", "compiz", "tearing", "cube" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The original questioner's comment on nate8nate's answer confirms that Ubuntu \"10.10 with the new 260 Nvidia graphics driver\" fixes the problems.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-21T13:22:50.837", "id": "8674", "lastActivityDate": "2010-10-21T14:01:37.603", "lastEditDate": "2010-10-21T14:01:37.603", "lastEditorDisplayName": null, "lastEditorUserId": "866", "ownerDisplayName": null, "ownerUserId": "3781", "parentId": "3743", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>The original questioner's comment on nate8nate's answer confirms that Ubuntu \"10.10 with the new 260 Nvidia graphics driver\" fixes the problems.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "c...
null
null
null
null
null
3744
1
3757
2010-09-06T16:56:36.163
82
287089
<p>I want to add a directory to search my search path. I know I have to modify the <code>PATH</code> environment variable. However, I want the change to be permanent, so that it is always in effect, for every Terminal (bash) window I open.</p> <p>There is an overload of confusing and possibly conflicting information in <a href="https://help.ubuntu.com/community/EnvironmentVariables" rel="noreferrer">https://help.ubuntu.com/community/EnvironmentVariables</a></p> <p>I am using Ubuntu 10.04. Suppose I want to add <code>/usr/local/foo</code> to my <code>PATH</code>. Which file (<code>.bashrc</code>, <code>.profile</code>, <code>.bash_login</code>, etc...) should I modify and what should the new line(s) look like?</p>
2061
527764
2017-06-03T15:45:52.087
2021-09-21T09:09:40.317
How do I modify my PATH so that the changes are available in every Terminal session
[ "bash", "environment-variables" ]
10
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The following command adds a path to your current path:</p>\n\n<pre><code>export PATH=$PATH:/my/custom/path\n</code></pre>\n\n<p>If you want your setup to execute this command every time, there are a number of places where you can put it. When you login, the following scripts will be executed in this order:</p>\n\n<pre><code>/etc/profile (which starts by loading everything in /etc/profile.d)\n~/.profile (which starts by loading ~/.bashrc if you are running bash)\n</code></pre>\n\n<p><strong>Notes</strong></p>\n\n<ul>\n<li><p><code>~/.profile</code> is only loaded if <code>~/.bash_profile</code> and <code>~/.bash_login</code> DO NOT EXIST. Otherwise, at least bash, will load them instead. It is advisable to use <code>.profile</code> and not the bash specific scripts. So, if in these attempts you created <code>.bash_login</code>, <em>please delete it now.</em></p></li>\n<li><p><code>~/.bashrc</code> is only loaded if you are running an interactive session. (something with a prompt where you can actually type something).</p></li>\n<li><p><code>~/.bashrc</code> is loaded again and again, <em>every time you open up a new terminal</em>. So a new tab in gnome-terminal, a new virtual terminal, etc. So even if you don't login again, <code>.bashrc</code> is loaded (and thereby resets its environment) every time you open a new shell.</p></li>\n<li><p>Things like byobu should really go into <code>.profile</code>, (otherwise it won't work ;-)</p></li>\n<li><p>Things like paths should go into <code>.profile</code> if you want them to work outside of the interactive sessions. (say when you press <kbd>Alt</kbd>+<kbd>F2</kbd> in GNOME)</p></li>\n</ul>\n", "commentCount": "7", "comments": [ { "creationDate": "2010-09-08T00:13:58.467", "id": "3829", "postId": "3757", "score": "1", "text": "I'll mark this as the answer if you update it to include the requested export line that should be added to .profile.", "userDisplayName": null, "userId": "2061" }, { "creationDate": "2010-09-09T14:31:12.257", "id": "3918", "postId": "3757", "score": "0", "text": "This used to be valid only for console logins (e.g. ssh, or the virtual terminals accessible for Ctrl+Alt+Fx). I didn't know that /etc/gdm/Xsession sources ~/.profile these days. Neat!", "userDisplayName": null, "userId": "136" }, { "creationDate": "2010-09-10T15:14:38.623", "id": "3992", "postId": "3757", "score": "0", "text": "Yeah, i didn't mention /etc/gdm/Xsession specifically or ~/.Xprofile because there are better ways to make graphical programs launch at start up, which does garantuee that the rest of the environment is already loaded.", "userDisplayName": null, "userId": "1958" }, { "creationDate": "2010-11-17T21:36:53.610", "id": "14252", "postId": "3757", "score": "1", "text": "to make this answer more comprehensive please add MattH's comment about sourcing ~/.profile to activate changes without a logoff/on cycle.", "userDisplayName": null, "userId": "254" }, { "creationDate": "2011-02-20T07:47:26.440", "id": "29982", "postId": "3757", "score": "0", "text": "I am running 10.10 and I made sure ~/.bash_profile and ~/bash_login don't exist but my ~/.profile still doesn't seem to be executed when I open the terminal I tested by adding `echo hello` to the bottom of it and its not showing up.", "userDisplayName": null, "userId": "11150" }, { "creationDate": "2013-04-11T08:26:22.710", "id": "352024", "postId": "3757", "score": "2", "text": "@JoshuaFlanagan: `export` is not necessary for `PATH`. `PATH` is already an environment variable (as opposed to a shell variable)", "userDisplayName": null, "userId": "11015" }, { "creationDate": "2013-04-11T08:28:26.313", "id": "352025", "postId": "3757", "score": "1", "text": "@schwiz: `~/.profile` is not executed on each terminal, it is executed before, when your desktop session starts. The one executed on every terminal is `~/.bashrc`", "userDisplayName": null, "userId": "11015" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-09-06T18:25:15.023", "id": "3757", "lastActivityDate": "2017-06-03T15:40:04.477", "lastEditDate": "2017-06-03T15:40:04.477", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "1958", "parentId": "3744", "postTypeId": "2", "score": "106" }
[ { "accepted": null, "body": "<p>I got it to work by modifying <code>~/.profile</code></p>\n\n<p>It looks like adding ~/bin to my path was a bad example, as there is already code in ~/.profile to do that automatically, if the directory exists.</p>\n\n<p>To add the usr/local/foo directory to my path for every...
null
null
null
null
null
3749
1
3766
2010-09-06T17:39:50.920
2
780
<p>I'm having a Dell Inspiron 1525. Suspend and resume were working correctly.</p> <p>All of a sudden, when I click the <code>suspend</code> menu option the system doesn't get suspended. Instead, it is being locked. Viewing <code>dmesg</code> output reveals</p> <pre><code>[48214.876143] sky2 eth0: disabling interface [48215.844400] PM: Syncing filesystems ... done. [48215.872063] PM: Preparing system for mem sleep [48215.872070] Freezing user space processes ... (elapsed 0.00 seconds) done. [48215.873464] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done. [48215.873582] PM: Entering mem sleep [48215.873597] Suspending console(s) (use no_console_suspend to debug) [48225.872091] usbhid 6-2:1.0: suspend error -5 [48225.872100] pm_op(): usb_dev_suspend+0x0/0x20 returns -5 [48225.872104] PM: Device 6-2 failed to suspend: error -5 [48225.872106] PM: Some devices failed to suspend [48225.876917] PM: resume of devices complete after 4.807 msecs [48226.076192] PM: resume devices took 0.204 seconds [48226.076203] PM: Finishing wakeup. [48226.076205] Restarting tasks ... done. [48226.388912] sky2 eth0: enabling interface [48226.390582] ADDRCONF(NETDEV_UP): eth0: link is not ready [48227.894532] sky2 eth0: Link is up at 100 Mbps, full duplex, flow control rx [48227.894999] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [48237.172073] eth1: no IPv6 routers present </code></pre> <p>In particular <code>usbhid 6-2:1.0: suspend error -5</code>. Google didn't find anything useful about that.</p> <p>How can I further troubleshoot this matter?</p>
1453
null
null
2013-03-03T17:13:00.277
suspend doesn't work on Dell Inspiron 1525
[ "suspend" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The line</p>\n\n<p>PM: Device 6-2 failed to suspend: error -5</p>\n\n<p>suggests that there is a problem with suspending with that device. You can find out what is on Bus 6.2 by doing lsusb and looking at that.\nIf the problem persists, file a bug report with \"ubuntu-bug linux\"</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-06T20:31:21.233", "id": "3766", "lastActivityDate": "2010-09-06T20:31:21.233", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2072", "parentId": "3749", "postTypeId": "2", "score": "2" }
[ { "accepted": true, "body": "<p>The line</p>\n\n<p>PM: Device 6-2 failed to suspend: error -5</p>\n\n<p>suggests that there is a problem with suspending with that device. You can find out what is on Bus 6.2 by doing lsusb and looking at that.\nIf the problem persists, file a bug report with \"ubuntu-bug lin...
null
null
null
null
null
3750
1
3753
2010-09-06T17:48:22.510
30
1914
<p>I've always used my Ubuntu desktop behind the security of a router with NAT, but there have been a few times when I've had to plug it directly into an active cable modem.</p> <p>In general, what precautions I should be taking in situations when my computer is exposed to the internet like this for extended periods of time? Specifics that immediately come to mind are:</p> <ul> <li>Are there any default network services I might want to disable?</li> <li>Is there a need to modify the default firewall configuration?</li> <li>Should I be concerned about services using password authentication?</li> <li>What kind of logging can I do to be notified of unauthorized access?</li> </ul> <p>I realize that questions like this are just the tip of the iceberg of expansive topics that entire professions are based upon, so let me make clear: What I'm looking for are a few straightforward recommendations of best practices or configuration changes that a desktop user would find useful in a default Ubuntu installation.</p>
1859
3004
2010-10-27T22:54:52.567
2010-10-27T22:54:52.567
What precautions should I take when exposing my desktop directly to the internet?
[ "networking", "configuration", "security" ]
7
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>A standard ubuntu install should not activate network services that are accessible via the internet.</p>\n\n<p>You can check via (for tcp):</p>\n\n<pre><code>netstat -lntp\n</code></pre>\n\n<p>Similar for udp, but udp does not distinguish between ports opened for listening or sending.</p>\n\n<p>Thus, an iptables configuration is not necessary.</p>\n\n<p>A bit off-topic perhaps, since following concerns you in any case (it does not matter if you are behind a router):</p>\n\n<ul>\n<li>consider disabling flash (since the flash plugin has a big history of hilarious security problems)</li>\n<li>consider disabling the Java-Plugin (if enabled) and enabling it only for certain sites (not as much security related problems in the past as flash, but a few)</li>\n</ul>\n\n<p>And, sure, you probably know that, but anyways: Always work as normal-user as possible. Don't use firefox etc. as root ...</p>\n\n<p>An example netstat -lntp output:</p>\n\n<pre><code>Active Internet connections (only servers)\nProto Recv-Q Send-Q Local Address Foreign Address State PID/Program name\ntcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 935/sshd \ntcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 1811/cupsd \ntcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1755/exim4 \ntcp6 0 0 :::22 :::* LISTEN 935/sshd \ntcp6 0 0 ::1:631 :::* LISTEN 1811/cupsd\n</code></pre>\n\n<p>The 127.0.0.1 entries are harmless, because those programs only listen on the local network interface.</p>\n\n<p>sshd is an example of a service that listens on all available interfaces (0.0.0.0, i.e. including the one the cable internet modem is connected to) - but usually you have good passwords or disable password authentication and only use public-key.</p>\n\n<p>Anyways, IIRC sshd is not installed by default.</p>\n\n<p>The last two interfaces regard IPv6. ::1 is the address of the loopback device (like 127.0.0.1 in IPv4), thus safe. ::: is the IPv6 all network interface wildcard analog to 0.0.0.0 (IPv4).</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-09-06T18:09:33.977", "id": "3753", "postId": "3753", "score": "3", "text": "The advice about netstat -lntp is really good. It should prevent any doubt about possible default open connections.", "userDisplayName": null, "userId": "1958" }, { "creationDate": "2010-09-06T18:48:48.520", "id": "3759", "postId": "3753", "score": "1", "text": "What would you expect to see there in a fairly normal desktop environment?", "userDisplayName": null, "userId": "1743" }, { "creationDate": "2010-10-15T22:55:15.033", "id": "7484", "postId": "3753", "score": "1", "text": "Running the web browser as root. Shutter.", "userDisplayName": null, "userId": "428" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-06T18:07:16.150", "id": "3753", "lastActivityDate": "2010-09-06T19:13:56.577", "lastEditDate": "2010-09-06T19:13:56.577", "lastEditorDisplayName": null, "lastEditorUserId": "1627", "ownerDisplayName": null, "ownerUserId": "1627", "parentId": "3750", "postTypeId": "2", "score": "29" }
[ { "accepted": null, "body": "<p>I think that you need to look into iptables.</p>\n\n<p>iptables is the firewall that is installed, by default, in Ubuntu. There is a <a href=\"https://help.ubuntu.com/community/IptablesHowTo\" rel=\"nofollow\">HowTo here</a>. If you are not command line fluent then you may fi...
null
null
null
null
null
3759
1
3769
2010-09-06T18:55:47.307
15
10363
<p>Not sure if it is possible, but i seem to remember from my old days using AIX it was possible to change my path by just saying which part of the path needed to be replaced by something else. For instance, say i have two paths:</p> <pre><code>/etc/application-2.0.1/options/default </code></pre> <p>and</p> <pre><code>/etc/application-1.0.8/options/default </code></pre> <p>that i could switch from folder 1 to 2 using a command like </p> <p>cd /2.0.1/1.0.8/</p> <p>which would replace, in the path, the string <code>2.0.1</code> to <code>1.0.8</code>. Obviously this does not work for me now. But is there a way to do this? </p>
618
null
null
2020-12-20T06:16:49.353
change directory (cd) but by replacing a part of the path only
[ "bash" ]
9
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>If you use <a href=\"http://www.zsh.org/\">zsh</a> as shell you can just enter <code>cd 1.0.8 2.0.1</code>.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-09-10T07:43:16.237", "id": "3975", "postId": "3769", "score": "0", "text": "This seems the best option to me. Now looking how to install that thing :)", "userDisplayName": null, "userId": "618" }, { "creationDate": "2010-09-10T11:47:17.970", "id": "3989", "postId": "3769", "score": "1", "text": "`sudo apt-get install zsh`", "userDisplayName": null, "userId": "270" }, { "creationDate": "2017-01-12T14:31:00.143", "id": "1350534", "postId": "3769", "score": "1", "text": "RandomMonkey's answer allows the full path substitution functionality within Bash's \"cd\" built-in.", "userDisplayName": null, "userId": "1723" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-06T21:14:40.743", "id": "3769", "lastActivityDate": "2010-09-06T21:14:40.743", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "236", "parentId": "3759", "postTypeId": "2", "score": "12" }
[ { "accepted": null, "body": "<p>If you are a vi fan you could enable the vi mode in your shell (bash set -o vi for example) and use the command mode of vi ...</p>\n\n<p>Or you could do crazy history expansion (tested in zsh, perhaps in bash as well):</p>\n\n<pre><code>$ cd /etc/application-1.0.8/options/def...
null
null
null
null
null
3763
1
null
2010-09-06T19:57:51.157
5
3514
<p>I've been attempting for quite a long time to get a Serial 3M Touchscreen to work on Ubuntu 10.04.</p> <p>The closest post I could find to what I needed was this one: <a href="http://ubuntuforums.org/showthread.php?t=1508944&amp;highlight=3m+touchscreen" rel="nofollow noreferrer">http://ubuntuforums.org/showthread.php?t=1508944&amp;highlight=3m+touchscreen</a></p> <p>Unfortunately, I get to where I touch the screen and the mouse jumps to the top right corner and that is it. The calibration software doesn't really work (straight from 3M). Either sometimes it won't start, or there is something wrong with it.</p> <p>It now looks like the problem has to do with the calibration software not recognizing the attached touchscreen. With some changes to the installation script, I was able to get the calibration software to install properly.</p> <pre><code>#!/bin/bash # # Copyright 2007-2009 3M. All rights reserved. # # This script installs the MT7 touch screen driver # During installation, all directories must be writeable. # # These symbols point to where the MT7 software binaries and data reside. # The script attempts to detect where the installation kit is. If this # fails, you need to set BinDir. # The data directory must be on writeable media. The script normally uses # the directory where the installation kit resides as the data directory. # If you need the data directory to be elsewhere, set DataDir. BinDir=&quot;&quot; DataDir=&quot;&quot; # If desired, define a file to contain driver startup options and set # the TwDrv_Cfg symbol to the full path of the file. Normally this is # not needed. TwDrv_Cfg=&quot;&quot; # This symbol points to where the Java VM binaries reside. JavaBinDir=&quot;&quot; # These symobls point to system and applictaion directories other than # those specific to the MT7 software UdevDir=&quot;/etc/udev&quot; HotplugDir=&quot;/etc/hotplug&quot; XorgDir=&quot;/usr/lib/xorg/modules/input&quot; XFree86Dir=&quot;/usr/X11R6/lib/modules/input&quot; LibDir=&quot;/usr/lib&quot; SEDir1=&quot;/usr/selinux/booleans&quot; SEDir2=&quot;/selinux/booleans&quot; LSBDir=&quot;/lib/lsb&quot; # The InitDir symbol points to where this script places an 'init' script. # If left blank, this script first looks for /etc/init.d and then /etc/rc.d. # If this is not appropriate or this script otherwise fails, set this value. InitDir=&quot;&quot; # This symbol enables permission for some MT7 shared objects on # SELinux systems. On most systems SEGivePermission is texrel_shlib_t. # Change this variable if another security type is appropriate. SEGivePermission=&quot;texrel_shlib_t&quot; # This symbol affects when the X input driver converts raw touch screen # coordinates into screen coordiates. Normally, the X input driver reports # the raw coordinates to the X server which then calls an conversion # routine. Some versions of the X server expect the initial report to # contain converted coordinates. If your touch behavior is off and # calibration does not address the problem, set ConvertAtRead to true. ConvertAtRead=&quot;false&quot; # This symbol defines the name of the xorg.conf file to generate if one is # not found. Starting with X server version 1.5, this file is not # automatically generated. This file is needed for MT 7 for Linux to work. # If you want the file to reside elsewhere, set this symbol. XorgConf=&quot;/etc/X11/xorg.conf&quot; # These symbols define where the 50MT7-xinit script needs to go and what # suffix it requires. The script places this file automatically in # /etc/X11/xinit/xinitrc.d and /etc/X11/Xsession.d without a suffix. If # your distribution requires another location or requires a suffix on the # file, set these symbols. XinitDir=&quot;&quot; XinitSuffix=&quot;&quot; # Determine the installation directory if [ -z $BinDir ] then if [ $(echo $0 | grep ^/) ] then BinDir=$0 else BinDir=$(echo $PWD&quot;/&quot;$0 | sed s#[.]/##) fi BinDir=$(echo $BinDir | sed s%/[^/]*$%%) fi # Determine if the system is compatible $BinDir/TwCompat if [ $? != 0 ] then echo &quot;ERROR: MT7 for Linux not installed - shared memory support not detected&quot; exit fi # Determine the data directory [ -z $DataDir ] &amp;&amp; DataDir=$BinDir # Create the data and fifo directories if [ $DataDir != $BinDir ] then [ -e $DataDir ] || mkdir $DataDir chmod a+w $DataDir ln -s $DataDir $BinDir/data else [ -e $BinDir/data ] || mkdir $BinDir/data fi chmod a+w $BinDir/data [ -e $BinDir/data/fifo ] || mkdir $BinDir/data/fifo chmod a+w $BinDir/data/fifo # Determine the init script directories if [ -z $InitDir ] &amp;&amp; [ -d /etc/init.d ] then if [ $(ls -l /etc/init.d/ | sed -e /functions/d -e /^total\ [0-9]*$/d | wc -l) != 0 ] then InitDir=&quot;/etc/init.d&quot; fi fi if [ -z $InitDir ] then if [ -e /etc/rc.d/rc.local ] then InitDir=/etc/rc.d else InitDir=$BinDir fi fi # Install the init script [ -e $InitDir/TWDrvStartup ] &amp;&amp; rm -f $InitDir/TWDrvStartup sed -e s#%BINDIR%#$BinDir#g \ -e s#%INITDIR%#$InitDir#g \ -e s#%LSBDIR%#$LSBDir#g \ -e s#%TWDRV_CFG%#$TwDrv_Cfg#g $BinDir/TWDrvStartup.ORIG \ &gt;$InitDir/TWDrvStartup chmod a+x $InitDir/TWDrvStartup if perl $BinDir/TwIsThere.perl chkconfig then chkconfig --add TWDrvStartup &gt;/dev/null elif perl $BinDir/TwIsThere.perl update-rc.d then update-rc.d TWDrvStartup defaults &gt;/dev/null elif [ -e $InitDir/rc.local ] then sed -e '$ a\ %INITDIR%/TWDrvStartup start ' $InitDir/rc.local &gt;$InitDir/rc.local.TEMP rm -f $InitDir/rc.local sed -e s#%INITDIR%#$InitDir# $InitDir/rc.local.TEMP &gt;$InitDir/rc.local rm -f $InitDir/rc.local.TEMP chmod +x $InitDir/rc.local else echo &quot;Cannot install the init script&quot; fi # Test for USB support if [ -z $(uname -r | grep ^2\.4\.) ] then # Copy the udev rules script Hotplug=0 if [ -d $UdevDir/rules.d ] then if [ -e $UdevDir/rules.d/99-TwDriver.rules ] then rm -f $UdevDir/rules.d/99-TwDriver.rules fi sed s#%BINDIR%#$BinDir#g $BinDir/99-TwDriver.rules.ORIG \ &gt;$UdevDir/rules.d/99-TwDriver.rules Hotplug=1 fi if [ -d $HotplugDir/usb ] &amp;&amp; [ -e $HotplugDir/usb.agent ]d then [ -e $HotplugDir/usb/TwHotplug ] &amp;&amp; rm -f $HotplugDir/usb/TwHotplug sed s#%BINDIR%#$BinDir#g $BinDir/TwHotplug.ORIG &gt; $HotplugDir/usb/TwHotplug chmod a+x $HotplugDir/usb/TwHotplug [ -e $HotplugDir/usb.usermap ] || echo &quot;# Created by MT7&quot; &gt;$HotplugDir/usb.usermap sed &lt;$HotplugDir/usb.usermap &gt;$HotplugDir/usb.usermap.TEMP '$ a\ # TwHotplug is for the MT7 for Linux software\ TwHotplug 0x0001 0x0596 0x0000 0x0000 0x0000 0x00 0x00 0x00 0x06 0x00 0x00 0x00000000 ' rm -f $HotplugDir/usb.usermap mv $HotplugDir/usb.usermap.TEMP $HotplugDir/usb.usermap Hotplug=1 fi if [ $Hotplug == 0 ] then echo &quot;Hotplugging of USB touch screen controllers is not supported&quot; fi else echo &quot;USB touch screen controllers are not supported under kernel 2.4&quot; fi # Test for the version of C++ standard libraries if [ -e $LibDir/libstdc++.so.6 ] then CppExt=&quot;6&quot; elif [ -e $LibDir/libstdc++.so.5 ] then CppExt=&quot;5&quot; else echo &quot;Cannot find needed libstdc++.so in $LibDir&quot; CppExt=&quot;&quot; fi # Link the libraries into /usr/lib perl $BinDir/TwLibInstall.perl install $LibDir $BinDir/lib*.so if [ x$CppExt != x ] then perl $BinDir/TwLibInstall.perl install $LibDir $BinDir/so$CppExt/lib*.so fi # Link RnR sensitive files if [ x$CppExt != x ] then $BinDir/TwLibTest $LibDir/libTwSystemRnR12.so if [ x$? != x0 ] then rm -f $LibDir/libTwSystem.so ln -s $LibDir/libTwSystemRnR12.so $LibDir/libTwSystem.so ln -s $BinDir/TwMonitorRnR.bin$CppExt $BinDir/TwMonitor else $BinDir/TwLibTest $LibDir/libTwSystemRnR.so if [ x$? != x0 ] then rm -f $LibDir/libTwSystem.so ln -s $LibDir/libTwSystemRnR.so $LibDir/libTwSystem.so ln -s $BinDir/TwMonitorRnR.bin$CppExt $BinDir/TwMonitor else ln -s $BinDir/TwMonitor.bin$CppExt $BinDir/TwMonitor fi fi fi # Copy the X input driver XCopyDefault=0 if [ -d $XorgDir ] then XDir=$XorgDir if [ -z &quot;$(X -version 2&gt;&amp;1 | grep X\.Org[^1]*1\.[4-9]\.)&quot; ] then XSrc=$BinDir/twxinput_drv.so elif [ -z &quot;$(X -version 2&gt;&amp;1 | grep X\.Org[^1]*1\.[5-9]\.)&quot; ] then XSrc=$BinDir/twxinput_drv.so.1.4 else XSrc=$BinDir/twxinput_drv.so.1.5.1 XCopyDefault=1 fi elif [ -d $XFree86Dir ] then XDir=$XFree86Dir XSrc=$BinDir/twxinput_drv.so else XDir=&quot;&quot; echo &quot;Cannot install the X input module&quot; fi if [ -d $XDir ] then [ -e $XDir/twxinput_drv.o ] &amp;&amp; rm -f $XDir/twxinput_drv.o [ -e $XDir/twxinput_drv.so ] &amp;&amp; rm -f $XDir/twxinput_drv.so ln -s $XSrc $XDir/twxinput_drv.so fi # Install the xinit scripts if [ -d /etc/X11/xinit/xinitrc.d ] then sed s#%BINDIR%#$BinDir#g $BinDir/50MT7-xinit.ORIG \ &gt;/etc/X11/xinit/xinitrc.d/50MT7-xinit$XinitSuffix chmod a+x /etc/X11/xinit/xinitrc.d/50MT7-xinit$XinitSuffix fi if [ -d /etc/X11/Xsession.d ] then sed s#%BINDIR%#$BinDir#g $BinDir/50MT7-xinit.ORIG \ &gt;/etc/X11/Xsession.d/50MT7-xinit$XinitSuffix chmod a+x /etc/X11/Xsession.d/50MT7-xinit$XinitSuffix fi if [ x$XinitDir != x ] then sed s#%BINDIR%#$BinDir#g $BinDir/50MT7-xinit.ORIG \ &gt;$XinitDir/50MT7-xinit$XinitSuffix chmod a+x $XinitDir/50MT7-xinit$XinitSuffix fi # Set up the SELinux security types if [ -d $SEDir1 ] then SEDir=$SEDir1 elif [ -d $SEDir2 ] then SEDir=$SEDir2 else SEDir=&quot;&quot; fi if [ x$SEDir != x ] then chcon -t $SEGivePermission $LibDir/libTwSystem.so chcon -t $SEGivePermission $LibDir/libTwConfig.so chcon -t $SEGivePermission $LibDir/libTwIO_Utilities.so chcon -t $SEGivePermission $LibDir/libTwAppIO_JNI.so chcon -t $SEGivePermission $LibDir/libTwCommon_JNI.so chcon -t $SEGivePermission $LibDir/libTwConfig_JNI.so chcon -t $SEGivePermission $LibDir/libTwUI_JNI.so chcon -t $SEGivePermission $LibDir/libTwUICP.so [ -e $XDir/twxinput_drv.so ] &amp;&amp; chcon -t $SEGivePermission $XDir/twxinput_drv.so fi # Set up the configuration [ -d /dev/shm ] &amp;&amp; rm -f /dev/shm/*TwConfig* sed s#%BINDIR%#$BinDir#g $BinDir/TwFramework.cfg.ORIG &gt;$BinDir/TwFramework.cfg $BinDir/TwCfgUtil /u $BinDir/TwFramework.cfg $BinDir/TwCfgUtil /u $BinDir/TwFactory.cfg # Produce the Remove script sed -e s#%BINDIR%#$BinDir#g \ -e s#%UDEVDIR%#$UdevDir#g \ -e s#%XDIR%#$XDir#g \ -e s#%LIBDIR%#$LibDir#g \ -e s#%SEDIR%#$SEDir#g \ -e s#%HOTPLUGDIR%#$HotplugDir#g \ -e s#%INITDIR%#$InitDir#g \ -e s#%XINITDIR%#$XinitDir#g \ -e s#%XINITSUFFIX%#$XinitSuffix#g \ $BinDir/Remove.ORIG &gt;$BinDir/Remove # Produce the X input script sed -e s#%CONVERT%#$ConvertAtRead#g \ $BinDir/TWXinputInstall.perl.ORIG &gt;$BinDir/TWXinputInstall.perl # Produce the CP start script sed -e s#%JAVABINDIR%#$JavaBinDir#g \ -e s#%BINDIR%#$BinDir# \ $BinDir/StartCP.ORIG &gt;$BinDir/StartCP # Set any necessary permissions chmod a+x $BinDir/TwCalib chmod a+x $BinDir/TWXinputInstall.perl chmod u+x $BinDir/Remove chmod a+x $BinDir/StartCP # Copy the default xorg.conf if [ $XCopyDefault == 1 ] then $BinDir/TWXinputInstall.perl -find if [ $? == 1 ] then cp -a xorg.conf.ORIG $XorgConf fi fi </code></pre> <p>Usually this puts out this error, although I don't think the errors are critical (warnings?):</p> <pre><code>update-rc.d: warning: /etc/init.d/TWDrvStartup missing LSB keyword 'required-start' update-rc.d: warning: /etc/init.d/TWDrvStartup missing LSB keyword 'required-stop' update-rc.d: warning: TWDrvStartup start runlevel arguments (2 3 4 5) do not match LSB Default-Start values (2 5) update-rc.d: warning: TWDrvStartup stop runlevel arguments (0 1 6) do not match LSB Default-Stop values (0 1 3 4 6) ln: creating symbolic link `/home/kioskadmin/Desktop/twscreen/TwMonitor': File exists root@kiosk1:/home/kioskadmin/Desktop/twscreen# </code></pre> <p>I also asked <a href="https://superuser.com/questions/139162/touch-screen-ubuntu-10-04lts">this question</a> on Super User quite a long time ago, although other than the link to the Ubuntu forums, nothing. If I recall correctly, no one on the Ubuntu Forum was very helpful beyond pointing me to the same post. It seems &quot;touchscreens&quot; is a specialized topic that not a lot of people know much about.</p> <p>My questions:</p> <p>1 Any tips to get this to work correctly? My major problem seems to be the newer boot process in 10.04.</p> <p>2 Any alternative calibration software or touchscreen driver that may work or is worth trying? (serial, not USB).</p> <p>It seems that the the driver is not initiating correctly. The calibration software and control panel do not detect the controller for some reason. My assumption at the moment is that the init script is not correct, most likely due to changes in Ubuntu's start-up process.</p> <p>Edit:</p> <p>It seems I can now run the control panel script correctly, I was having problems with Java, but I just had to execute it differently. Now I have the problem that the control panel and calibration software cannot detect the touchscreen. Everything runs, but just can't find it, even though it's connected and it responds if I enable the screen manually.</p> <p>The error is, &quot;touchscreen 1 is not present&quot;.</p>
58
94914
2021-11-21T08:04:30.100
2021-11-21T08:04:30.100
Setting up a 3M Serial Touchscreen
[ "drivers", "10.04", "touchscreen", "multi-touch" ]
3
4
CC BY-SA 4.0
[ { "creationDate": "2010-09-06T23:09:25.053", "id": "3772", "postId": "3763", "score": "0", "text": "wonder how long this will remain unanswered", "userDisplayName": null, "userId": "58" }, { "creationDate": "2010-09-07T18:53:48.507", "id": "3814", "postId": "3763", "s...
null
[ { "accepted": null, "body": "<p>On maverick,add this PPA and try </p>\n\n<p><code>ppa:utouch-team/utouch</code></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-12T06:29:38.393", "id": "4081", "postId": "4047", "score": "0", "text": ...
null
null
null
null
null
3773
1
3783
2010-09-06T23:11:13.503
4
472
<p>I really like some of my shortcuts but I find at times there are other ways I would like to invoke the same shortcut.</p> <p>For example: </p> <p><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>Left</kbd>/<kbd>Right</kbd> </p> <p>Switches workspaces left/right respectively. </p> <p>I want a mouse click to perform this same functionality. My mouse wheel can go left/right and I want to map this to go left/right in my workspaces but I also want the keyboard shortcut to remain.</p>
1743
17739
2011-10-27T18:43:40.767
2011-10-27T18:43:40.767
Multiple shortcuts for same functionality
[ "shortcut-keys" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>If you are using Compiz (chances are that you are) you can install <em>Advanced Desktop Effects Settings (ccsm)</em>, either from the Software Center or from the command line</p>\n\n<pre><code>sudo apt-get install compizconfig-settings-manager\n</code></pre>\n\n<p>Now go to System-> Prererences-> CompizConfig Settings Manager.</p>\n\n<p>Click on the Viewport Switcher icon. The window should change, go to the Desktop-bases Viewport Switching. Click on the buttons after Move Prev and Move Next (labeled Disabled on the screenshot). A new window will open, click enabled, another one will open, here you can select a mouse button for each action there, always or only when the mouse is in some screen places or when a special key is pressed.</p>\n\n<p><img src=\"https://i.stack.imgur.com/p90ox.png\" alt=\"screenshot\"></p>\n\n<p><img src=\"https://i.stack.imgur.com/ILpiB.png\" alt=\"another scrennshot\"></p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-07T11:37:37.933", "id": "3786", "postId": "3783", "score": "0", "text": "Very verbose answer, much appreciated. Intuitive too to assume I am using compiz. :-)", "userDisplayName": null, "userId": "1743" }, { "creationDate": "2010-09-08T08:55:28.590", "id": "3845", "postId": "3783", "score": "0", "text": "Alternatively, you can install it via the Software Center, if we didn't assume that already.", "userDisplayName": null, "userId": "646" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-07T07:27:56.553", "id": "3783", "lastActivityDate": "2010-09-07T07:27:56.553", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "211", "parentId": "3773", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>If you are using Compiz (chances are that you are) you can install <em>Advanced Desktop Effects Settings (ccsm)</em>, either from the Software Center or from the command line</p>\n\n<pre><code>sudo apt-get install compizconfig-settings-manager\n</code></pre>\n\n<p>Now go to S...
null
null
null
null
null
3778
1
null
2010-09-07T04:04:29.357
12
9319
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/10998/what-is-a-good-text-editor-for-developing-code-on">What is a good text editor for developing code on?</a> </p> </blockquote> <p>I'm trying to find a text editor that I can use for doing Ruby on Rails development. I have been using TextMate on my Mac and would love to find something that even comes close to that experience. My Ubuntu laptop is a little old, and doesn't have a lot of memory, so I need something lightweight. I don't need/want a bloated IDE because the performance on my slow laptop would be terrible.</p> <p>It would be nice if this text editor had:</p> <ul> <li>Syntax highlighting</li> <li>A project/file browser view to be able to open files in my project</li> <li>Keyboard shortcuts (don't need them as much)</li> </ul>
2082
-1
2017-04-13T12:24:49.590
2012-04-17T05:04:27.737
Good text editor for Ruby on Rails programming?
[ "text-editor" ]
0
0
CC BY-SA 2.5
[]
null
[]
2010-09-14T04:38:23.547
0
2012-08-10T19:28:50.840
null
null
3780
1
null
2010-09-07T05:27:33.063
4
10179
<p>I've been using an HP Pavillion dv4-1430us laptop with Ubuntu 10.04 installed on it. I want to use the IR6 remote control that comes with the laptop on my Ubuntu. However, I've failed to do so after several attempts.</p> <p>Could anyone please let me know about the complete and detailed procedure to get the remote working in Ubuntu 10.04?</p>
null
40166
2013-06-23T05:17:01.400
2017-06-06T07:49:05.683
How to make HP IR6 remote control work?
[ "10.04", "hardware", "lirc", "hp-pavilion", "peripherals" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-10-20T16:28:40.353", "id": "32446", "postId": "3780", "score": "0", "text": "I also had trouble with it, but now works out-of-the-box on 10.10 (on most machines).", "userDisplayName": null, "userId": "4493" }, { "creationDate": "2010-10-20T17:07:19.007", ...
null
[ { "accepted": null, "body": "<p>Here's what worked on my HP-2140us:</p>\n\n<ol>\n<li>Install the \"Infrared Remote Control\" app from the software center</li>\n<li>If you haven't installed lirc before, you'll get a config screen; if the install completes without one, open a terminal and type <code>sudo dpkg...
null
null
null
null
Pawan
3781
1
4209
2010-09-07T06:48:26.477
7
984
<p>I have a PXE server at home for doing <a href="http://cdimage.ubuntu.com/netboot/">network-based installs</a>, which uses the text-based alternate installer.</p> <p>However in 10.10 the Ubiquity (aka graphical) installer has some really nice features; like installing in the background while I fill out my user information, installing updates as part of the install, and it looks pretty great.</p> <p>Is there a way to set up netboot with ubiquity so I can use my existing PXE server but have a nice graphical installation?</p>
235
null
null
2010-09-15T16:45:08.267
Does Ubiquity support installing via PXE?
[ "10.10", "ubiquity", "pxe" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You need to export the live filesystem over NFS, and set the NETBOOT and NFSROOT kernel command line parameters.</p>\n\n<p>See <a href=\"https://help.ubuntu.com/community/Installation/LocalNet\" rel=\"nofollow\">this help document</a> (under \"A variation\") for the full details.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-15T16:45:08.267", "id": "4209", "lastActivityDate": "2010-09-15T16:45:08.267", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "46", "parentId": "3781", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>The trick is to load a minimal system with NFS-Support. This system can start the graphical installer. <a href=\"http://www.digitalpeer.com/id/linuxnfs\" rel=\"nofollow\">This hotwo</a> should help setting this up.</p>\n\n<p>If you like experimenting around with pxe I recomme...
null
null
null
null
null
3782
1
3784
2010-09-07T07:04:24.197
20
20082
<p>It is time for a new cell phone and I am facing the difficult question: which one? I would like to get a smartphone and am now browsing around the web to see which smartphone provides the best support for Ubuntu and can synchronizes best with Ubuntu.</p> <p>Any tips, info and experience to share?</p>
2087
169736
2014-02-23T00:04:23.580
2014-02-23T00:04:23.580
Smartphones and Ubuntu
[ "smartphone" ]
6
2
CC BY-SA 2.5
[ { "creationDate": "2010-09-07T12:25:48.600", "id": "3788", "postId": "3782", "score": "5", "text": "This will likely be better suited as a Community Wiki", "userDisplayName": null, "userId": "41" }, { "creationDate": "2010-09-09T04:16:15.893", "id": "3892", "postId": "378...
{ "accepted": true, "body": "<p>I have an Android device (Motorola Milestone, called \"Droid\" in the US) that works great with Ubuntu... but you actually don't need to \"sync\" it, since the purpose of Android is to sync with your Google account.\n Then I have my Thunderbird + Lightning synced with my Google mail/contact/calendar (also works with Evolution), and I have the Android smartphone doing the same on its side.</p>\n\n<p>You also can use UbuntuOne contact syncing if you prefer (works on Evolution, Thunderbird, and Android devices). It is still in beta, and seems to be targetted for paying users, but it may be a solution, if you don't want to rely on Google only :)</p>\n\n<p>Then for music: Rythmbox can see it when I plug it on USB, and I can manage my phone's playlist from it. For photo/video/whatever, the phone is actually seen as a USB drive, so you can go put/remove files as you like.</p>\n\n<p>No issue so far, I really find it easy to use.</p>\n\n<p>Edit: About the iPhone... I guess it's worth some comments :)</p>\n\n<p>We already have questions about iPhone syncing with Ubuntu on this site. Run a search for \"iPhone\" to find more. But you'll find all needed information here: <a href=\"https://help.ubuntu.com/community/PortableDevices/iPhone\">https://help.ubuntu.com/community/PortableDevices/iPhone</a></p>\n\n<p>Basically: it works, at least for music/video/podcast syncing. You can even get tethering working. Contact/calendar cannot be synced, but you can sync your iPhone to Google, so it's not a big deal.</p>\n\n<p>Now the fact is that some things will require iTunes. For instance: Application management, phone's upgrade and phone's settings backup. And iTunes doesn't work on Linux :(</p>\n\n<p>I am mentionning it because I know people are advertising the support of iPhones on Ubuntu, while this support is not as complete as you might think.</p>\n\n<p>I had an iPhone some times ago. Great device, but I had to sell it because of this incompatibility (and other personal reasons). No fun to have a VM just for iTunes :-(</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2010-09-07T07:45:29.567", "id": "3776", "postId": "3784", "score": "0", "text": "everything in here applies to any android phone.", "userDisplayName": null, "userId": "448" }, { "creationDate": "2010-09-07T07:47:35.933", "id": "3777", "postId": "3784", "score": "1", "text": "I own an Android phone (HTC Magic on 2.2). It also works out of the box as a USB modem for tethering.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-09-07T08:15:30.580", "id": "3778", "postId": "3784", "score": "0", "text": "Tethering works from Android 2.2, BUT it is not available on every device: it depends on the manufacturer/carrier decisions... I'm waiting for Motorola to roll out 2.2 on my Milestone to see wether I can use tethering or not :-)", "userDisplayName": null, "userId": "23" }, { "creationDate": "2010-09-07T08:42:53.250", "id": "3779", "postId": "3784", "score": "0", "text": "any experience with blackberry and nokia on Ubuntu? i have seen/read a couple of things about RIM and its workarounds/packages.", "userDisplayName": null, "userId": "2087" }, { "creationDate": "2010-09-07T08:48:01.590", "id": "3780", "postId": "3784", "score": "1", "text": "@Little Jawa: Tethering works since 1.6, wireless tether for non-root users is the novelty on 2.2. And well... if I'm using a Magic with 2.2, sure I'm not using the carrier/manufacturer official ROM ;).", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-09-07T09:25:07.383", "id": "3781", "postId": "3784", "score": "0", "text": "@mropa: no, no experience with other phones. I used to sync with an older smartphone under Windows Mobile 6.5, but I doubt you'll want something like that, especially with Windows Phone 7 coming :)", "userDisplayName": null, "userId": "23" }, { "creationDate": "2010-09-07T11:55:53.180", "id": "3787", "postId": "3784", "score": "0", "text": "@Javier: thanks for the tip ! I just verified and googled around, and now I could make my phone do tethering, without even having to ROOT it :)", "userDisplayName": null, "userId": "23" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-07T07:29:05.230", "id": "3784", "lastActivityDate": "2010-09-07T08:38:35.267", "lastEditDate": "2010-09-07T08:38:35.267", "lastEditorDisplayName": null, "lastEditorUserId": "23", "ownerDisplayName": null, "ownerUserId": "23", "parentId": "3782", "postTypeId": "2", "score": "16" }
[ { "accepted": true, "body": "<p>I have an Android device (Motorola Milestone, called \"Droid\" in the US) that works great with Ubuntu... but you actually don't need to \"sync\" it, since the purpose of Android is to sync with your Google account.\n Then I have my Thunderbird + Lightning synced with my Goog...
2010-09-09T04:15:21.060
null
2014-02-23T12:12:44.703
null
null
3796
1
3801
2010-09-07T11:59:00.470
8
2976
<p>Just took a look at the memory usage (with <code>free -m</code>) on one of my Ubuntu servers and saw this:</p> <pre><code> total used free shared buffers cached Mem: 751 624 127 0 256 236 -/+ buffers/cache: 131 619 Swap: 299 0 299 </code></pre> <ol> <li>What is a buffer? </li> <li>If something needed RAM to process something, would a buffer give up its allotment (like cache would)?</li> <li>Is there any way I can find what's using the 256MB of memory for buffer?</li> <li>Should I be worried?</li> </ol>
449
null
null
2010-09-07T13:28:32.320
In regards to memory usage, what are buffers?
[ "memory" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<ol>\n<li>The developers of the linux memory management have a <a href=\"http://linux-mm.org/Low_On_Memory\" rel=\"noreferrer\">short technical description</a> of it (look for the \"Buffer Cache\" topic).</li>\n<li>Buffers that aren't needed at the moment can make way for more urgent memory needs.</li>\n<li>The kernel is using it.</li>\n<li>No.</li>\n</ol>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-07T13:28:32.320", "id": "3801", "lastActivityDate": "2010-09-07T13:28:32.320", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "935", "parentId": "3796", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<ol>\n<li>The developers of the linux memory management have a <a href=\"http://linux-mm.org/Low_On_Memory\" rel=\"noreferrer\">short technical description</a> of it (look for the \"Buffer Cache\" topic).</li>\n<li>Buffers that aren't needed at the moment can make way for more u...
null
null
null
null
null
3804
1
null
2010-09-07T13:46:21.933
2
1979
<p>It is possible with other distros! If so, how do you do it?</p>
4
527764
2022-03-16T09:50:20.217
2022-03-16T09:50:44.710
Can you install Ubuntu from a liveCD via vnc or similar?
[ "system-installation", "vnc", "live-cd" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-09-07T15:54:05.993", "id": "3806", "postId": "3804", "score": "0", "text": "What other distros is this possible with?", "userDisplayName": null, "userId": "1743" }, { "creationDate": "2010-09-07T18:47:34.510", "id": "3812", "postId": "3804", "s...
null
[ { "accepted": null, "body": "<p>The only thing that I can think of is booting to the liveCD environment, bring up a VPN server like <a href=\"http://www.karlrunge.com/x11vnc/\" rel=\"nofollow noreferrer\">x11vnc</a>, connect remotely, then manage the install.</p>\n<p>I'm confused though what advantage this ...
null
null
null
null
null
3805
1
3827
2010-09-07T14:11:41.460
11
1080
<p>I have setup some applications to startup on each login (e.g., redshift-gtk, gtg) automatically but after adding these to startup applications (<code>System -&gt; Preferences -&gt; Startup Applications</code>) obviously the time taken to login has increased. Due to all this the time it takes for my panels, desktop etc to appear is too long - until which I am forced to wait.</p> <p>I don't need these apps to be available immediately, but it would be good if they startup eventually, meanwhile the ubuntu menu/panel is available for running other apps that I might need to.</p> <p>I tried using at command, with the intention of editing all startup applications to put the commands in the at queue, but this didn't work since the apps don't get the necessary environment variables (like DISPLAY).</p> <p>Is this what <code>nice</code> command is used for? Any other ideas how I can accomplish this? If possible, I would like to avoid editing the startup applications commands, since this would mean a lot of effort to replicate on other machines I use.</p>
270
17722
2012-08-18T06:26:12.697
2012-08-18T06:26:12.697
How can I reduce the time taken to login by postponing/delaying some startup applications?
[ "gnome", "startup" ]
3
2
CC BY-SA 2.5
[ { "creationDate": "2010-09-08T07:47:58.103", "id": "3843", "postId": "3805", "score": "0", "text": "@Riccardo Murri - You are right. I have now edited my question title to better state my intention.", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-09-17T21:31...
{ "accepted": true, "body": "<p>The number of seconds needed to wait for your desktop to load is arbitrary and can change depending on the situation. Instead of <code>sleep</code>, try using the following to run startup applications as soon as the system load has declined:</p>\n\n<p>(Edit: Added koushik's suggestion.)</p>\n\n<pre><code>#!/bin/bash\n# \n# Delays running an application until the system load has declined.\n# \n# Usage:\n# run-when-load-low 'your command here'\n\necho \"export DISPLAY=$DISPLAY; $1 &amp;\" | batch\n\nexit 0\n</code></pre>\n\n<p>Save it as <code>~/bin/run-when-load-low</code> and add <code>run-when-load-low 'COMMAND'</code> in Startup Applications Preferences.</p>\n\n<p>Notes on this method:</p>\n\n<ul>\n<li>The script above is what has worked for me. It passes only the <code>DISPLAY</code> environment variable to the application. For <em>most</em> desktop applications this will be all you need. With that said, be sure to consider any special cases and keep this fact in mind when troubleshooting anything that isn't behaving correctly. A good place to start if you think an application might need other environment variables passed is <code>printenv</code> and the application's documentation, though I personally haven't run into this problem yet.</li>\n<li>My understanding of the system \"load\" value is that it does take into account IO waits, so delayed applications should not accidentally start too soon during the CPU usage lulls caused by desktop processes waiting on IO. This is not an area I know much about though, so please correct me if I am wrong here.</li>\n<li><code>batch</code> only affects <em>when</em> applications are run; it does not alter their priority/niceness.</li>\n<li>This should go without saying, but if your system <em>always</em> has a high load, applications scheduled using this method might never run.</li>\n<li>If you need to run an application with a parameter that contains spaces, you can escape them using the backslash: <code>run-when-load-low 'gedit My\\ Notes.txt'</code>. If you really need to pass single-quoted parameters to your application, you'll have to use double quotes in the startup command: <code>run-when-load-low \"gedit 'My Notes.txt'\"</code>. For anything more complicated than this, you're probably best off just modifying a copy of the script with your command hard-coded.</li>\n</ul>\n", "commentCount": "9", "comments": [ { "creationDate": "2010-09-08T04:43:32.450", "id": "3837", "postId": "3827", "score": "0", "text": "aendruk, thanks. this sounds like the optimal approach. 2 doubts remain, is DISPLAY the only variable needed by applications from my current environment which is not passed on by `batch` ? Also, is it possible cpu load reduces before the desktop has fully finished loading (say, waiting for disk for some icons to load) and these apps get started resulting in similar situation as before ? In other words, are the commands run with batch inherently lower priority that yield when other apps want to run ?", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-09-08T05:47:19.250", "id": "3838", "postId": "3827", "score": "0", "text": "@koushik Thanks for bringing up these points. I've updated my answer to address them.", "userDisplayName": null, "userId": "1859" }, { "creationDate": "2010-09-08T13:30:29.070", "id": "3859", "postId": "3827", "score": "0", "text": "Awesome, I had been looking for a solution to this problem for a while.", "userDisplayName": null, "userId": "119" }, { "creationDate": "2010-09-13T14:00:25.767", "id": "4139", "postId": "3827", "score": "0", "text": "aendruk - this works very well. One question still remains: I think the original command line of the startup application should be enclosed in single-quotes `''` for this to work. If the command line of the startup application has some parameters already enclosed in single-quotes, then how can I quote the command-line so that everything gets included in the input to batch ? If I understand correctly, only $1 is passed on to batch so the whole command line with quotes and everything should appear to this script as it first parameter, correct ?", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-09-15T18:53:22.570", "id": "4270", "postId": "3827", "score": "0", "text": "That's correct. And since you can't use single quotes inside single quotes, to do this you'd have to surround the application's command with double quotes instead. I've edited my answer to try to explain this, though I am a little fuzzy on the nuances of nested quoting in Bash, so please feel free to correct me if I've made a mistake somewhere.", "userDisplayName": null, "userId": "1859" }, { "creationDate": "2010-09-17T10:22:10.127", "id": "4365", "postId": "3827", "score": "1", "text": "This is now really helping me reduce time to login. Just to keep abreast of these apps eventually starting up, I have modified your script slightly to inform me when these apps actually run. Also unless the process forks to background, it stays on the `batch` queue as still running, so I made the process startup in background as well. The modified line is as follows: `echo \"export DISPLAY=$DISPLAY; notify-send 'Running on Load low' '$1' && $1 &\" | batch`", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-09-17T10:22:44.353", "id": "4366", "postId": "3827", "score": "0", "text": "... that way I know when atq is empty all my startup apps have run.", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-09-17T13:49:20.637", "id": "4370", "postId": "3827", "score": "0", "text": "Nice improvements. The one thing I might do differently is use `;` instead of `&&` since I think I'd want the application to run even when `notify-send` fails, especially since it isn't installed by default. I'll edit my answer to include the `&` since I think this is really important.", "userDisplayName": null, "userId": "1859" }, { "creationDate": "2010-09-17T21:35:51.293", "id": "4388", "postId": "3827", "score": "1", "text": "@ændrük I always refer to [Greycat's wiki](http://mywiki.wooledge.org/BashGuide/Practices#Quoting) when I'm unsure about quoting and other 'best practices'.", "userDisplayName": null, "userId": "646" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-07T20:10:25.983", "id": "3827", "lastActivityDate": "2010-09-17T13:53:27.253", "lastEditDate": "2010-09-17T13:53:27.253", "lastEditorDisplayName": null, "lastEditorUserId": "1859", "ownerDisplayName": null, "ownerUserId": "1859", "parentId": "3805", "postTypeId": "2", "score": "11" }
[ { "accepted": null, "body": "<p>Use the 'sleep' command.</p>\n\n<p>In System -> Preferences -> Startup Applications, edit the command for the programs you want to delay to:</p>\n\n<pre><code>sleep 10 &amp;&amp; COMMAND\n</code></pre>\n\n<p>Replace 10 with the number of seconds you want it to wait and COMMAN...
null
null
null
null
null
3807
1
3808
2010-09-07T14:32:40.767
23
270412
<p>I'm trying to set <strong>Network Proxy</strong> to use my LAN's internet connection to update packages. while the proxy settings works on my <strong>firefox</strong>, but the package manager still cannot connect to Internet. I have set proxy in <code>System &gt;&gt; Preferences &gt;&gt; Network Proxy</code> and I have entered the user/pass for the proxy in 'Details' too.</p> <p>How can I make sure that the Proxy Network is applied correctly?</p>
1792
7035
2011-06-03T22:16:38.763
2015-07-17T14:18:28.717
How to check if Network Proxy is really applied?
[ "networking", "package-management", "proxy" ]
9
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>First of all make sure you click on \"Apply system-wide...\" whenever you change proxy settings in the gnome-network-properties (<code>System -&gt; Preferences -&gt; Network Proxy</code>). This sets http_proxy and related environment variables. This should be available to all programs started after the proxy setting is \"Applied system-wide...\". To be really sure, you can logout and back-in to double-check this.</p>\n\n<p>If you open a terminal and use the command <code>set | grep -i proxy</code> you would see the relevant environment variables set. Ideally this should be enough.</p>\n\n<p>However, I have faced situations where all the above still doesn't work: Synaptic or <code>apt-get</code> (over commandline) can't connect to the internet through the proxy even after it is set in the above way. In such cases, one solution is to add a file in <code>/etc/apt/apt.conf.d</code> with specific proxy configuration for apt (this will be used by apt-get, aptitude, synaptic and Ubuntu software center).</p>\n\n<p>Follow the below steps:</p>\n\n<ol>\n<li><p>Create /etc/apt/apt.conf.d/40proxy</p>\n\n<p><code>gksudo gedit /etc/apt/apt.conf.d/40proxy</code></p></li>\n<li><p>Put the following contents into it - modify the contents to suit your situation.</p>\n\n<p><code>Acquire::http::Proxy \"http://proxy.site.com:8080\";</code></p></li>\n</ol>\n\n<p>If you have a user-name &amp; password you could encode the same in the proxy url (like so, <code>http://username:password@proxy.site.com:8080</code>) or you can use something like <a href=\"http://ntlmaps.sourceforge.net/\">ntlmaps</a> for better control.</p>\n\n<p>More info could be found <a href=\"http://www.debian-administration.org/articles/177\">here</a>.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-09-12T15:47:17.660", "id": "4093", "postId": "3808", "score": "1", "text": "thanks! first for introducing `set`. then as you predicted there were still problems with apt-get and update manager... and by creating `40proxy` it solved. the only remained problem just root sees the proxy. e.g `wget whatismyip.com` has different outputs with normal user and root.", "userDisplayName": null, "userId": "1792" }, { "creationDate": "2010-09-12T18:36:20.583", "id": "4103", "postId": "3808", "score": "0", "text": "Can you elaborate your remaining problem ? For example, If you set proxy using `System -> Preferences -> Network Proxy` and `Apply System-wide...` then are you saying commands run as root user do not see this setting ? (Meaning `sudo wget whatismyip.com` does not return proxy's IP address ?)", "userDisplayName": null, "userId": "270" }, { "creationDate": "2010-09-12T18:38:05.540", "id": "4104", "postId": "3808", "score": "0", "text": "On another note, make sure you backup this 40proxy file (say, somewhere in your home folder), I have had this mysteriously disappearing. I think selecting `Direct connection to Internet` on `Network Proxy` dialog probably wipes this. It could be an issue with my system also, but not sure.", "userDisplayName": null, "userId": "270" }, { "creationDate": "2023-10-28T20:42:46.040", "id": "2611267", "postId": "3808", "score": "0", "text": "You saved my life bro, big heat for you.", "userDisplayName": null, "userId": "658571" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-07T14:49:13.000", "id": "3808", "lastActivityDate": "2010-09-07T14:49:13.000", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "270", "parentId": "3807", "postTypeId": "2", "score": "15" }
[ { "accepted": true, "body": "<p>First of all make sure you click on \"Apply system-wide...\" whenever you change proxy settings in the gnome-network-properties (<code>System -&gt; Preferences -&gt; Network Proxy</code>). This sets http_proxy and related environment variables. This should be available to all...
null
null
null
null
null
3815
1
3816
2010-09-07T17:10:37.673
41
216893
<p>Is there any links/tutorials/videos that helps me share files between Ubuntu and Mac OSX?</p>
2011
3037
2011-01-03T13:31:25.133
2023-10-23T18:42:35.777
How to share files between Ubuntu and OSX?
[ "macosx", "avahi" ]
14
1
CC BY-SA 2.5
[ { "creationDate": "2017-07-03T03:33:25.640", "id": "1474743", "postId": "3815", "score": "0", "text": "This should be a site for questions and self-contained answers, not links.", "userDisplayName": null, "userId": "250300" } ]
{ "accepted": true, "body": "<p>A bit of Google-fu found <a href=\"http://web.archive.org/web/20100719220308/http://blog.ibd.com/sysadmin/bonjour-avahi-netatalk-to-share-files-files-between-ubuntu-10-4-mac-os-x/\" rel=\"nofollow noreferrer\">a guide</a> for Ubuntu 10.04 (Lucid) and Mac OS X. I haven't got a Mac handy to test on, so haven't tested it.</p>\n", "commentCount": "7", "comments": [ { "creationDate": "2011-01-03T15:59:39.483", "id": "21380", "postId": "3816", "score": "2", "text": "Bravo! Was looking for that info since October 20, 2004!", "userDisplayName": null, "userId": "6619" }, { "creationDate": "2013-06-19T16:33:32.660", "id": "391189", "postId": "3816", "score": "0", "text": "@fluteflute hi, The link is broken, is there another one?", "userDisplayName": null, "userId": "7035" }, { "creationDate": "2013-06-20T07:57:48.860", "id": "391625", "postId": "3816", "score": "1", "text": "@LuisAlvarado: have updated with a archived version of the page. Of course it's three years old so the method may no longer work.", "userDisplayName": null, "userId": "866" }, { "creationDate": "2015-08-05T14:12:31.927", "id": "945233", "postId": "3816", "score": "0", "text": "It still works with Ubuntu 15.05", "userDisplayName": null, "userId": "13714" }, { "creationDate": "2017-06-08T02:58:22.373", "id": "1458642", "postId": "3816", "score": "0", "text": "I recommend Samba instead.", "userDisplayName": null, "userId": "2312" }, { "creationDate": "2019-11-14T05:59:40.530", "id": "1987315", "postId": "3816", "score": "1", "text": "@JoshuaK Did you encounter any issue with this method (AFP server on Linux)?", "userDisplayName": null, "userId": "387188" }, { "creationDate": "2020-04-23T14:04:10.510", "id": "2070051", "postId": "3816", "score": "0", "text": "@FranklinYu I've never used AFP, but I can imagine someone recommending samba because of wider platform compatibility (windows)--like if someone were to recommend using exfa' filesystem over hfs+/apfs--which admittedly may not be at all relevant to some people's situations.", "userDisplayName": null, "userId": "737159" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-09-07T17:22:48.197", "id": "3816", "lastActivityDate": "2021-02-11T18:04:04.200", "lastEditDate": "2021-02-11T18:04:04.200", "lastEditorDisplayName": null, "lastEditorUserId": "1012821", "ownerDisplayName": null, "ownerUserId": "866", "parentId": "3815", "postTypeId": "2", "score": "15" }
[ { "accepted": true, "body": "<p>A bit of Google-fu found <a href=\"http://web.archive.org/web/20100719220308/http://blog.ibd.com/sysadmin/bonjour-avahi-netatalk-to-share-files-files-between-ubuntu-10-4-mac-os-x/\" rel=\"nofollow noreferrer\">a guide</a> for Ubuntu 10.04 (Lucid) and Mac OS X. I haven't got a...
null
null
null
null
null
3817
1
10720
2010-09-07T18:40:26.567
3
1186
<p>I have this issue where the entire text in text boxes is selected whilst I'm typing in it. For example, in FireFox search box I'd try to type "foo" but end up with "o" because I managed to type "fo" before everything was selected, and then typed "o" which replaced the "fo".</p> <p>When it happens, it is incessant - not just a one-off. But it doesn't happen all the time, and I haven't managed to figure out what causes it to start and stop.</p> <p>Is this a known problem with an easy solution?</p> <p>EDIT: this has nothing to do with touchpad. I get this occasionally even on a machine without one. I can usually rectify the issue just be alt-tabbing about a few times.</p>
1933
1933
2010-10-25T17:58:08.210
2011-02-22T13:09:23.940
Text box select issue
[ "firefox" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2011-02-22T13:10:42.610", "id": "30416", "postId": "3817", "score": "0", "text": "same here. Very very annoying. Dell Inspiron 6000 laptop. Ubuntu 10.10. Latest firefox 3.6.13. It happens on text input fields and search bar.", "userDisplayName": "user11281", "userId": ...
{ "accepted": true, "body": "<p>This has also been reported as a bug at <a href=\"https://bugs.launchpad.net/bugs/641300\" rel=\"nofollow\">https://bugs.launchpad.net/bugs/641300</a>.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-11-01T12:54:10.260", "id": "10720", "lastActivityDate": "2010-11-01T12:54:10.260", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "790", "parentId": "3817", "postTypeId": "2", "score": "5" }
[ { "accepted": null, "body": "<p>Do you have a touchpad? Without any more information given here, the most likely case in my experience is inadvertent events by the touchpad since it notices not only touches but also close proximity movements. However, due to the lack of information, this is just a guess.</p...
null
null
null
null
null
3818
1
3897
2010-09-07T18:43:44.220
16
32017
<p>I have just started at sixth form college, and I'm going to take a Computing A-level. I have been informed all the programming in the first year is in VB.NET on Windows (I believe you are allowed more freedom in the second year...)</p> <p>I do have a Windows XP partition and you can download Visual Basic Express Edition for free, however I would like to know to what extent am I likely to be able to use Ubuntu (Mono or anything else) for my studies? Can anyone give me any pointers of where to start?</p> <p>Realistically if this is to work I need to be able to use the same files/projects/whatever on both Ubuntu and Windows - so I can work from Windows machines at college, and more importantly so teachers can look at and mark my work! (I don't really want to make a point of asking my teacher about my Ubuntu use, I'd prefer to blend in and be a normal student...)</p>
866
null
null
2017-02-12T21:26:51.437
VB.NET programming in Ubuntu
[ "programming", "mono", "c#" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-11-11T17:35:50.680", "id": "13250", "postId": "3818", "score": "1", "text": "I just want to say I loved developing with VB.net, and it was one of my favorite languages to learn. Unfortunately, by the time I started learning VB.net I had already taken classes in C++ and Ja...
{ "accepted": true, "body": "<p>Use MonoDevelop but beware of the quirks of X-platform .NET development</p>\n\n<p>First, install mono by either finding it in the Software Centre or typing</p>\n\n<pre><code>sudo apt-get install monodevelop mono-vbnc\n</code></pre>\n\n<p>MonoDevelop is pretty equivalent to <em>Visual Studio Express</em> the major differences being:</p>\n\n<ul>\n<li><p>MonoDevelop doesn't support WPF (Windows Presentation Foundation) but that shouldn't matter much as Microsoft has plans to kill WPF with the arrival of Windows 8. </p></li>\n<li><p>Verify that the correct .NET framework target is being used. After creating a solution, right click on the project and goto Options->Build->General. Not much different from targeting a specific version of .NET on Windows. </p></li>\n</ul>\n\n<p>Aside from those issues, I haven't really found anything missing that I can't live without.</p>\n\n<p>The only other issue (non mono related) that may come back to bite you is the classic line ending problem. *nix still uses LF and Windows still uses CRLF for line endings so, when you transfer your source files back and fourth between Windows/*nix. AFIAK, MonoDevelop saves source files in UTF-8 by default but VS saves source files in Windows ASCII (with windows-1252 latin ASCII with windows specific line endings). If you receive source files that were created using Visual Studio you may need to convert the format to get it to work in *nix.</p>\n\n<p>As you can see, x-platform .NET development can be a little challenging at first but IMHO, it's worth it. I like MonoDevelop's non-cluttered interface (the visual effects in VS just get in the way most of the time), it loads in a fraction of the time that VS does (useful if you don't typically leave your IDE open all the time), it takes up a fraction of the space with no extra unnecessary addons (VS is really obnoxious about this).</p>\n\n<p>Installing it was easy as sudo apt-get install monodevelop. Also, popular tools like NUnit (for unit testing) have been ported over to and work flawlessly in *nix. The Windows version of MonoDevelop kinda sucks (or at least it did last time I tried it).</p>\n\n<p><strong>Update:</strong></p>\n\n<p>To get VB code to compile you'll also need to install the VB compiler module:</p>\n\n<pre><code>sudo apt-get install mono-vbnc\n</code></pre>\n\n<p>I also updated this answer to remove some of the problems that are no longer relevant.</p>\n", "commentCount": "6", "comments": [ { "creationDate": "2010-09-10T07:14:08.717", "id": "3967", "postId": "3897", "score": "1", "text": "I'm getting an error message: `Error: Visual Basict .NET compiler not found (Mono 2.4.4) (Testing)` (this is literally just trying to run the default preset Hello World VB.NET console application)", "userDisplayName": null, "userId": "866" }, { "creationDate": "2010-09-23T06:59:10.973", "id": "4707", "postId": "3897", "score": "3", "text": "@fluteflute The compiler isn't found because it isn't installed. Apparently, The VB compiler for .NET isn't installed in Ubuntu by default like it is for C#. Just 'sudo apt-get install mono-vbnc' to install it.", "userDisplayName": null, "userId": "2139" }, { "creationDate": "2012-11-11T06:13:08.897", "id": "267103", "postId": "3897", "score": "0", "text": "You are able to open Visual Studio VB.net/C# projects in Monodevelop, it compiles and runs fine, even GUI window forms work. I would recommend starting it with Visual Studio if possible, if you're working on MS Windows form applications. Mono doesn't have an easy 'design mode' to design these. (yet?)", "userDisplayName": null, "userId": "19874" }, { "creationDate": "2012-11-14T02:11:38.550", "id": "268547", "postId": "3897", "score": "0", "text": "@NoBugs Mono can handle Winforms GUIs? I always thought they would stick to just GTK#. I guess it's time to update this answer.", "userDisplayName": null, "userId": "2139" }, { "creationDate": "2012-11-14T02:36:45.443", "id": "268556", "postId": "3897", "score": "0", "text": "Yes, I've run two Windows-VS projects in Mono without problems. I think you may need to add an import to Monodevelop though? Native GTK is probably what most Linux C# apps use.", "userDisplayName": null, "userId": "19874" }, { "creationDate": "2016-02-24T05:22:22.673", "id": "1097369", "postId": "3897", "score": "0", "text": "It seems that currently it is not possible to write any VB .NET programs in Monodevelop (at least under Linux). When you create new solution - even the simplest default console application - it is not possible to load such project (\"Project does not support framework\"). Changing framework manually to 4.0 does not help. I reported that in BugZilla (https://bugzilla.xamarin.com/show_bug.cgi?id=38508) and as I can see there's a problem with framework under Mac too (https://forums.xamarin.com/discussion/28329/error-while-trying-to-load-empty-vb-net-project).", "userDisplayName": null, "userId": "110343" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-09-09T04:15:32.683", "id": "3897", "lastActivityDate": "2017-02-12T21:26:51.437", "lastEditDate": "2017-02-12T21:26:51.437", "lastEditorDisplayName": null, "lastEditorUserId": "75060", "ownerDisplayName": null, "ownerUserId": "2139", "parentId": "3818", "postTypeId": "2", "score": "18" }
[ { "accepted": null, "body": "<p>It really depends on your syllabus.</p>\n\n<p>Mono does have VB.NET language support but the framework is somewhat different in places and I'd predict that as much of your work will be about the .NET framework as it is the core language. It might not be as it sounds like it's...
null
null
null
null
null
3830
1
3831
2010-09-07T20:27:39.003
4
1791
<p>I need to connect to a specific wireless network before being able to successfully connect to my user account, since it needs access to a secured LDAP server.</p> <p>The same applies when I am outside of the office, where I need to connect to a VPN before I can log in.</p>
1724
null
null
2010-09-07T20:29:52.733
How can I use NetworkManager in GDM?
[ "network-manager", "gdm", "vpn" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Turns out it's pretty simple; just need to add a .desktop file in the directory:</p>\n\n<pre><code>/usr/share/gdm/autostart/LoginWindow/\n</code></pre>\n\n<p>A quick way to do this is to copy the nm-applet.desktop file from /etc/xdg/autostart:</p>\n\n<pre><code>cp /etc/xdg/autostart/nm-applet.desktop /usr/share/gdm/autostart/LoginWindow/\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-07T20:29:52.733", "id": "3831", "lastActivityDate": "2010-09-07T20:29:52.733", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1724", "parentId": "3830", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>Turns out it's pretty simple; just need to add a .desktop file in the directory:</p>\n\n<pre><code>/usr/share/gdm/autostart/LoginWindow/\n</code></pre>\n\n<p>A quick way to do this is to copy the nm-applet.desktop file from /etc/xdg/autostart:</p>\n\n<pre><code>cp /etc/xdg/au...
null
null
null
null
null
3832
1
null
2010-09-07T20:36:15.490
10
7442
<p>I am tired of the envelope in the indicator applet (also known as the messages menu) because I don't use it so I would like to get rid of it but I don't have root access so I can't remove it by uninstalling the indicator-messages package. Is there another way to disable this applet?</p> <p>Doesn't the indicator applet offer a way to select which indicator is displayed or not?</p>
119
41
2010-10-15T15:59:30.403
2014-10-09T13:45:26.947
How to remove envelope from Indicator applet without uninstalling the indicator-messages package?
[ "indicator" ]
4
3
CC BY-SA 2.5
[ { "creationDate": "2010-09-07T21:06:47.863", "id": "3823", "postId": "3832", "score": "0", "text": "Have you tried, right click >> \"Remove from panel\" is that what you want?", "userDisplayName": null, "userId": "431" }, { "creationDate": "2010-09-07T21:17:12.147", "id": "38...
null
[ { "accepted": null, "body": "<p><a href=\"http://ubuntuforums.org/showthread.php?t=1470786\" rel=\"nofollow\">http://ubuntuforums.org/showthread.php?t=1470786</a> according to this you can go to karmic like applet by removing indicator-applet from panel and adding gnome-volume-control-applet in startup appl...
null
null
null
null
null
3834
1
null
2010-09-07T21:00:43.723
2
1212
<p>do you know any workaround for this very long lasting bug buried somewhere in kernel or in gnome-power-manager, please? Thanks in advance. See description:</p> <p><a href="https://bugzilla.gnome.org/show_bug.cgi?id=579224" rel="nofollow">https://bugzilla.gnome.org/show_bug.cgi?id=579224</a></p>
2109
null
null
2011-10-13T13:34:36.587
Lenovo ThinkPads, brightness function keys make two steps instead of one, looking for workaround
[ "thinkpad", "lenovo" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-09-15T16:12:39.600", "id": "4256", "postId": "3834", "score": "0", "text": "IIRC, this is the same problem as with volume buttons on some ThinkPads... the hardware *just does it* and then also sends out a signal saying the button's been pressed. Possibly you could unset ...
null
[ { "accepted": null, "body": "<p>as a workaround suggest the \"brightness\" applet in gnome</p>\n\n<p><a href=\"http://library.gnome.org/users/gnome-power-manager/stable/applets-general.html.en\" rel=\"nofollow\">http://library.gnome.org/users/gnome-power-manager/stable/applets-general.html.en</a></p>\n", ...
null
null
2013-03-14T17:09:43.940
null
null
3837
1
3839
2010-09-08T00:20:45.120
14
2709
<p>What are the chances that the Ubuntu Project will die if its primary source of funds are removed? In other words, how healthy are the finances of the Ubuntu sponsors Canonical? Is Ubuntu losing money?</p>
null
41
2011-03-28T12:05:39.837
2012-10-05T00:17:07.690
Ubuntu finances and future of project
[ "canonical" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Mark Shuttleworth started an Ubuntu Foundation with an initial funding committment of $10m. This trust that has the purpose of giving Ubuntu continuity should Canonical ever be dissolved.</p>\n\n<p><a href=\"http://www.ubuntu.com/news/UbuntuFoundation\">Foundation annoucement</a></p>\n\n<p>The funding is sufficient to 'meet the public commitments to keep Ubuntu entirely free of charge, as well as meeting commitments of support for extended periods.\"</p>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-09-08T01:55:03.180", "id": "3832", "postId": "3839", "score": "0", "text": "How much revenue and how long will it last for if Canonical is dissolved?", "userDisplayName": "delete", "userId": null }, { "creationDate": "2010-09-08T06:31:38.000", "id": "3839", "postId": "3839", "score": "0", "text": "It was started with a 10 millions dollars fund according to wikipedia. No info on revenue.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-09-08T06:43:35.977", "id": "3841", "postId": "3839", "score": "1", "text": "No revenue. The Ubuntu Fundation is in a \"dormant\" state. It just stays there as a \"security net\", in case Canonical crashes. Its purpose is to make sure that, if Canonical fails, the support of Ubuntu will continue AT LEAST during the advertised support period (each release being supported for a given amount of time).", "userDisplayName": null, "userId": "23" }, { "creationDate": "2010-09-08T09:27:32.830", "id": "3846", "postId": "3839", "score": "2", "text": "Actually, I don't think Canonical pays anything to the Ubuntu Fundation. They are independant entities, as far as I understand.", "userDisplayName": null, "userId": "23" }, { "creationDate": "2010-09-09T05:16:47.400", "id": "3896", "postId": "3839", "score": "1", "text": "Don't forget, Ubuntu makes money on its apparel, OEM deals, tech support, foundation fund forex investment profit, landscape management, Ubuntu One music purchases, Ubuntu One backup storage purchases, and I'm probably not remembering the rest. As well, I'm pretty certain that IBM and Intel do some investing in both Debian and Ubuntu, not only from a time perspective, but a financial one as well.", "userDisplayName": null, "userId": "1698" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-08T01:18:41.793", "id": "3839", "lastActivityDate": "2010-09-08T15:14:32.470", "lastEditDate": "2010-09-08T15:14:32.470", "lastEditorDisplayName": null, "lastEditorUserId": "4", "ownerDisplayName": null, "ownerUserId": "4", "parentId": "3837", "postTypeId": "2", "score": "5" }
[ { "accepted": true, "body": "<p>Mark Shuttleworth started an Ubuntu Foundation with an initial funding committment of $10m. This trust that has the purpose of giving Ubuntu continuity should Canonical ever be dissolved.</p>\n\n<p><a href=\"http://www.ubuntu.com/news/UbuntuFoundation\">Foundation annoucement...
null
null
2013-01-09T08:10:00.747
null
delete
3841
1
3842
2010-09-08T01:53:52.750
58
58550
<p>Every time I reboot my machine the brightness goes back to 100% in Gnome. I wish it would keep the last setting. Is there anyway?</p>
431
235
2011-12-31T20:33:21.493
2017-09-30T15:32:31.620
Desktop doesn't remember brightness settings after a reboot
[ "gnome", "brightness" ]
11
5
CC BY-SA 3.0
[ { "creationDate": "2010-09-08T02:55:06.723", "id": "3833", "postId": "3841", "score": "0", "text": "have you tried gnome-session-save?", "userDisplayName": null, "userId": "1643" }, { "creationDate": "2011-11-01T13:29:57.913", "id": "84662", "postId": "3841", "score":...
{ "accepted": true, "body": "<p>This is supposed to be configurable in the energy options, set the brightness to the desired level and it will always be used. If you use a laptop you will also need to configure the level for battery mode as well...</p>\n\n<p>I found that Gnome has some issues about lcd panel brightness, e.g. if I run on battery mode and set the brightness manually to a given level and leave the laptop unattended for 10 seconds it will go back to the preset brightness when I take control back. Same goes when on A/C mode except it takes longer so goes unnoticed more easily. I believe all those settings should be saved somewhere and restored - at least for A/C mode.</p>\n\n<p>EDIT: For gnome3 this does not work (at least for me).</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-09-08T17:38:15.617", "id": "3870", "postId": "3842", "score": "0", "text": "I was hoping for something that automatically remembers my changes via keyboard shortcuts, but I guess you are right.", "userDisplayName": null, "userId": "431" }, { "creationDate": "2011-11-10T23:09:05.583", "id": "87836", "postId": "3842", "score": "10", "text": "So the answer is...? Changing it in Screen settings doesn't save it for the next session, and there's nothing in Power options.", "userDisplayName": null, "userId": "18056" }, { "creationDate": "2011-11-11T15:38:27.393", "id": "88125", "postId": "3842", "score": "0", "text": "As far as I remember, the setting is supposed to be restored/saved between sessions.\n\nIt has been a while since I last toyed with those settings and I don't have access to a machine running the latest Ubuntu at the moment, maybe this is a new bug?", "userDisplayName": null, "userId": "119" }, { "creationDate": "2015-05-07T23:58:24.350", "id": "877783", "postId": "3842", "score": "0", "text": "More complete answer on http://askubuntu.com/questions/66751/how-do-i-set-default-display-brightness/232668", "userDisplayName": null, "userId": "68124" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-09-08T02:06:29.320", "id": "3842", "lastActivityDate": "2011-12-21T21:41:04.623", "lastEditDate": "2011-12-21T21:41:04.623", "lastEditorDisplayName": null, "lastEditorUserId": "119", "ownerDisplayName": null, "ownerUserId": "119", "parentId": "3841", "postTypeId": "2", "score": "12" }
[ { "accepted": true, "body": "<p>This is supposed to be configurable in the energy options, set the brightness to the desired level and it will always be used. If you use a laptop you will also need to configure the level for battery mode as well...</p>\n\n<p>I found that Gnome has some issues about lcd pane...
null
null
null
null
null
3850
1
3851
2010-09-08T10:29:08.313
32
79409
<p>I've had a few security problems with a server of mine, a few SSH users have been setting up fires aka giving problems.</p> <p>I would like to:</p> <ul> <li>Track user logins and logouts</li> <li>Track activity of these SSH, in order to discover any malicious activity</li> <li>Prevent users from deleting logs</li> </ul> <hr> <p><strong>I am not much of a sys admin and I am quite inexperienced in this matter, so any kind of advice would be very welcome and very helpful.</strong> :)</p>
2127
41
2010-10-15T15:58:49.513
2018-07-09T20:04:30.960
How can I audit users and access attempts to SSH on my server?
[ "server", "security", "ssh" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Since we're talking about SSH servers, I will give you command line solutions.</p>\n\n<ul>\n<li><p>Track user logins and logouts. That's easy, the file <code>/var/log/auth.log</code> should have this information.</p></li>\n<li><p>Track activity of those users: If they are fairly innocent, you can check the file <code>.bash_history</code> in their home dir. You will see a list of the commands that they executed. The problem is of course that they can delete or edit this file.</p></li>\n<li><p>Prevent users from deleting logs: Users shouldn't be able to touch <code>auth.log</code>. In order to stop them from playing with <code>.bash_history</code> you need to do a couple of <a href=\"http://www.pc-freak.net/blog/how-to-make-sure-your-linux-system-users-wont-hide-or-delete-their-bash_history-securing-bash_history-file/\" rel=\"noreferrer\">tricks</a>. </p></li>\n<li><p>What if the user manages to obtain root access? : You're screwed. Unless they make a mistake they will be able to hide all their footsteps.</p></li>\n</ul>\n", "commentCount": "5", "comments": [ { "creationDate": "2010-09-09T21:21:44.360", "id": "3944", "postId": "3851", "score": "0", "text": "Note that there is no way to prevent users from typing `unset HISTFILE` inside bash, and then their bash history won't be recorded.", "userDisplayName": null, "userId": "1059" }, { "creationDate": "2010-09-10T07:15:59.473", "id": "3968", "postId": "3851", "score": "0", "text": "@Gilles, please read the tricks link. They set HITSFILE as a readonly variable in .profile.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-09-10T07:31:35.677", "id": "3973", "postId": "3851", "score": "0", "text": "I thought you could unset a readonly variable in a non-restricted bash, but apparently not. This improves traceability a little since starting another shell (which won't read `~/.bash_history` or `~/.bashrc`) will show up in `$HISTFILE`. But that in itself could be perfectly legitimate (e.g. the user just wants to run `zsh`, or wants to set their own option in an alternate `bashrc`).", "userDisplayName": null, "userId": "1059" }, { "creationDate": "2010-09-10T09:19:17.230", "id": "3981", "postId": "3851", "score": "1", "text": "Yes. You can restrict him to bash or some other shell. After all security is just a race.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2016-06-16T10:37:52.953", "id": "1182879", "postId": "3851", "score": "1", "text": "It's not true that \"if user manages to obtain root access\" they would be able to hide all steps. You can always use external server for audit, where all the steps would be recorded, including their becoming of root.", "userDisplayName": null, "userId": "75859" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-09-08T10:52:35.273", "id": "3851", "lastActivityDate": "2018-07-09T20:04:30.960", "lastEditDate": "2018-07-09T20:04:30.960", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "211", "parentId": "3850", "postTypeId": "2", "score": "30" }
[ { "accepted": true, "body": "<p>Since we're talking about SSH servers, I will give you command line solutions.</p>\n\n<ul>\n<li><p>Track user logins and logouts. That's easy, the file <code>/var/log/auth.log</code> should have this information.</p></li>\n<li><p>Track activity of those users: If they are fai...
null
null
null
null
null
3856
1
null
2010-09-08T12:18:39.863
4
3603
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/2631/access-ubuntu-server-by-host-name">Access Ubuntu Server by host name</a> </p> </blockquote> <p>How can I configure Ubuntu server to report its hostname in such a way that typing <code>http://thehostname/</code> in a web browser will connect to apache running on my Windows machine.</p> <p>This question is not about configuring apache, but more specifically getting <code>myhostname</code> to resolve to the machine's IP address from a computer running Windows.</p> <p>Extra information: I am running Ubuntu Server 10.04.1 32bit with minimal changes from default. The most notable change is enabling ufw.</p>
1959
-1
2017-04-13T12:23:56.577
2010-09-09T08:03:36.730
How can I configure Ubuntu to report its hostname to windows?
[ "server", "windows", "networking", "dns", "hostname" ]
0
0
CC BY-SA 2.5
[]
null
[]
null
0
2011-06-05T19:11:58.697
null
null
3860
1
3862
2010-09-08T14:05:43.583
6
6944
<p>I have a particular service (in this case OpenFire) that runs at startup. When it starts, it attempts to connect to a database at a given hostname. At startup time it fails to connect to that database because it cannot find the host in DNS.</p> <p>My best guess is that this service is executing on startup before networking has initialized and DNS servers have been obtained from DHCP. Is there any way to specify startup service dependencies that must be met before executing the <code>/etc/init.d/</code> script?</p>
2130
41
2010-09-08T17:15:23.193
2020-07-07T07:52:02.513
Auto-start service on bootup that depend on network
[ "services", "upstart" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You could look in <code>/etc/rc0.d</code> for the service; it will have <code>S##[name]</code>, for example, <code>S35networking</code>.</p>\n<p>So if you make it say <code>S36openfire</code> then it should load just after networking. Or make the number <code>99</code> (instead of <code>36</code>) and it will load last, giving the network time to do its thing.</p>\n<p>Hope that'll do the trick for you.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-09-08T16:23:24.860", "id": "3866", "postId": "3862", "score": "0", "text": "Ubuntu uses Upstart. See [this related question](https://askubuntu.com/questions/3299/how-to-run-cron-job-when-network-is-up/).", "userDisplayName": null, "userId": "877" }, { "creationDate": "2010-09-10T17:33:15.537", "id": "4012", "postId": "3862", "score": "1", "text": "While Upstart would work, I already have an rc0 script established for my service. It was K20, while networking was S35. I changed it to K36, which should do the trick. Thanks for pointing me in the right direction.", "userDisplayName": null, "userId": "2130" }, { "creationDate": "2010-12-11T02:30:20.383", "id": "18092", "postId": "3862", "score": "0", "text": "roktechie, K's are for stopping, and rc0 is for shutdown. What you want is to have the symlink in /etc/rc2.d with a number greater than 35. Still you're dealing with a race condition if you have a dynamic IP because networking's startup returns as soon as dhcp has started, not as soon as the IP is assigned.", "userDisplayName": null, "userId": "813" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-09-08T15:20:33.890", "id": "3862", "lastActivityDate": "2020-07-07T07:52:02.513", "lastEditDate": "2020-07-07T07:52:02.513", "lastEditorDisplayName": null, "lastEditorUserId": "527764", "ownerDisplayName": null, "ownerUserId": "2041", "parentId": "3860", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>You could look in <code>/etc/rc0.d</code> for the service; it will have <code>S##[name]</code>, for example, <code>S35networking</code>.</p>\n<p>So if you make it say <code>S36openfire</code> then it should load just after networking. Or make the number <code>99</code> (inst...
null
null
null
null
null
3863
1
null
2010-09-08T15:50:22.153
4
1192
<p>I want to set up an Ubuntu router with automatic fail-over to a 3G link. I can probably set up routing and link aggregation, but I don't know how to monitor link status and dial the 3G link in case it is down. Pointers to helpful resources greatly appreciated.</p>
2132
2132
2010-09-08T17:44:21.737
2010-09-09T09:41:53.340
Script to dial 3g link in case network is down?
[ "networking", "scripts", "monitoring" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-09-08T16:22:40.210", "id": "3865", "postId": "3863", "score": "2", "text": "(Congratulations, I believe you have asked question #1000 on the site!)", "userDisplayName": null, "userId": "866" }, { "creationDate": "2010-09-08T17:19:33.090", "id": "3868",...
null
[ { "accepted": null, "body": "<p>I'm not sure there's anything out there that could do this for you... However, you could, with a bit of scripting, a bit of Googling, cobble together a script that:</p>\n\n<ul>\n<li>Every 10 minutes, pings google with a timeout of 2 seconds and only from your \"fixed\" connec...
null
null
null
null
null
3865
1
3866
2010-09-08T19:11:46.623
157
158313
<p>I have a largish music collection and there are some duplicates in there. Is there any way to find duplicate files. At a minimum by doing a hash and seeing if two files have the same hash.</p> <p>Bonus points for also finding files with the same name apart from the extension - I think I have some songs with both mp3 and ogg format versions.</p> <p>I'm happy using the command line if that is the easiest way.</p>
150
-1
2014-04-22T13:41:01.913
2023-10-24T16:17:23.090
How to find (and delete) duplicate files
[ "filesystem", "music" ]
12
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<h2><a href=\"https://github.com/adrianlopezroche/fdupes#readme\" rel=\"noreferrer\">fdupes</a></h2>\n<p>I use <code>fdupes</code> for this. It is a commandline program which can be installed from the repositories with <code>sudo apt install fdupes</code>. You can call it like <code>fdupes -r /dir/ect/ory</code> and it will print out a list of dupes. fdupes has also a <a href=\"https://github.com/adrianlopezroche/fdupes#readme\" rel=\"noreferrer\">README on GitHub</a> and a <a href=\"https://en.wikipedia.org/wiki/Fdupes\" rel=\"noreferrer\">Wikipedia article</a>, which lists some more programs.</p>\n", "commentCount": "8", "comments": [ { "creationDate": "2010-09-08T20:59:04.653", "id": "3875", "postId": "3866", "score": "12", "text": "It also has a \"-d\" option that lets you choose which copy you want to keep, and deletes the other ones (or you can keep all of them if you want).", "userDisplayName": null, "userId": "30" }, { "creationDate": "2012-04-03T22:07:41.150", "id": "140862", "postId": "3866", "score": "0", "text": "How can I use the -d option to fix my problem [here](http://askubuntu.com/questions/116794/how-do-i-find-and-delete-duplicate-music-tracks)", "userDisplayName": null, "userId": "34836" }, { "creationDate": "2012-09-01T22:31:49.700", "id": "227962", "postId": "3866", "score": "0", "text": "Is it possible for fdupes to list duplicate folders instead of duplicate files?", "userDisplayName": null, "userId": "71277" }, { "creationDate": "2012-10-31T20:46:23.533", "id": "261012", "postId": "3866", "score": "0", "text": "No, I don't think so.", "userDisplayName": null, "userId": "236" }, { "creationDate": "2015-03-10T18:28:20.930", "id": "828714", "postId": "3866", "score": "2", "text": "Can you explain in more detail how to delete all duplicates (leaving only a single copy each file) in a recursive directory tree? I want to do this automatically, that is, without having to specify each time which file to keep. It should just select one of the duplicates.", "userDisplayName": null, "userId": "234374" }, { "creationDate": "2015-07-25T20:13:25.673", "id": "937813", "postId": "3866", "score": "0", "text": "I added little more explanation about the command here http://stackoverflow.com/a/31630565/54964 I would like to have similarly some static file which would remember my early wishes so I do not next time say which duplicates not to remove.", "userDisplayName": null, "userId": "25388" }, { "creationDate": "2016-06-15T19:48:34.210", "id": "1182413", "postId": "3866", "score": "12", "text": "`fdupes -r . -d -N` should save the first instance and delete the dupes. I just successfully cleared a single folder using `fdupes . -d -N` non recursively", "userDisplayName": null, "userId": "1960" }, { "creationDate": "2020-09-26T02:36:13.157", "id": "2166978", "postId": "3866", "score": "0", "text": "This didn't seem to work for all msuic files. Only some of them. Not sure why?", "userDisplayName": null, "userId": "395029" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-09-08T19:20:06.820", "id": "3866", "lastActivityDate": "2023-07-03T21:38:17.210", "lastEditDate": "2023-07-03T21:38:17.210", "lastEditorDisplayName": null, "lastEditorUserId": "349837", "ownerDisplayName": null, "ownerUserId": "236", "parentId": "3865", "postTypeId": "2", "score": "178" }
[ { "accepted": true, "body": "<h2><a href=\"https://github.com/adrianlopezroche/fdupes#readme\" rel=\"noreferrer\">fdupes</a></h2>\n<p>I use <code>fdupes</code> for this. It is a commandline program which can be installed from the repositories with <code>sudo apt install fdupes</code>. You can call it like <...
null
null
null
null
null
3869
1
3962
2010-09-08T21:27:47.943
1
4111
<p>I have an Acer Aspire 4810T with ubuntu 10.04 installed on it. <code>Fn+F3</code> should turn on/off the internal bluetooth receiver. But it does nothing. The "bluetooth" menu in System > Preferences says "your computer does not have any bluetooth adapters plugged in". I have <code>bluez</code> and <code>bluez-utils</code> installed. Other people have reported that bluetooth works out of the box on the timeline series of laptops with ubuntu. (Although others say that upgrading to a newer version of ubuntu rather than doing a fresh install can break things...)</p> <p>Various things I've read on forums that it is suggested I try have failed. <code>hcitool dev</code> gave an empty output (Just a line that said "Devices" and nothing else.) <code>hciconfig</code> finished with no output. <code>lshw | grep Bluetooth -A15</code> also finished with no output.</p> <p>I'm not sure what the next step is in diagnosing what the problem is. What can I do now to figure out where the problem is?</p>
702
235
2010-09-08T21:37:15.810
2014-05-24T18:30:28.927
Laptop's Internal bluetooth not being recognised by ubuntu: how to diagnose the problem?
[ "10.04", "networking", "bluetooth" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>First of all check if Bluetooth is turned on in BIOS.</p>\n\n<p>Make sure there are no any more switch to turn it on/off. Not with only Fn+F3</p>\n\n<p>Use <code>lsusb | grep -i bluetooth</code> to see if system recognises you BT device.</p>\n\n<p>p.s. Have you already used BT on this notebook before? Because you may have standard case with BT indicators and switches, but no BT really installed. Just asking.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-13T11:11:00.197", "id": "4125", "postId": "3962", "score": "0", "text": "I tried getting BT to work with the Windows that came preinstalled on it, no luck there either. I must have dreamed that it came with bluetooth...", "userDisplayName": null, "userId": "702" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-10T03:59:54.767", "id": "3962", "lastActivityDate": "2010-09-10T03:59:54.767", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2179", "parentId": "3869", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>On my Inspiron 1420N, the bluetooth radio is, internally, a USB device and specifies that <em>in</em> it's complete USB ID.\nTry <code>lsusb | grep Bluetooth</code>, and if that doesn't return anything, try it lowercase. If <em>that</em> doesn't return anything, open a new t...
null
null
null
null
null
3870
1
3896
2010-09-08T21:39:28.827
2
1226
<p>I downloaded the 64-bit ISO of Ubuntu, mounted it with Daemon Tools, and installed it on an WD 500 GB "My Passport" Hard Drive. I did this with the drive attached to my desktop machine. When I rebooted the desktop, it asked me if I wanted to boot into Ubuntu or not. Now, my thinking was "if I plug this drive into my laptop, it should give me the same Ubuntu option"....Yeah, not so much. It just boots straight into Windows Vista. I tried changing the boot order on the laptop (it's a Toshiba), but there was no option for booting from USB. This may be the true problem. If it is, I'll take that issue to superUser. :D</p> <p>Anyone have any suggestions to solve my issue?</p>
1940
67335
2014-08-05T05:05:40.737
2014-08-05T05:05:40.737
Moving Wubi Installed on an External Hard Drive to a Laptop
[ "system-installation" ]
2
2
CC BY-SA 2.5
[ { "creationDate": "2010-09-10T11:43:45.403", "id": "3986", "postId": "3870", "score": "0", "text": "Since you mention you mounted via Daemon Tools, I assume you were running Windows and used the \"wubi installer\" to install it. Can you confirm ? If you are really not sure pls check the screensh...
{ "accepted": true, "body": "<p>Since you have installed Ubuntu while on your desktop as Wubi installation, I believe there will be no grub installed on the desktop harddrive. Wubi modifies the <em>vista bootloader</em> to provide a Ubuntu boot option. It does so by modifying the boot.ini in the vista partition.</p>\n\n<p>If, for example, Vista is installed in C drive, you would find C:\\boot.ini which is a text file specifying the boot options. You can open that file on the host system to see how this is done on the desktop system.</p>\n\n<p><strong>Caution</strong> Wubi installs are by-design not portable across Windows installations (even between 2 machines having same version of Windows - Pls don't even try to copy the boot.ini anywhere else.). This is because of the following</p>\n\n<ol>\n<li>Wubi installs the entire ubuntu OS + persistent data into what appears to be a file to windows (see <a href=\"http://wubi-installer.org/faq.php#internals\" rel=\"nofollow\">the 2nd item in this section of wubi faq</a></li>\n<li>Location of the mount point of the drive is not expected to consistent across all systems and hence the location of this above file as the bootloader sees it can vary from one pc to another.</li>\n</ol>\n\n<p>Installing Ubuntu onto an external harddrive is an excellent option of being able to have your favourite os on-the-go and due to the above reasons doing it in a \"Wubi-mode\" kind of defeats that purpose.</p>\n\n<p>My suggestion would be, if possible, to have Ubuntu on the external hard-drive as a normal install. If you could eke out some space for a new partition in the disk using <a href=\"http://www.fsckin.com/2007/10/21/partitioning-or-resizing-drives-in-ubuntu-using-gparted/\" rel=\"nofollow\">gparted</a> in the livecd/liveusb then you could follow <a href=\"http://ubuntuforums.org/showthread.php?t=1519354\" rel=\"nofollow\">this</a> tutorial to even migrate your existing Wubi install into the new partition.</p>\n\n<p>This <a href=\"https://wiki.ubuntu.com/WubiGuide\" rel=\"nofollow\">link</a> has comprehensive info on wubi that might be helpful.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-09T07:25:54.617", "id": "3898", "postId": "3896", "score": "0", "text": "+1: it is not clear exactly what the question asker did install, how, but so long as your first statement is true, this is a well written and well referenced answer", "userDisplayName": null, "userId": "1078" }, { "creationDate": "2010-09-10T11:41:38.497", "id": "3985", "postId": "3896", "score": "0", "text": "I assumed this since \"Daemon Tools\" lists Windows as a system requirement. I have commented on the question also to trigger a confirmation.", "userDisplayName": null, "userId": "270" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-09T03:51:14.683", "id": "3896", "lastActivityDate": "2010-09-09T03:51:14.683", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "270", "parentId": "3870", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p>The boot-loader on your first machine was replaced with GRUB. The laptop still has the Vista Loader on it.</p>\n\n<p><code>grub-install</code> is probably the easiest way to get the boot record on the laptop changed to GRUB, but I'm intentionally not giving you details as you...
null
null
null
null
null
3872
1
null
2010-09-08T22:02:57.003
11
11702
<p>Under Ubuntu 10.04 one of the problems which appeared is that USB devices would no longer automatically mount when plugged in. Normally I would get a pop up message asking what application I wanted to open the newly plugged in device with, however now that doesn't happen.</p> <p>This happens regardless of the way the device is formatted (NTFS or FAT32) and all other USB devices (printer, keyboard and mouse) work perfectly. </p> <p>My current solution is the mount them manually using <code>sudo mount dev/... /medai/...</code> however to be honest I'm just getting tired of having to do this.</p> <p>I'm happy to post any extra information you are likely to need. I know there will be lots of places I could look to find out what's going wrong but I have no idea where to start really.</p>
976
41
2010-09-15T16:24:47.357
2013-05-03T13:25:29.497
USB Storage Device Automount
[ "10.04", "mount", "usb", "storage" ]
9
4
CC BY-SA 2.5
[ { "creationDate": "2010-09-09T00:38:59.867", "id": "3883", "postId": "3872", "score": "0", "text": "I'd start by looking whether there are log entries in `~/.xsession-errors`, `/var/log/daemon` or `/var/log/kern` when you attach a device...", "userDisplayName": null, "userId": "1116" }...
null
[ { "accepted": null, "body": "<p>Try in Nautilus → Edit → Preferences → Media</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-08T23:01:32.533", "id": "3876", "postId": "3874", "score": "0", "text": "All of them are set to \"ask what ...
null
null
null
null
null
3877
1
3886
2010-09-08T23:32:04.723
6
865
<p>I would assume not as Preload is installed to use idle priority. Though I wonder if it is a duplication of efforts with other processes installed in Ubuntu. Does anyone have any more information?</p>
2138
169736
2014-02-28T16:07:18.807
2014-02-28T16:07:18.807
Does Preload in conlict with other read-ahead type processes?
[ "boot" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Well I have been using preload for some years on all my ubuntu installations and never had any problems. And I'm quite prone to <a href=\"https://askubuntu.com/questions/2194/\">tinkering</a> with the system.</p>\n\n<p>Even the launchpad preload <a href=\"https://bugs.launchpad.net/ubuntu/+source/preload/+bugs?field.status:list=NEW\" rel=\"nofollow noreferrer\">bug's page</a> does not list any direct conflicts.</p>\n\n<p>I would say you are safe.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-09T18:02:44.240", "id": "3932", "postId": "3886", "score": "0", "text": "Thanks for the answer! It seems like it works quite well. I see no regressions so I will mark this answered.", "userDisplayName": null, "userId": "2138" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-09T02:13:37.433", "id": "3886", "lastActivityDate": "2010-09-09T02:13:37.433", "lastEditDate": "2017-04-12T07:23:19.023", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "431", "parentId": "3877", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Well I have been using preload for some years on all my ubuntu installations and never had any problems. And I'm quite prone to <a href=\"https://askubuntu.com/questions/2194/\">tinkering</a> with the system.</p>\n\n<p>Even the launchpad preload <a href=\"https://bugs.launchp...
null
0
null
null
null
3879
1
null
2010-09-08T23:57:17.730
5
677
<p>I have a bunch of bookmarks in my laptop, I know I can copy ~/.gtk-bookmarks to my desktop</p> <p>But i have to re-entry all the passwords for ftp, ssh, etc...</p> <p>Is there a way i could restore the bookmarks <strong>along</strong> with theirs respective passwords.</p> <p>My username/id is the same in both computers and both keyrings are unlocked on login.</p> <p>Any help?</p>
551
null
null
2010-09-09T03:22:55.403
Restore Gnome Bookmarks with passwords
[ "gnome", "keyrings" ]
1
2
CC BY-SA 2.5
[ { "creationDate": "2010-09-09T03:14:56.473", "id": "3890", "postId": "3879", "score": "0", "text": "I think one is supposed to be able to use Gnome Keyring to handle all of those but after spending the better part of an afternoon trying to get it working, gave up. What documentation exists is li...
null
[ { "accepted": null, "body": "<p>I believe these are stored in the Gnome Keyring with no technical connection to bookmarks. Try copying <code>~/.gnome2/keyrings</code> from your old home directory to restore the entire keyring.</p>\n\n<p>You can use Accessories -> Passwords and Encryption Keys afterwards to ...
null
null
null
null
null
3880
1
null
2010-09-09T00:45:20.070
7
1605
<p>I have a large music collection on an external drive, and until I installed ubuntu, my preferred music player was Itunes. I am currently using Rythymbox. Is there a program that is better for listening, loading onto Ipods, and general organization?</p>
2141
7035
2012-01-16T02:54:31.117
2012-09-13T19:44:11.730
Best alternative of Itunes for the use of iPods
[ "video", "music", "itunes" ]
12
2
CC BY-SA 3.0
[ { "creationDate": "2012-01-16T06:23:12.073", "id": "109656", "postId": "3880", "score": "0", "text": "The only solution to get everything working with my iPods is to use windows and iTunes. it's a bit sad but true...", "userDisplayName": null, "userId": "10698" }, { "creationDate...
null
[ { "accepted": null, "body": "<p>It's a question of personal preferences. I use both Rythmbox and Banshee and still don't know which one I like ;)</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-09T03:08:57.167", "id": "3888", "postId": "3881", ...
null
null
null
null
null
3883
1
null
2010-09-09T01:40:38.333
161
547176
<p>Are there any tools, methods, incantations to recover recently deleted files on Ubuntu?</p> <p>If it makes any difference, I want to recover a <a href="http://keepass.info/">Keepass</a> 2.x database file. But would be better to have a method/tool that works on any kind of file.</p>
431
169736
2013-12-02T15:22:44.817
2021-05-04T12:02:59.603
How to recover deleted files?
[ "data-recovery" ]
12
1
CC BY-SA 2.5
[ { "creationDate": "2014-11-06T03:59:14.397", "id": "748383", "postId": "3883", "score": "0", "text": "Related, but not really a duplicate: [Can files/directories deleted from terminal be restored?](http://askubuntu.com/questions/6698/can-files-directories-deleted-from-terminal-be-restored)", ...
null
[ { "accepted": null, "body": "<p>Try Scalpel</p>\n\n<pre><code>sudo apt-get install scalpel\n</code></pre>\n\n<p>for more info</p>\n\n<blockquote>\n <p><a href=\"http://manpages.ubuntu.com/manpages/precise/man1/scalpel.1.html\">man scalpel</a></p>\n</blockquote>\n", "commentCount": "5", "comments": ...
null
null
null
null
null
3899
1
3909
2010-09-09T05:27:19.827
5
9393
<p>I use <code>xinput</code> to <a href="https://askubuntu.com/questions/3719/how-can-i-set-different-sensitivities-for-two-mice-at-the-same-time">change the settings of my USB mouse</a>:</p> <pre><code>xinput set-ptr-feedback 'USB Optical Mouse' 4 1 1 </code></pre> <p>How can I make these settings persistent after unplugging the mouse or rebooting?</p>
1859
-1
2017-04-13T12:23:44.677
2012-02-26T18:40:28.273
How do I make xinput mouse settings persistent for a USB mouse?
[ "configuration", "mouse", "usb", "input-devices" ]
2
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>You could <code>cron</code> the command or add it to your startup but neither are particularly elegant. If I were you, I'd add this to my udev rules and let the system detect events and fire off the command when it needs to.</p>\n\n<p>First we need the mouse vendor and product strings. You can find these through <code>lsusb</code>. Look for your mouse. Here's my mouse shows up:</p>\n\n<pre><code>Bus 004 Device 012: ID 1532:000f Razer USA, Ltd \n</code></pre>\n\n<p>The In the part <code>1532:000f</code>, <code>1532</code> is the vendor and <code>000f</code> is the product.</p>\n\n<p>So then we add a rule to udev. udev rules are found in <code>/lib/udev/rules.d/</code>. You can <a href=\"http://www.reactivated.net/writing_udev_rules.html\">write your own</a> or be cheeky and edit another one. There is a helpful little README in there too that I suggest you peruse (<code>cat /lib/udev/rules.d/README</code>).</p>\n\n<p>Whichever you do you want to add a rule like this. Notice I use the IDs from earlier to make this work.</p>\n\n<pre><code>BUS==\"usb\", SYSFS{idVendor}==\"1532\", SYSFS{idProduct}==\"000f\", ACTION==\"add\",\nRUN+=\"/usr/bin/xinput set-ptr-feedback 'USB Optical Mouse' 4 1 1\"\n</code></pre>\n\n<p>udev <em>should</em> pick that up immediately.</p>\n\n<p>Note udev can do pretty clever things on its own when it comes to configuring devices. You might not need <code>xinput</code> at all. Here's an example of <a href=\"http://daniel.hahler.de/hal-configuration-for-kingsis-peripherals-evoluent-verticalmouse-3\">a custom configuration</a> for a mouse.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-09-09T09:53:08.150", "id": "3900", "postId": "3909", "score": "0", "text": "Hmmm... but `udevd` will run commands as root, so no access to your $DISPLAY...", "userDisplayName": null, "userId": "325" }, { "creationDate": "2010-09-09T10:09:23.523", "id": "3902", "postId": "3909", "score": "0", "text": "True. You could just wump `env DISLPAY=:0 ` in front of the command. But no, making udev do what the xinput command is doing would be an altogether better solution.", "userDisplayName": null, "userId": "449" }, { "creationDate": "2010-09-09T10:38:03.317", "id": "3904", "postId": "3909", "score": "1", "text": "Not that easy: you also need the Xauthority cookie to access the\ndisplay, so `env HOME=/home/user DISPLAY=:0 ...` is a better stab at\nit. But then, if `gdm` changes the display number (e.g., multiple\ncuncurrent logins), it won't work anyway... (already walked this way\nfor a similar problem and got nowhere). \n\nOne of the links in the \"custom configuration\" page that you posted suggests using \"xorg.conf.d\" snippets in Ubuntu 10.04, which seems to be _the_ right way. But then, it's not clear how to translate `xinput set-ptr-feedback` into Xorg.conf directives...", "userDisplayName": null, "userId": "325" }, { "creationDate": "2010-09-09T11:48:22.090", "id": "3907", "postId": "3909", "score": "0", "text": "To address the user issue you can wrap the command in a `su` command. The run would be: `/bin/su username -c '/usr/bin/xinput set-ptr-feedback \\'USB Optical Mouse\\' 4 1 1'` (my escaping might not be right). But yes, this still might not work here. Custom evdev commands through udev are probably the best device specific option though, but yes, xorg rules should work too. But this requires a translation of the `xinput` command that, like you, I don't know.", "userDisplayName": null, "userId": "449" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-09T08:51:41.290", "id": "3909", "lastActivityDate": "2010-09-09T08:51:41.290", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "3899", "postTypeId": "2", "score": "7" }
[ { "accepted": null, "body": "<p>I can think of no other solution than starting a little daemon that\nperiodically polls <code>xinput --list</code> and runs a command when a device is\nplugged in or removed.</p>\n\n<p>Sample code:</p>\n\n<pre><code>#! /bin/sh -x\n#\n# xievd [INTERVAL]\n#\n# Poll `xinput` dev...
null
null
null
null
null
3913
1
null
2010-09-09T11:55:26.850
43
249901
<p>I've been doing my google-fu, but I can only find outdated guides or guides pertaining solely to the server variations of Ubuntu.</p> <p>I need to set it up so that ssh server is run on boot, so I can access the computer remotely without having to first physically log in on the host computer. How would I do that? I already have ssh server set up so that I can log in and all that, but first I would have to log in on the host and run <code>sudo /etc/init.d/ssh start</code></p>
334
null
null
2017-10-10T04:45:34.543
Start ssh server on boot
[ "ssh", "autostart" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2010-09-09T13:17:32.357", "id": "3911", "postId": "3913", "score": "1", "text": "Are you on wireless?", "userDisplayName": null, "userId": "1546" }, { "creationDate": "2010-09-09T13:33:08.893", "id": "3912", "postId": "3913", "score": "1", "text...
null
[ { "accepted": null, "body": "<p>This should do the trick..</p>\n\n<pre><code>sudo update-rc.d ssh defaults\n</code></pre>\n\n<p><strong>EDIT:</strong>\nIf your network is configured with Network Manager then the connection will not be established until a user logs in through the GUI. For manually configurin...
null
null
null
null
null
3915
1
null
2010-09-09T12:12:27.457
2
817
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="https://askubuntu.com/questions/4922/gui-twitter-clients-what-are-my-options">GUI Twitter clients: what are my options?</a> </p> </blockquote> <p>Can we get a list of Twitter clients that support Oauth going?</p> <p>Gnome:</p> <p><a href="http://gwibber.com/" rel="nofollow noreferrer">Gwibber</a></p> <p>KDE:</p> <p><a href="https://www.ohloh.net/p/choqok" rel="nofollow noreferrer">Choqok</a> <a href="https://www.ohloh.net/p/choqok/download?package=choqok" rel="nofollow noreferrer">source</a> >= beta 3 has oauth</p> <p>Air:</p> <p><a href="https://www.tweetdeck.com/desktop/" rel="nofollow noreferrer">TweetDeck</a></p> <p><a href="http://www.twhirl.org/" rel="nofollow noreferrer">Twhirl</a></p>
646
-1
2017-04-13T12:25:03.100
2010-10-11T02:07:59.833
List of Twitter clients that support Oauth?
[ "gwibber", "twitter", "client" ]
4
1
CC BY-SA 2.5
[ { "creationDate": "2010-09-09T23:17:29.117", "id": "3950", "postId": "3915", "score": "0", "text": "You don't need to link to the PPA version of gwibber, it's been fixed in Lucid.", "userDisplayName": null, "userId": "235" } ]
null
[ { "accepted": null, "body": "<p>If you don't insist on using free software - twhirl and TweetDeck (Adobe AIR apps) support Twitter's OAuth. Note that both of them support multiple accounts and can be used with status.net instances too.</p>\n", "commentCount": "3", "comments": [ { "crea...
2010-09-09T12:12:27.457
0
2010-10-11T04:17:04.987
null
null
3920
1
3921
2010-09-09T14:25:40.863
0
330
<p>I copied photos onto my notebook hard drive and got a warning of limited hard drive space...I continued to copy photos onto my hard dirve. I got a message that the space limit was reached an no more photos could be copied onto the hard drive.</p> <p>I restarted my notebook and the initial Ubuntu page could not load due to lack of memory. I tried to start-up in safe mode, buit to no avail. I guess that will mean that I uninstall Ubuntu completely and reinstall it again.</p> <p>I have all important stuff backed up in case I need to unistall Ubuntu. My screen is black at the moment with my computer name prompting for the password. When I type in the password I get a message" the configuration defaults for GNOME Power Manager have not been installed correctly. See administrator." </p> <p>What can I do and how do I do it?</p>
794
null
null
2010-09-09T14:34:51.877
My computer does not want to start-up
[ "startup", "login-screen" ]
1
1
CC BY-SA 2.5
[ { "creationDate": "2010-09-10T03:44:25.417", "id": "3961", "postId": "3920", "score": "1", "text": "Hopefully next time you'll remember not to fill up all the space on your hard drive ;-) (any OS needs a little bit of free disk space to work)", "userDisplayName": null, "userId": "104" ...
{ "accepted": true, "body": "<ul>\n<li>Try a terminal Ctrl+alt+F1</li>\n<li>Boot with live CD</li>\n</ul>\n\n<p>And delete files</p>\n", "commentCount": "9", "comments": [ { "creationDate": "2010-09-09T14:38:50.190", "id": "3919", "postId": "3921", "score": "0", "text": "I dont have a live CD...I downloaded Ubuntu online.", "userDisplayName": null, "userId": "794" }, { "creationDate": "2010-09-09T14:39:57.440", "id": "3920", "postId": "3921", "score": "0", "text": "I also did not mention that I am running windows as well.", "userDisplayName": null, "userId": "794" }, { "creationDate": "2010-09-09T15:08:48.307", "id": "3921", "postId": "3921", "score": "0", "text": "There are ext-Drivers for windows, but I never tried them.\nDid you install Ubuntu with the wubi installer?", "userDisplayName": null, "userId": "1826" }, { "creationDate": "2010-09-09T17:00:58.600", "id": "3926", "postId": "3921", "score": "0", "text": "I am not sure...I downloaded from 10.4 from Ubuntu website and installed it...is there a way to uninstall Ubuntu without touching windows?...I'll reinstall ubuntu again as soon as I cleared some space off my notebook.", "userDisplayName": null, "userId": "794" }, { "creationDate": "2010-09-09T17:18:00.130", "id": "3927", "postId": "3921", "score": "0", "text": "CTRL-ALT-F1 as suggested should work.", "userDisplayName": null, "userId": "742" }, { "creationDate": "2010-09-09T17:46:21.567", "id": "3930", "postId": "3921", "score": "0", "text": "The suggestion should work. If you installed it inside windows you can remove it as any other program. If you have an ISO of ubuntu you can use something like http://unetbootin.sourceforge.net/ to create live usb. Checkout https://help.ubuntu.com/community/Installation/FromWindows", "userDisplayName": null, "userId": "1543" }, { "creationDate": "2010-09-13T11:24:15.813", "id": "4126", "postId": "3921", "score": "0", "text": "I tried Crtl-Alt-F1...put my laptop login and password...message now is: hylton@hylton:~$ ....where to from here.", "userDisplayName": null, "userId": "794" }, { "creationDate": "2010-09-13T12:05:43.013", "id": "4133", "postId": "3921", "score": "0", "text": "type<br>\nsudo apt-get autoclean<br>\n<your password><br>\nReboot and it should work", "userDisplayName": null, "userId": "1826" }, { "creationDate": "2010-09-13T12:11:54.880", "id": "4134", "postId": "3921", "score": "0", "text": "type \"sudo apt-get autoclean\" (without \") then your password Reboot and it should work", "userDisplayName": null, "userId": "1826" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-09T14:34:51.877", "id": "3921", "lastActivityDate": "2010-09-09T14:34:51.877", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1826", "parentId": "3920", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<ul>\n<li>Try a terminal Ctrl+alt+F1</li>\n<li>Boot with live CD</li>\n</ul>\n\n<p>And delete files</p>\n", "commentCount": "9", "comments": [ { "creationDate": "2010-09-09T14:38:50.190", "id": "3919", "postId": "3921", "score": "0",...
null
null
null
null
null
3924
1
3947
2010-09-09T15:49:10.150
19
48113
<p>I have a server that, as of the upgrade to 10.04, is now running the "ondemand" CPU scaling daemon. Why would it automatically install this? I don't want my server saving power at the expense of performance.</p>
1304
158442
2017-04-11T08:34:12.523
2020-05-01T18:26:32.660
Disable "ondemand" CPU scaling daemon
[ "cpu", "governor" ]
8
4
CC BY-SA 2.5
[ { "creationDate": "2010-09-09T22:42:14.343", "id": "3948", "postId": "3924", "score": "5", "text": "You're mistaking the ondemand governor for the powersave one.", "userDisplayName": null, "userId": "1546" }, { "creationDate": "2010-09-10T00:15:37.243", "id": "3956", "pos...
{ "accepted": true, "body": "<h1>Ubuntu prior to 18.04</h1>\n<p>Instead of disabling execution of the <code>/etc/init.d/ondemand</code> (as suggested by George) script you should use the this command</p>\n<pre><code>sudo update-rc.d ondemand disable\n</code></pre>\n<p>To make the init system not start the script, this is the recognized way of doing it! Disabling the exec permission (<code>sudo chmod -x /etc/init.d/ondemand</code>) might be overwritten if the package is updated.</p>\n<h1>Ubuntu 18.04+</h1>\n<p>Ubuntu relocated this script to <code>ondemand.service</code> which execute <code>/lib/systemd/set-cpufreq</code>; use this command to disable the service</p>\n<pre><code>~$ sudo systemctl disable ondemand\nRemoved /etc/systemd/system/multi-user.target.wants/ondemand.service.\n</code></pre>\n", "commentCount": "2", "comments": [ { "creationDate": "2016-03-22T17:25:18.583", "id": "1116400", "postId": "3947", "score": "0", "text": "If I do : sudo update-rc.d other_governor enable , will it set a permanent desired governor ?", "userDisplayName": null, "userId": "109740" }, { "creationDate": "2023-10-05T01:48:43.273", "id": "2606184", "postId": "3947", "score": "0", "text": "If anyone is wondering if there is a performance difference:\n\nI just did a stress test on my MongoDB node (non-cloud bare metal) and simply by shifting the Intel CPU from power saving -> performance, the number of transactions per second that the node is capable of processing went from about 1000 /s to 5500 /s.", "userDisplayName": null, "userId": "1646455" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-09-09T21:58:15.453", "id": "3947", "lastActivityDate": "2020-05-01T18:26:32.660", "lastEditDate": "2020-06-12T14:37:07.210", "lastEditorDisplayName": null, "lastEditorUserId": "-1", "ownerDisplayName": null, "ownerUserId": "455", "parentId": "3924", "postTypeId": "2", "score": "36" }
[ { "accepted": null, "body": "<p>To make all CPUs run at maximum performance continually on a Ubuntu desktop or server, run:</p>\n\n<pre><code>sudo chmod -x /etc/init.d/ondemand\n</code></pre>\n\n<p>at the shell prompt and enter your password.\nThis disables the shell script that makes all CPUs run at speed ...
null
null
null
null
null
3929
1
3930
2010-09-09T17:28:21.447
18
2399
<p>I <a href="http://lwn.net/Articles/404248/" rel="nofollow noreferrer">just found out</a> that Broadcom has released a set of open source drivers for their wireless cards. I know that the Ubuntu kernel team keeps a package of backported drivers for LTS 10.04.</p> <p>Is the driver mature enough to be included in an update for LTS users, or will they have to wait for 10.10? </p> <p>Update for users who might be affected: <a href="https://askubuntu.com/questions/4000/how-can-i-tell-if-i-have-a-broadcom-wireless-card">How can I tell if I have a broadcom wireless card?</a> </p>
235
-1
2017-04-12T07:23:19.023
2010-09-13T20:44:17.220
Will the new open source Broadcom drivers be available in the current LTS release?
[ "10.04", "wireless", "kernel" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>As it stands currently (unless something drastic happens), yes. We expect this to land in the <code>compat-wireless</code> package as soon as it has been approved. The current plan is to bring it in to Maverick (10.10) in this way and then, potentially, to backport to Lucid (10.04)</p>\n\n<p>~JFo</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-10T17:31:13.010", "id": "4011", "postId": "3930", "score": "2", "text": "Great to hear it from the highest authority instead of various guesswork.", "userDisplayName": null, "userId": "963" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-09T17:32:25.470", "id": "3930", "lastActivityDate": "2010-09-09T17:33:39.050", "lastEditDate": "2010-09-09T17:33:39.050", "lastEditorDisplayName": null, "lastEditorUserId": "235", "ownerDisplayName": null, "ownerUserId": "1657", "parentId": "3929", "postTypeId": "2", "score": "21" }
[ { "accepted": true, "body": "<p>As it stands currently (unless something drastic happens), yes. We expect this to land in the <code>compat-wireless</code> package as soon as it has been approved. The current plan is to bring it in to Maverick (10.10) in this way and then, potentially, to backport to Lucid (...
null
null
null
null
null
3933
1
null
2010-09-09T17:41:47.637
4
3990
<p>I recently bought a USB wifi adapter for my new desktop computer. It's a D-link DWA-160 A2. From the start it didn't want to work at all, but after unplugging and then plugging it back in, it seems to work.</p> <p>However, my browsing is painfully slow. NetworkManager reports the connection to be at around 78-85% signal strength, which seems perfectly acceptable. </p> <p>Is there anything I can do to make it faster? I'm dual booting with Windows 7, where it seems to work fine, so I'm guessing that the problem occurs because of crappy drivers.</p>
334
235
2010-09-16T20:58:37.457
2012-03-04T15:40:23.510
Slow wifi with D-link DWA-160 A2
[ "wireless", "networking" ]
1
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>What is the chipset of D-link DWA-160 A2 ? Googling a bit, it seems to be an Atheros chipset. If it happens to be an AR9285, you are using the ath9k driver and might be hitting bug 518818 (on launchpad)</p>\n\n<p>Using latest compat-wireless solved the issue for me, so you ca...
null
null
null
null
null
3934
1
3935
2010-09-09T17:54:07.210
55
259879
<p>I'm brand new to Ubuntu and Linux in general and I installed Ubuntu on a second PC (just to be sure that if I mess something up, I still have my Windows 7 PC).</p> <p>Is there an easy way for me to use remote desktop or an equivalent on my Windows 7 PC to connect to my Ubuntu PC? I want to be able to work on Ubuntu without having two keyboards/mice.</p> <p>So far, what I've found on the web take for granted that I'm already good with Linux, which is not my case. So I'm looking for a answer for dummies. ;)</p>
1563
196255
2013-12-13T16:12:57.040
2017-02-14T09:45:27.513
Is it possible to use remote desktop from Windows 7 to Ubuntu?
[ "windows-7", "remote-desktop" ]
13
1
CC BY-SA 3.0
[ { "creationDate": "2016-09-23T10:43:33.463", "id": "1260884", "postId": "3934", "score": "0", "text": "On Ubuntu 15.10 I have successfully used Remote Desktop Client to connect to a Windows Server 2012", "userDisplayName": null, "userId": "432074" } ]
{ "accepted": true, "body": "<p>I believe you can use various VNC applications on Windows that are compatible with the built in one on Ubuntu. I really can not recommend any specific ones, as I have not used them since 2005. Remember to go to System -> Preferences -> Remote Desktop to set it up if Ubuntu is the guest.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2013-01-25T14:26:32.917", "id": "307777", "postId": "3935", "score": "55", "text": "This is an incredibly vague answer; I'm not sure why it's gotten so many upvotes.", "userDisplayName": null, "userId": "125866" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-09T18:00:58.037", "id": "3935", "lastActivityDate": "2010-09-09T18:00:58.037", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2138", "parentId": "3934", "postTypeId": "2", "score": "18" }
[ { "accepted": true, "body": "<p>I believe you can use various VNC applications on Windows that are compatible with the built in one on Ubuntu. I really can not recommend any specific ones, as I have not used them since 2005. Remember to go to System -> Preferences -> Remote Desktop to set it up if Ubuntu is...
null
null
null
null
null
3939
1
3941
2010-09-09T20:09:14.080
3
1401
<p>I've got an x61 tablet pc with fingerprint reader, and I want a way to see the image(?) scanned when I swipe my finger. Obviously I can use it for login - I don't really care about that, it's easier for me to type my password. I just want to be able to see the fingerprint it gets.</p>
658
41
2010-10-15T16:02:41.030
2010-10-15T16:02:41.030
x61 Fingerprint Reader as a scanner?
[ "thinkpad", "fingerprint-reader" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>The X61 series <a href=\"http://www.thinkwiki.org/wiki/Integrated_Fingerprint_Reader\" rel=\"nofollow\">uses</a> a UPEK Touchstrip fingerprint reader that, when using Linux drivers, <a href=\"http://reactivated.net/fprint/wiki/Upekts#Device_operation\" rel=\"nofollow\">does hardware image processing</a> and then returns a status to the computer. Due to this design there is no way for you to access the scanned image.</p>\n\n<p>With that said, there is <a href=\"http://reactivated.net/fprint/wiki/Upekts#Other_capabilities\" rel=\"nofollow\">evidence</a> that with proprietary Windows drivers the device operates in a different mode that is capable of returning a scanned image, but it doesn't looks like there's been any development done in this area.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-09T20:19:47.730", "id": "3941", "lastActivityDate": "2010-09-09T20:34:44.790", "lastEditDate": "2010-09-09T20:34:44.790", "lastEditorDisplayName": null, "lastEditorUserId": "1859", "ownerDisplayName": null, "ownerUserId": "1859", "parentId": "3939", "postTypeId": "2", "score": "4" }
[ { "accepted": true, "body": "<p>The X61 series <a href=\"http://www.thinkwiki.org/wiki/Integrated_Fingerprint_Reader\" rel=\"nofollow\">uses</a> a UPEK Touchstrip fingerprint reader that, when using Linux drivers, <a href=\"http://reactivated.net/fprint/wiki/Upekts#Device_operation\" rel=\"nofollow\">does h...
null
null
null
null
null
3940
1
4385
2010-09-09T20:12:44.227
1
3458
<p>I'm trying to get the zoom wheel on my wacom bamboo to work. Though i have very little idea of how to do so. I tried using xinputwacom (i think) however it moaned it was missing something. Is there anyway of running wacom-tools on 10.04?</p> <p>A bit more reading here on wacom-tools <a href="http://who-t.blogspot.com/2010/09/wacom-support-in-linux.html" rel="nofollow">http://who-t.blogspot.com/2010/09/wacom-support-in-linux.html</a></p>
633
235
2011-01-29T05:48:00.857
2011-01-29T05:48:00.857
How do I get the wacom zoom wheel working?
[ "input-devices", "wacom", "graphics-tablet", "bamboo" ]
2
3
CC BY-SA 2.5
[ { "creationDate": "2010-09-20T00:53:35.020", "id": "4477", "postId": "3940", "score": "0", "text": "Please edit your question topic so it's clearer to understand on the front page.", "userDisplayName": null, "userId": "235" }, { "creationDate": "2010-09-23T18:59:45.217", "id"...
{ "accepted": true, "body": "<p>What you're going to want to be looking into is a command called <a href=\"http://linuxwacom.sourceforge.net/index.php/howto/xsetwacom\" rel=\"nofollow\" title=\"xsetwacom\">xsetwacom</a></p>\n\n<p>I think this is included in default repositories in Ubuntu lucid/maverick.</p>\n\n<p>AbsWUp and AbsWDn correspond to \"up\" and \"down\" scrolling on the touch-ring.</p>\n\n<p>Your command is going to be something like:</p>\n\n<p><code>xsetwacom set \"Wacom Bamboo pad\" AbsWUp \"key +\"</code> \n(setting scroll-up to \"+\" key to zoom in.)</p>\n\n<p>However, they've changed around the way commands are set a little bit in the newest release of xsetwacom. I'm not sure precisely how to phrase this command to get it to work in Ubuntu 10.04 +. </p>\n\n<p>You can get help for this at the linuxwacom project mailing list: \nlists.sourceforge.net/lists/listinfo/linuxwacom-discuss</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-19T19:50:44.567", "id": "4385", "lastActivityDate": "2010-09-19T19:50:44.567", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2383", "parentId": "3940", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>Doesn't look like wacom-tools is supported under 10.04. Linux.com did just post a walkthrough of getting the wacom bamboo working with 10.04. <a href=\"http://www.linux.com/learn/tutorials/347367-using-a-bamboo-tablet-with-ubuntu-1004\" rel=\"nofollow\" title=\"Wacom Bamboo o...
null
null
null
null
null
3942
1
3943
2010-09-09T20:39:08.313
8
16697
<p>It just isn't there on the base install of a virtual host I am evaluating from an ISP.</p> <p>Not in path:</p> <pre><code>root@vpstest2:~# tasksel -bash: tasksel: command not found </code></pre> <p>Config files not there:</p> <pre><code>root@vpstest2:~# ls /usr/share/tas* ls: cannot access /usr/share/tas*: No such file or directory </code></pre> <p>It's just .... gone!</p> <pre><code>root@vpstest2:~# whereis tasksel tasksel: </code></pre> <p>I'm a little concerned that the install is broken. Running locate spews this out:</p> <pre><code>locate: can not stat () `/var/lib/mlocate/mlocate.db': No such file or directory </code></pre>
1008
235
2011-01-17T15:03:54.450
2011-11-21T19:21:30.207
Shouldn't tasksel be installed by default?
[ "10.04", "64-bit", "server" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>According to the <a href=\"http://releases.ubuntu.com/lucid/ubuntu-10.04.1-server-amd64.list\" rel=\"noreferrer\">server manifest</a> it is installed by default. It must have been removed at some point in your install perhaps? To reinstall it:</p>\n\n<pre><code>sudo apt-get install tasksel\n</code></pre>\n\n<p>The second error is probably because you haven't run updatedb yet:</p>\n\n<pre><code>sudo updatedb\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 3.0", "creationDate": "2010-09-09T20:56:26.213", "id": "3943", "lastActivityDate": "2011-11-21T19:21:30.207", "lastEditDate": "2011-11-21T19:21:30.207", "lastEditorDisplayName": null, "lastEditorUserId": "814", "ownerDisplayName": null, "ownerUserId": "235", "parentId": "3942", "postTypeId": "2", "score": "11" }
[ { "accepted": true, "body": "<p>According to the <a href=\"http://releases.ubuntu.com/lucid/ubuntu-10.04.1-server-amd64.list\" rel=\"noreferrer\">server manifest</a> it is installed by default. It must have been removed at some point in your install perhaps? To reinstall it:</p>\n\n<pre><code>sudo apt-get i...
null
null
null
null
null
3944
1
3950
2010-09-09T21:36:25.677
3
5323
<p>I have all of my music on a network drive hooked up to an Ubuntu server. I can access the music from my Ubuntu laptop. The problem is that I can't find a program that will use my samba connection to access the music directly. Any suggestions?</p>
2170
null
null
2016-05-05T02:11:38.413
Music player that can access/catalog music on network drive
[ "music" ]
3
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>I would suggest you use a streaming server application.</p>\n\n<p>There is <code>ampache</code> (amarok, andriod client, ..), which is a PHP + Mysql webstreaming application.\n<a href=\"http://ampache.org/wiki/clients:amarok\" rel=\"nofollow\">http://ampache.org/wiki/clients:amarok</a></p>\n\n<p>and there is the <code>Firefly Mediaserver</code> <a href=\"http://www.fireflymediaserver.org/\" rel=\"nofollow\">http://www.fireflymediaserver.org/</a>\n<br/>Firefly has also the support to stream to iTunes and lots of other applications including Rhythmbox.</p>\n\n<p>I would suggest the <code>Firefly</code> because it is a little bit easier to setup.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-09-10T04:17:48.543", "id": "3962", "postId": "3950", "score": "0", "text": "Very nice! I went with Firefly because it's a cool name. Thanks for the advice! That's exactly what I was looking for!", "userDisplayName": null, "userId": "2170" }, { "creationDate": "2010-09-10T19:08:02.597", "id": "4020", "postId": "3950", "score": "0", "text": "I've been using firefly mediaserver since it was called mt-daapd, and it works great with amarok and other linux music players.", "userDisplayName": null, "userId": "352" }, { "creationDate": "2011-06-13T11:50:32.883", "id": "53603", "postId": "3950", "score": "0", "text": "I use [forked-daapd](http://anonscm.debian.org/gitweb/?p=users/jblache/forked-daapd.git;a=summary) since development on mt-daapd seems to be dead. It is a rewrite and under active development (for now). Although it is not in the Ubuntu repos, it is in the [Debian ones](http://packages.debian.org/squeeze/forked-daapd), so it shouldn't be hard to install it on Ubuntu.", "userDisplayName": null, "userId": "19053" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-09T22:19:35.233", "id": "3950", "lastActivityDate": "2010-09-09T22:19:35.233", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1990", "parentId": "3944", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>If your connection to the network mount is always there, you could write an <code>/etc/fstab</code> entry for it.</p>\n\n<p><a href=\"https://help.ubuntu.com/community/MountWindowsSharesPermanently\" rel=\"nofollow\">MountWindowsSharesPermanently - Community Help Wiki</a></p>...
null
null
null
null
null
3945
1
3955
2010-09-09T21:51:41.387
30
23338
<p>When i was using windows, i used to run defrags, ccleaner and revouninstaller once a month to keep the system and the registry clean.</p> <p>I know ubuntu (and all linux distro) has a different system structure and doesnt need defrags, but i've heard there are some mainenance tasks that help to keep the system clean (for example, <code>sudo apt-get clean</code> or <code>sudo apt-get autoremove</code>)</p> <p>How many of those commands/software (and <strong>please explain what they do</strong> and if they can compromise the system stability) do you know and use regularly?</p>
829
235
2012-08-19T15:05:16.657
2012-08-19T15:05:16.657
What are the common maintenance tasks?
[ "package-management", "performance", "administration", "system", "maintenance" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>The purpose of the commands you mention is solely to save disk space. Furthermore, on most machines nowadays the savings would only amount to a tiny fraction of your disk space. So they're not very useful.</p>\n\n<p>Most common maintenance tasks are performed automatically by the system. If you're curious about them, the scripts that perform them are in <code>/etc/cron.*</code>. The name or contents of the script might give you a hint of what they do. Don't change anything you don't understand — these commands are there for a reason.</p>\n\n<p>One maintenance task which is not done automatically is installing security and stability updates (major bug fixes). By default, you will get a notification that updates are available. You should follow on the notification at the first opportunity. This is not done automatically in case the updates arrive at an inconvenient time, like when you're on a pay-per-byte Internet access or you have to switch off your computer right now; also because there is a (very small) risk that the updates break something and it's better not to do it unattended.</p>\n\n<p>Updates are the only maintenance task that I trigger manually. If I had to do anything else, I'd consider it a bug. If it has to be done, it should be automated.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-09-10T01:27:48.303", "id": "3959", "postId": "3955", "score": "5", "text": "It is possible to configure system so important updates get applied automatically in the background. Very nice feature for always connected computers of elderly relatives.", "userDisplayName": null, "userId": "329" }, { "creationDate": "2016-10-19T02:25:07.210", "id": "1283258", "postId": "3955", "score": "0", "text": "@vava you would need to add `apt-get update && apt-get upgrade --assume-yes` to the crontab for it to run with privileges.", "userDisplayName": null, "userId": "529362" }, { "creationDate": "2018-11-23T23:30:22.740", "id": "1804183", "postId": "3955", "score": "0", "text": "@NickBedford @vava It's better to setup `unattended-upgrades`: https://help.ubuntu.com/lts/serverguide/automatic-updates.html", "userDisplayName": null, "userId": "261426" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-09T23:25:43.403", "id": "3955", "lastActivityDate": "2011-02-21T20:22:06.273", "lastEditDate": "2011-02-21T20:22:06.273", "lastEditorDisplayName": null, "lastEditorUserId": "1059", "ownerDisplayName": null, "ownerUserId": "1059", "parentId": "3945", "postTypeId": "2", "score": "27" }
[ { "accepted": null, "body": "<p>From the offical man page of apt-get (shortversion by me):</p>\n\n<pre><code> clean\n clean clears out the local repository of retrieved package files.\n It removes everything but the lock file from\n /var/cache/apt/archives/ and /var/cache/apt/archives/pa...
null
null
null
null
null
3949
1
3964
2010-09-09T22:16:07.623
3
4695
<p>Earlier, I was trying to find a way to connect to Ubuntu from Windows 7: <a href="https://askubuntu.com/questions/3934/is-it-possible-to-use-remote-desktop-from-windows-7-to-ubuntu-10-04">Is it possible to use remote desktop from Windows 7 to Ubuntu?</a></p> <p>The solution was simple enough, I installed TightVNC Viewer on Win7 and I can see/control the current Ubuntu session. The problem is, if there's no active session, I cannot connect to Ubuntu using TightVNC.</p> <p>My goal is to be able to use Ubuntu that is installed on a computer in the basement from my Windows computer that is on another floor. Both computers are on the same LAN. Ubuntu PC will <strong>not</strong> have a monitor, keyboard or mouse plugged on it. (Currently, while I'm configuring things, it does have those but I want to get rid of it as soon as possible.)</p> <p>Is there anyway to get Ubuntu to start a session from my Windows 7 PC without having to log in directly on the PC first? Like I can do with two Windows PC using Remote Desktop, I can open a session on a remote computer and the desktop take the same screen resolution as the "host" computer.</p> <p>By the way, I'm a total noob with Linux and Ubuntu. I got my "For Dummies" book, but it seems that I'm already trying to do things that are not discussed in the book! Thanks for your help!</p>
1563
-1
2017-04-12T07:23:19.023
2010-09-10T04:54:22.313
How to open a remote session?
[ "remote-desktop" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2010-09-09T22:38:10.267", "id": "3947", "postId": "3949", "score": "0", "text": "I think what you need is is xRDP, as suggested in that other question of yours.", "userDisplayName": null, "userId": "1546" } ]
{ "accepted": true, "body": "<p>Install a NX server, such as <a href=\"https://help.ubuntu.com/community/FreeNX\" rel=\"nofollow\">FreeNX or NeatX</a>. Then you can remotely start a session, resize it, and disconnect and reconnect at will.</p>\n\n<p>If you have to connect to a wireless network using NM, you can allow it to connect at the login screen. Right-click on NetworkManager, and go to \"Edit connections\". Select the connection in question, click \"Edit\", and check the \"Available to all users\" box.</p>\n", "commentCount": "4", "comments": [ { "creationDate": "2010-09-10T05:52:51.297", "id": "3964", "postId": "3964", "score": "0", "text": "FreeNX solution works very well for accessing linux machines from windows. The contrary requires a paying version (the windows server is not free), but accessing Linux from Windows requires only free components.", "userDisplayName": null, "userId": "23" }, { "creationDate": "2010-09-10T07:26:59.723", "id": "3970", "postId": "3964", "score": "0", "text": "I'm using this set-up in production at work. Around 15 windows machines in different places run some program (not a complete shell) seamless on a Ubuntu server over simple ADSL lines. Using FreeNX in the server and NxClient (the closed client) on the windows machines. Works nicely, fast (even with slow lines) and requires very low maintenance. I'm a fan ;).", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-09-10T12:46:19.543", "id": "3990", "postId": "3964", "score": "0", "text": "Looks like an interesting options... I'm trying it and I'll let you know if it works!", "userDisplayName": null, "userId": "1563" }, { "creationDate": "2010-09-11T04:48:32.170", "id": "4040", "postId": "3964", "score": "0", "text": "It's working! Only minor problem I couldn't figure out how to fix is to have sound streaming to the client. I checked the appropriate options in the Windows client config, but it's still not working... Any idea how I can fix this?", "userDisplayName": null, "userId": "1563" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-10T04:32:19.470", "id": "3964", "lastActivityDate": "2010-09-10T04:32:19.470", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2180", "parentId": "3949", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<ul>\n<li>If you only use it as a server use ssh (takes a while to learn but you will love it, cause I do)</li>\n<li>You can set Ubuntu to automatically login (System -> Preferences -> Login Screen I think) so there is always an open X Session</li>\n<li>I think there was once a ...
null
null
null
null
null
3954
1
5195
2010-09-09T23:21:36.357
2
1681
<p>It seems while the 173 driver is installed, my resolution settings are not loaded when I log in or reboot. I've tried opening nvidia-settings as superuser and user, changed the resolution, applied, then saved it to the default xorg conf file (while giving my password when needed.). Nothing I do seems to fix this issue.</p> <p>If anyone could help, that'd be great.</p> <p>(Running the equivelant of Ubuntu 10.04 I think, when I'm actually on Mint. (Kernel 2.6.32-24-generic #42-ubuntu)</p> <p>xorg.conf file:</p> <pre><code># nvidia-settings: X configuration file generated by nvidia-settings # nvidia-settings: version 1.0 (buildd@palmer) Fri Apr 9 10:35:18 UTC 2010 Section "ServerLayout" Identifier "Layout0" Screen 0 "Screen0" 0 0 InputDevice "Keyboard0" "CoreKeyboard" InputDevice "Mouse0" "CorePointer" Option "Xinerama" "0" EndSection Section "Files" EndSection Section "InputDevice" # generated from default Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/psaux" Option "Emulate3Buttons" "no" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" # generated from default Identifier "Keyboard0" Driver "kbd" EndSection Section "Monitor" # HorizSync source: edid, VertRefresh source: edid Identifier "Monitor0" VendorName "Unknown" ModelName "DELL D1028L" HorizSync 30.0 - 69.0 VertRefresh 48.0 - 120.0 Option "DPMS" EndSection Section "Device" Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation" BoardName "GeForce FX 5500" EndSection Section "Screen" Identifier "Screen0" Device "Device0" Monitor "Monitor0" DefaultDepth 24 Option "TwinView" "0" Option "TwinViewXineramaInfoOrder" "CRT-0" Option "metamodes" "1024x768 +0+0" SubSection "Display" Depth 24 EndSubSection EndSection </code></pre>
2174
235
2010-09-24T20:52:25.703
2014-02-28T13:17:23.160
NVIDIA 173 drivers/nvidia-settings are never loaded on boot
[ "10.04", "xorg", "nvidia", "login-screen" ]
2
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Eureka!</p>\n\n<p>It seems to be fixed after the recent kernel update, 2.6.32-25. After applying that update and rebooting, NVIDIA kept crashing gdm, and I was given several options. I chose the option of creating a new (default) xorg.conf file.\nI did so and rebooted, and suddenly, everything works fine! Even the resolution not sticking has been fixed!</p>\n\n<p>Thank you Ubuntu developers, and you especially Ralf, for helping me along here.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-05T00:05:43.503", "id": "5195", "lastActivityDate": "2010-10-05T00:05:43.503", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2174", "parentId": "3954", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>You have to explicitly save them.</p>\n\n<p>Try running nvidia-settings with root privileges:</p>\n\n<pre><code>gksu nvidia-settings\n</code></pre>\n\n<p>Then go to \"X-Server Display Configuration\", setup your resolution and possibly meta-modes and click \"Save to X Configu...
null
null
null
null
null
3956
1
null
2010-09-09T23:36:07.180
6
259
<p>Is there a good Sopcast player for Ubuntu?</p>
341
235
2011-02-14T02:23:09.167
2013-05-03T23:43:50.647
Is there a SOP Cast player available?
[ "software-recommendation", "video" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-09-10T13:53:18.523", "id": "3991", "postId": "3956", "score": "0", "text": "It's a program that streams videos from the net using p2p. I never used it, but my brother was quite a fan. He uses it to watch in his laptop (under Windows) football (real football aka soccer) ma...
null
[ { "accepted": null, "body": "<p>I've used the Linux Sopcast Player by following the instructions outlined <a href=\"http://www.webupd8.org/2010/05/install-linux-sopcast-player-040-in.html\" rel=\"nofollow\">here</a>. It should be OK for you too, depending on your definition of \"good\". :)</p>\n", "comm...
null
null
null
null
null
3958
1
3975
2010-09-09T23:50:05.520
3
3809
<p>I have an Ubuntu 10.04 running on a laptop, connected to a local network via WiFi.</p> <p>This machine does not respond to pings/ssh connect requests, as if it was firewalled. However, if I ssh from this laptop to another machine on the local network, let's call it B, then, while ssh connection is active, I can ping the laptop from B.</p> <p>Any suggestions where to look for the problem?</p>
501
235
2010-09-16T20:58:24.710
2012-09-08T08:55:40.653
Cannot ssh/ping an Ubuntu machine over WiFi
[ "10.04", "networking", "wireless", "firewall" ]
5
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Could be a network infrastructure issue.</p>\n\n<p>Some routers isolate wireless stations to help prevent randomers getting onto the network and hacking other wireless stations. Some isolate wireless from wired too. Most routers let you configure this behaviour in their admin webmins.</p>\n\n<p>If that's not the case can you expand your question to explain the exact network setup, please.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-20T00:40:22.327", "id": "4476", "postId": "3975", "score": "0", "text": "You are right, it was WPA-PSK2 in router's settings. As soon I have switched to WPA-PSK issue disappeared.", "userDisplayName": null, "userId": "501" }, { "creationDate": "2010-10-12T10:32:17.560", "id": "6312", "postId": "3975", "score": "0", "text": "WPA-PSK2 is more secure than WPA-PSK, but it shouldn't have this effect. This seems to be some weird quirk in your router...", "userDisplayName": null, "userId": "935" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-10T10:03:39.880", "id": "3975", "lastActivityDate": "2010-09-10T10:03:39.880", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "449", "parentId": "3958", "postTypeId": "2", "score": "4" }
[ { "accepted": null, "body": "<p>Configuring your system to <a href=\"https://askubuntu.com/questions/3913/start-ssh-server-on-boot\">connect to wireless</a> on boot could solve your problem with ssh.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-10T01:51:31.857"...
null
null
null
null
null
3981
1
3991
2010-09-10T13:12:02.867
8
7608
<p>I have two screens hooked together with twinview. Some applications treat it as one big 3840*1200 panel but that's pretty undesirable in first person shooters as your sights end up in the gap between the two screens.</p> <p>So I usually run Wine games in a 1920*1200px window. The window manager makes it full-screen on one screen and that works great for some games. However some games lag and that allows the mouse to fly out the side of the Wine window, causing my player to spin like a fox on drugs.</p> <p>And then there are a whole load of native games (X3, OpenArena, Quake4, QuakeWars, etc) that don't have a good windowed mode. Using windowed mode on X3 results in the mouse becoming uber-sensitive.</p> <h2>Wouldn't it be nice if I could launch some games in a new X session that just used one screen?!</h2> <p>It would. I've got as far as this for Steam:</p> <pre><code>#!/bin/sh X :3 -ac &amp; nvidia-settings --load-config-only sleep 10 # wait for X to catch up cd ~/.wine/drive_c/Program\ Files/Steam/ DISPLAY=:3 WINEDEBUG=-all wine &quot;Steam.exe&quot; </code></pre> <p>Now this technically uses two screens but when games launch in fullscreen mode once they've already been set to 1920*1200, they seem to adapt and use one of my xorg.conf metamodes. It would be better if I could explicitly state the mode in this executable. Is there a way to do that?</p> <p>There's also no sound. I've got the WinePulse patch so I just need to get PulseAudio hooked into this session (or vice versa) and I'm good to go for now, I think.</p> <p><strong>Edit:</strong> Ralf picked up on a few things but missed (or misconstrued) some others. This is probably down to my over-verbose question. Despite the length of the post, I only have two problems.</p> <p>Here are my problems in a succinct setting:</p> <ul> <li><p>How can I start a new X session with a specified resolution? I would preferably like to specify an existing metamode or the exact resolution when I call X.</p> </li> <li><p>How can I get applications on the new X session talking with the right PulseAudio server? At the moment, they don't seem to line up. I've tested this with <code>totem</code>, not just Wine apps.</p> </li> </ul>
449
-1
2020-06-12T14:37:07.210
2010-09-10T16:10:01.320
Start a second X session with different resolution and sound
[ "wine", "pulseaudio", "xorg" ]
3
4
CC BY-SA 2.5
[ { "creationDate": "2010-09-10T15:55:27.607", "id": "3998", "postId": "3981", "score": "0", "text": "No, I understand what you were trying to do and why. --- I was given an alternative path. And tried to provide a sort of mini tutorial to deal with common issues concerning twinview/wine/games.\n\...
{ "accepted": true, "body": "<p>To answer your question more specifically. You can use nvidia-settings to change the meta-mode. A fragment from nvidia-settings --help:</p>\n\n<pre><code>-a, --assign=[ASSIGN]\n The ASSIGN argument to the '--assign' commandline option is of the form:\n\n {DISPLAY}/{attribute name}[{display devices}]={value}\n\n This assigns the attribute {attribute name} to the value {value} on the X\n Display {DISPLAY}. {DISPLAY} follows the usual {host}:{display}.{screen}\n syntax of the DISPLAY environment variable and is optional; when it is\n not specified, then it is implied following the same rule as the\n --ctrl-display option. If the X screen is not specified, then the\n assignment is made to all X screens. Note that the '/' is only required\n when {DISPLAY} is present.\n\n {DISPLAY} can additionally include a target specification to direct an\n assignment to something other than an X screen. A target specification\n is contained within brackets and consists of a target type name, a colon,\n and the target id. The target type name can be one of \"screen\", \"gpu\",\n \"framelock\", \"vcs\", \"gvi\", or \"fan\"; the target id is the index into the\n list of targets (for that target type). The target specification can be\n used in {DISPLAY} wherever an X screen can be used, following the syntax\n {host}:{display}[{target_type}:{target_id}]. See the output of\n `nvidia-settings -q all` for information on which target types can be\n used with which attributes. See the output of `nvidia-settings -q\n screens -q gpus -q framelocks -q vcs -q gvis -q fans` for lists of\n targets for each target type.\n\n The [{display devices}] portion is also optional; if it is not specified,\n then the attribute is assigned to all display devices.\n\n Some examples:\n\n -a FSAA=5\n -a localhost:0.0/DigitalVibrance[CRT-0]=0\n --assign=\"SyncToVBlank=1\"\n -a [gpu:0]/DigitalVibrance[DFP-1]=63\n</code></pre>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-10T16:01:54.207", "id": "3991", "lastActivityDate": "2010-09-10T16:01:54.207", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1958", "parentId": "3981", "postTypeId": "2", "score": "3" }
[ { "accepted": null, "body": "<p><strong>Running more than one X session</strong></p>\n\n<p>I think this is exactly what you want. And running more than X session is possible, that doesn't mean all video-drivers allow you to use the same video-card. So running more than Xsession, means you are going to need ...
null
null
null
null
null
3982
1
3995
2010-09-10T14:46:48.647
8
777
<p>I've been bitten a few times recently with <code>rm</code>ing things I shouldn't have - for example, forgetting to <code>ulink</code> symlinks, not <code>rm</code> them.</p> <p>I'm thinking of writing a small bash script to simply move the target to <code>~/.local/share/Trash</code>, as I haven't grasped restoring files (seems to involve a lot of Linux hackery that I'm not going to achieve any time soon).</p> <p>The only problems I can think of are:</p> <ul> <li>scripts/applications needing to <code>rm</code> files (really a problem? I could also get used to calling <code>rm!</code> or something),</li> <li>files being moved to Trash while files there already have the same name (not sure how Ubuntu get's around that at the moment, could be fixed by appending <code>md5(name + time())</code> to the name.</li> </ul> <p>Of course the real answer's in backing up or just learning not to do silly things but I'd like an accommodating solution none-the-less.</p> <p>Is this a really terrible idea or something that could be done?</p>
28
null
null
2017-04-12T15:02:38.637
Is there a significant disadvantage to aliasing rm to do something else?
[ "delete", "rm" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-09-10T17:33:53.303", "id": "4013", "postId": "3982", "score": "0", "text": "It's not a terrible idea, though as you note, backups are better. Perhaps the worst consequence is that you'll come to rely on the undo-able remove which may bite you when you aren't in a \"protec...
{ "accepted": true, "body": "<p>The 'significant disadvantage' is that you'll get used to <code>rm</code> not being the big nasty, use with extreme care tool it is. This means if you ever (in your whole life, so pretty likely) use another computer not set up with this 'soft-rm' then you may use <code>rm</code> more carelessly, forgetting your safety net is not there.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-14T14:30:55.583", "id": "4187", "postId": "3995", "score": "2", "text": "That's why you should name this command something else, such as `delete` or `del` for example. Something that will result in a \"command not found\" error where it isn't installed, thus no harm done.", "userDisplayName": null, "userId": "833" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-10T17:52:34.247", "id": "3995", "lastActivityDate": "2010-09-10T17:52:34.247", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "866", "parentId": "3982", "postTypeId": "2", "score": "14" }
[ { "accepted": null, "body": "<p>To install <a href=\"http://code.google.com/p/trash-cli/\" rel=\"nofollow noreferrer\"><code>trash-cli</code></a>, just type in a console:</p>\n\n<pre><code>sudo apt-get install trash-cli\n</code></pre>\n\n<p>You can alias <code>rm</code> to <code>trash-put</code> if you like...
null
null
null
null
null
3983
1
3984
2010-09-10T14:50:12.047
4
6061
<p>Simple question. I was about to assign the <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>+</kbd> keyboard shortcut to increase the volume, but I then realized it was already assigned for something. If I press this key combination the screen flashes black for a second, and then comes back. Pressing <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>-</kbd> produces similar behavior. So I'm curious, what's this shortcut supposed to do?</p>
1012
235
2013-04-28T15:48:53.540
2013-04-28T15:48:53.540
What does the Ctrl-Alt-+ shortcut do?
[ "shortcut-keys" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>F1</kbd> through <kbd>F12</kbd> are mapped for switching between <em>virtual consoles</em>. Your graphical display is usually mapped to <code>vt7</code> or <code>vt8</code>, so <kbd>F7</kbd> or <kbd>F8</kbd>.</p>\n\n<p><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>BkSp</kbd> aborts your graphical server and kills all graphical processes.</p>\n\n<p><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>-</kbd> and <kbd>+</kbd> switch to a smaller or higher screen resolution, respectively.</p>\n\n<p><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>Esc</kbd> runs <code>xkill</code> by default. The next window you click is killed.</p>\n\n<p>There are several others, but I can't recall them.</p>\n\n<hr>\n\n<p>If you want to map <kbd>+</kbd>/<kbd>-</kbd> to something, I'd suggest using the Windows key as a modifier, if you have one. It's treated as a \"Super\" Meta-key, and doesn't normally have any mappings at all.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-10T15:24:44.200", "id": "3993", "postId": "3984", "score": "6", "text": "CTRL+ALT+BACKSPACE and CTRL+ALT+ESC are disabled by default in Ubuntu.", "userDisplayName": null, "userId": "211" }, { "creationDate": "2010-09-10T17:41:14.973", "id": "4015", "postId": "3984", "score": "2", "text": "It is probably worthwhile to note that Ctrl-Alt-F1 is caught by the operating system and are best not messed with and Ctrl-Alt-`+` is caught by the XServer which is more configurable, and less critical especially if (like many) you don't switch resolutions.", "userDisplayName": null, "userId": "1078" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-10T15:11:21.450", "id": "3984", "lastActivityDate": "2010-09-10T15:11:21.450", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "1148", "parentId": "3983", "postTypeId": "2", "score": "10" }
[ { "accepted": true, "body": "<p><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>F1</kbd> through <kbd>F12</kbd> are mapped for switching between <em>virtual consoles</em>. Your graphical display is usually mapped to <code>vt7</code> or <code>vt8</code>, so <kbd>F7</kbd> or <kbd>F8</kbd>.</p>\n\n<p><kbd>Ctrl</kbd> +...
null
null
null
null
null
3986
1
null
2010-09-10T15:26:04.460
3
2391
<p>I have two samba shares. One a public (local network) that anyone can see and change, this works great. I have another share that I want the username and password to be entered</p> <pre><code>[media] comment = public share path = /mnt/media_files public = yes read only = no writeable = yes create mask = 0777 directory mask = 0777 force user = nobody force group = nogroup guest ok = yes [webroot] comment = Apache web root folder path = /var/www public = yes read only = no writable = yes create mask = 0777 directory mask = 0777 guest ok = no </code></pre> <p>I did have "force user = jon" as well but didn't seem to help.</p> <p>The issue I have at the moment is that when I go to the share "\myip\webroot" I get the popup asking for the password, but the username is grayed out with "ip\Guest". How can I get it to either allow me to enter the username, or force it to just use "jon".</p> <p>loging in from Windows7 machine seems to work better after fixing an issue with the smpasswd part. I set the password the same as my username accuont on W7 machine and all was good. Has a bit of an issue from other machines have to login with ip\jon otherwise it sets the domain to be the name of that computer. </p> <p>TestParm output:</p> <pre><code>[global] server string = %h server (Samba, Ubuntu) security = SHARE map to guest = Bad User obey pam restrictions = Yes passdb backend = tdbsam pam password change = Yes passwd program = /usr/bin/passwd %u passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* . unix password sync = Yes syslog = 0 log file = /var/log/samba/log.%m max log size = 1000 dns proxy = No usershare allow guests = Yes panic action = /usr/share/samba/panic-action %d [media] comment = public share path = /mnt/media_files force user = nobody force group = nogroup read only = No create mask = 0777 directory mask = 0777 guest ok = Yes [webroot] comment = Apache web root folder path = /var/www valid users = jon force user = jon read only = No create mask = 0777 directory mask = 0777 guest ok = Yes </code></pre>
2189
41
2010-09-13T20:58:41.503
2011-05-15T22:29:50.507
samba share not allowing username to be entered
[ "samba" ]
1
3
CC BY-SA 2.5
[ { "creationDate": "2010-09-10T23:41:05.873", "id": "4034", "postId": "3986", "score": "0", "text": "May you post the result of `testparm` (its shows all config values that are not default)", "userDisplayName": null, "userId": "1990" }, { "creationDate": "2010-09-11T22:02:01.210",...
null
[ { "accepted": null, "body": "<p>Ok i'm not quite sure if i got your intended setup right.\nBut i would try this one:</p>\n\n<pre><code>[global]\n...\nsecurity = user\nguest account = jon\n\n[webroot]\ncomment = Apache web root folder\npath = /var/www\nread only = No\ncreate mask = 0777\ndirectory mask = 077...
null
null
2011-12-05T17:25:20.873
null
null
3996
1
null
2010-09-10T17:54:04.863
6
6713
<p>Whenever I plug by digital camera in, a nice media-icon pops up. Great! !</p> <p>When I right click on this icon, I can only open Rhythmbox or VLC-media-player. Both applications are rather senseless to be used here. When I want to download photos (be it by means of F-Spot, Shotwell or Picasa) I have to unmount the camera first. This seems to me rather illogical ? Why is the camera mounted if you have to unmount it to be used? How can I make that the digital camera is being mounted for the right applications? It looks strange to me that one has to unmount a device before one can use it!</p> <p>Camera model : <strong>Canon PowerShot SX20</strong> IS (new id has been added for this camera in libgphoto2 2.4.9. The packagemanager tells me that libgphoto2-2 is installed, version 2.4.8-0ubuntu2 => it looks like libgphoto2 can't read the camera? Anyway, the PTP/MTP- mode works fine)</p> <pre><code>uname -a Linux Ubuntu-Bernard **2.6.32-24-generic #42-Ubuntu** SMP Fri Aug 20 14:24:04 UTC 2010 i686 GNU/Linux cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=10.04 DISTRIB_CODENAME=lucid DISTRIB_DESCRIPTION="**Ubuntu 10.04.1 LTS**" lsusb Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 001 Device 005: ID 04a9:31e4 **Canon, Inc.** Bus 001 Device 003: ID 0b05:1706 ASUSTek Computer, Inc. WL-167G 802.11g Adapter [ralink] Bus 001 Device 002: ID 050d:0234 Belkin Components F5U234 USB 2.0 4-Port Hub Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Type filesystem = **gphoto2** KernelLoggings (plug-in/plug-out) Sep 11 19:23:55 Ubuntu-Bernard kernel: [ 1370.156803] usb 1-2.1: new full speed USB device using uhci_hcd and address 4 Sep 11 19:23:55 Ubuntu-Bernard kernel: [ 1370.282419] usb 1-2.1: configuration #1 chosen from 1 choice Sep 11 19:31:59 Ubuntu-Bernard kernel: [ 1854.101144] usb 1-2.1: USB disconnect, address 4 Detailled Camera info lsusb -v Bus 001 Device 007: ID 04a9:31e4 Canon, Inc. Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 64 idVendor 0x04a9 Canon, Inc. idProduct 0x31e4 bcdDevice 0.02 iManufacturer 1 Canon Inc. iProduct 2 Canon Digital Camera iSerial 3 E2F5E9B80A584FFDA901B46ECBC87410 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 39 bNumInterfaces 1 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xc0 Self Powered MaxPower 2mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 6 Imaging bInterfaceSubClass 1 Still Image Capture bInterfaceProtocol 1 Picture Transfer Protocol (PIMA 15470) iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x02 EP 2 OUT bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0040 1x 64 bytes bInterval 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0008 1x 8 bytes bInterval 32 Device Qualifier (for other device speed): bLength 10 bDescriptorType 6 bcdUSB 2.00 bDeviceClass 0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 64 bNumConfigurations 1 Device Status: 0x0001 Self Powered </code></pre>
2191
235
2010-09-13T16:26:51.957
2010-09-22T20:51:54.063
How to mount a digital camera for the right applications?
[ "mount" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-09-10T22:14:43.330", "id": "4031", "postId": "3996", "score": "0", "text": "Hi Bernard, we'll need a little more information. What model is the camera, what is the output of `lsusb` when it is plugged in, and what version of Ubuntu are you using? Thanks!", "userDispla...
null
[ { "accepted": null, "body": "<p>Just a stab in the dark, but if you temporarily comment out the following lines in <code>/lib/udev/rules.d/45-libmtp8.rules</code>, does it help at all?</p>\n\n<ul>\n<li><pre><code># Canon PowerShot SX20IS (PTP/MTP mode)\n# ATTR{idVendor}==\"04a9\", ATTR{idProduct}==\"31e4\",...
null
0
null
null
null
3998
1
10600
2010-09-10T18:33:11.370
3
1079
<p>When downloading <a href="http://en.wikipedia.org/wiki/MATLAB" rel="nofollow">Matlab</a> from the <a href="http://www.mathworks.com/" rel="nofollow">Mathworks</a> website, I am prompted to download an .flp file. When I open this JAVA file I shortly see a screen where some data is processed and after that nothing ever happens again.</p> <p>Does anybody have an idea how to install Matlab this way?</p>
2192
44179
2014-08-04T14:42:51.347
2014-08-04T14:42:51.347
How can I install Matlab from the Mathworks website?
[ "software-installation", "matlab" ]
4
0
CC BY-SA 3.0
[]
{ "accepted": true, "body": "<p>In order to install Matlab using this installer, you have to install the official Sun Java JRE.</p>\n\n<p>Got to Applications -> Software Center and select Software Sources from the Edit menu</p>\n\n<p><img src=\"https://i.stack.imgur.com/JZZQs.png\" alt=\"alt text\"></p>\n\n<p>Select Canonical Partners under Other Software and click on close</p>\n\n<p>Now search for sun-java-6 and install the packages</p>\n\n<p><img src=\"https://i.stack.imgur.com/bXpny.png\" alt=\"alt text\"></p>\n\n<p>Finally, right click on your downloaded Matlab installation file and click on Open With Sun Java 6 Runtime</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-10-31T18:22:50.530", "id": "10600", "lastActivityDate": "2010-10-31T18:22:50.530", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "2192", "parentId": "3998", "postTypeId": "2", "score": "0" }
[ { "accepted": null, "body": "<p>In order to install Matlab using this installer, you have to install the official Sun Java JRE. This is no longer available in <em>Maverick's</em> repositories.</p>\n\n<p>One workaround for this is to select the archives from <em>Lucid</em> and install JAVA from there.</p>\n"...
null
null
null
null
null
4000
1
4008
2010-09-10T19:37:24.050
6
6131
<p>I just read that Broadcom has open-sourced their wireless adapter drivers and was curious if this would have any affect on my Dell XPS M1330 which sometimes has flaky wifi.</p>
347
235
2010-09-13T20:02:42.557
2010-10-04T14:50:34.073
How can I tell if I have a broadcom wireless card?
[ "networking", "wireless" ]
6
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You can use <code>lshw</code> to show information on all devices in you system, forinstance what driver the device uses, this information will look something like this:</p>\n\n<pre><code>*-network\n description: Wireless interface\n product: PRO/Wireless 2200BG [Calexico2] Network Connection\n vendor: Intel Corporation\n physical id: 2\n bus info: pci@0000:0b:02.0\n logical name: eth1\n version: 05\n serial: 01:22:ff:00:11:99\n width: 32 bits\n clock: 33MHz\n capabilities: pm bus_master cap_list ethernet physical wireless\n configuration: broadcast=yes driver=ipw2200 driverversion=1.2.2kmprq firmware=ABG:9.0.5.27 (Dec 12 2007) ip=192.168.2.100 latency=64 link=yes maxlatency=24 mingnt=3 multicast=yes wireless=IEEE 802.11g\n resources: irq:21 memory:b4001000-b4001fff\n</code></pre>\n\n<p>In the line starting with <code>configuration:</code> it says <code>driver=ipw2200</code> which mens my wireless uses the ipw2200 kernel driver this can in turn point you to weather you will (in time) benefit from this release. As far as i know all the broardcom network drivers have been released, this means that if you use any broardcom driver now it will in time (properly) get better supported.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-13T22:09:28.497", "id": "4168", "postId": "4008", "score": "0", "text": "As of note, ipw2200 is for Intel chipsets.", "userDisplayName": null, "userId": "186" }, { "creationDate": "2011-02-24T21:09:21.820", "id": "30973", "postId": "4008", "score": "0", "text": "I'd add to Source Lab's excellent answer that you can show only network devices using \"lshw -C network\".", "userDisplayName": "user8979", "userId": null } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-10T21:35:37.560", "id": "4008", "lastActivityDate": "2010-09-10T21:35:37.560", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "455", "parentId": "4000", "postTypeId": "2", "score": "1" }
[ { "accepted": null, "body": "<p><code>lspci</code> should have an entry for your wireless adapter, including the manufacturer.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-10T19:42:47.977", "id": "...
null
null
null
null
null
4002
1
4006
2010-09-10T20:02:34.903
4
751
<p>I've installed Jokosher and all the LADSPA effects I could see, but when I try to add an effect to a track Jokosher says none are installed.</p> <p>Do I need some extra Gstreamer package to make this work?</p>
947
null
null
2010-09-10T21:13:23.850
Effects for Jokosher
[ "music", "sound" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>You need to install the gstreamer0.10-plugins-bad package to get LADSPA support within GStreamer.</p>\n\n<p>Cheers,\n Mike.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-10T21:31:00.313", "id": "4028", "postId": "4006", "score": "0", "text": "That got me the effects. Unfortunately I can't seem to play or record anything. Jokosher just locks up. This question may still be useful to others", "userDisplayName": null, "userId": "947" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-10T21:13:23.850", "id": "4006", "lastActivityDate": "2010-09-10T21:13:23.850", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": "Mike Sheldon", "ownerUserId": null, "parentId": "4002", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>You need to install the gstreamer0.10-plugins-bad package to get LADSPA support within GStreamer.</p>\n\n<p>Cheers,\n Mike.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-10T21:31:00.313", "id": "4028", "postId": "4...
null
null
null
null
null
4010
1
4013
2010-09-10T22:55:15.290
3
7812
<p>I have an Ubuntu (10.04) machine that is running my firewall, dhcp and dns. I just installed squid from packages and set it to run on port 8888. Before any changes to my firewall the webpages will work normally, if I manually set a proxy to 192.168.10.1:8888 on firefox it works. The issue happens when I try and turn squid into a transparent proxy.</p> <p>My firewall is as follows:</p> <pre><code>#!/bin/sh iptables="/sbin/iptables" modprobe="/sbin/modprobe" depmod="/sbin/depmod" EXTIF="eth1" INTIF="eth2" load () { $depmod -a $modprobe ip_tables $modprobe ip_conntrack $modprobe ip_conntrack_ftp $modprobe ip_conntrack_irc $modprobe iptable_nat $modprobe ip_nat_ftp $modprobe ip_conntrack_pptp $modprobe ip_nat_pptp echo "enable forwarding..." echo "1" &gt; /proc/sys/net/ipv4/ip_forward echo "enable dynamic addr" echo "1" &gt; /proc/sys/net/ipv4/ip_dynaddr # start firewall #default policies $iptables -P INPUT DROP $iptables -F INPUT $iptables -P OUTPUT DROP $iptables -F OUTPUT $iptables -P FORWARD DROP $iptables -F FORWARD $iptables -t nat -F echo " opening loopback interface for socket based services." $iptables -A INPUT -i lo -j ACCEPT $iptables -A OUTPUT -o lo -j ACCEPT echo " allow GRE 47 for VPN" $iptables -A INPUT -p 47 -j ACCEPT echo " allow all connections OUT and ONLY existing related ones IN" $iptables -A INPUT -i $INTIF -j ACCEPT $iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT $iptables -A OUTPUT -o $EXTIF -j ACCEPT $iptables -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT $iptables -A FORWARD -i $EXTIF -o $INTIF -m state --state ESTABLISHED,RELATED -j ACCEPT $iptables -A FORWARD -i $INTIF -o $EXTIF -j ACCEPT $iptables -A FORWARD -j LOG --log-level 7 --log-prefix "Dropped by firewall: " $iptables -A INPUT -j LOG --log-level 7 --log-prefix "Dropped by firewall: " $iptables -A OUTPUT -j LOG --log-level 7 --log-prefix "Dropped by firewall: " echo " enabling SNAT (MASQUERADE) functionality on $EXTIF - allow LAN internet access" $iptables -t nat -A POSTROUTING -o $EXTIF -j MASQUERADE $iptables -A INPUT -i $INTIF -j ACCEPT $iptables -A OUTPUT -o $INTIF -j ACCEPT echo " Allowing packets with ICMP data (pings)" $iptables -A INPUT -p icmp -j ACCEPT $iptables -A OUTPUT -p icmp -j ACCEPT $iptables -A INPUT -p udp -i $INTIF --dport 67 -m state --state NEW -j ACCEPT echo " port 137 for netBios" $iptables -A INPUT -i $INTIF -p udp --dport 137 -j ACCEPT $iptables -A OUTPUT -o $INTIF -p udp --dport 137 -j ACCEPT #echo " port 139 for netBios-ssn smb" #$iptables -A INPUT -i $INTIF -p tcp --dport 139 -j ACCEPT #$iptables -A OUTPUT -o $INTIF -p tcp --dport 139 -j ACCEPT echo " opening port 53 for DNS queries" $iptables -A INPUT -p udp -i $EXTIF --sport 53 -j ACCEPT echo " opening port 22 for internal ssh" $iptables -A INPUT -i $INTIF -p tcp --dport 22 -j ACCEPT echo " opening port 80 for webserver" $iptables -A INPUT -p tcp -i $EXTIF --dport 80 -m state --state NEW -j ACCEPT echo " opening port 21 for FTP Server" $iptables -A INPUT -p tcp -i $EXTIF --dport 21 -m state --state NEW -j ACCEPT echo " opening ssh for web on port 2609 for firewig" $iptables -A INPUT -p tcp --dport 2609 -j ACCEPT $iptables -A OUTPUT -p tcp --dport 2609 -j ACCEPT echo " opening ssh for web on port 22 for WS2008-CI" $iptables -A PREROUTING -t nat -i $EXTIF -p tcp --dport 22 -j DNAT --to 192.168.10.97 $iptables -A FORWARD -p tcp -m state --state NEW -d 192.168.10.97 -j ACCEPT echo " opening ssh for web on port 2302 for firewig 2302" $iptables -A PREROUTING -t nat -i $EXTIF -p tcp --dport 2302 -j DNAT --to 192.168.10.96:2302 $iptables -A FORWARD -p tcp -m state --state NEW -d 192.168.10.96 --dport 2302 -j ACCEPT echo " opening Apache webserver for HoH" $iptables -A PREROUTING -t nat -i $EXTIF -p tcp --dport 80 -j DNAT --to 192.168.10.96:80 $iptables -A FORWARD -p tcp -m state --state NEW -d 192.168.10.96 --dport 80 -j ACCEPT #echo " opening Hudson" #$iptables -A PREROUTING -t nat -i $EXTIF -p tcp --dport 81 -j DNAT --to 192.168.10.97:81 #$iptables -A FORWARD -p tcp -m state --state NEW -d 192.168.10.97 --dport 81 -j ACCEPT echo " opening Target Process" $iptables -A PREROUTING -t nat -i $EXTIF -p tcp --dport 90 -j DNAT --to 192.168.10.98:90 $iptables -A FORWARD -p tcp -m state --state NEW -d 192.168.10.98 --dport 90 -j ACCEPT #echo " This is designed to stop brute force attacks" $iptables -I INPUT -p TCP -m state --state NEW -m limit --limit 6/minute --limit-burst 5 -j ACCEPT #echo " setting up squid proxy server" #$iptables -t nat -A PREROUTING -i $INTIF -p tcp --dport 80 -j DNAT --to 192.168.10.1:8888 #$iptables -t nat -A PREROUTING -i $EXTIF -p tcp --dport 80 -j REDIRECT --to-port 8888 #$iptables -t nat -A PREROUTING -i $INTIF -p tcp --dport 80 -j DNAT --to 192.168.10.1:8888 #$iptables -t nat -A PREROUTING -i $EXTIF -p tcp --dport 80 -j REDIRECT --to-port 8888 #echo " Diverting port 80 traffic through Squid." #$iptables -t nat -A PREROUTING -i $INTIF -p tcp --dport 80 -j REDIRECT --to-port 8888 # NOTE THE THREE LINES BELOW ALLOW ACCESS FOR THE VPN CONNECTION...Ry. $iptables -A INPUT -i $EXTIF -p TCP --dport 1723 -j ACCEPT $iptables -A INPUT -i ppp+ -j ACCEPT $iptables -A FORWARD -i ppp+ -o $INTIF -j ACCEPT $iptables -A FORWARD -i $INTIF -o ppp+ -j ACCEPT $iptables -A OUTPUT -o ppp+ -j ACCEPT # ICMP for vpn $iptables -A INPUT -i ppp+ -p icmp -j ACCEPT $iptables -A OUTPUT -o ppp+ -p icmp -j ACCEPT # DNS for vpn $iptables -A INPUT -i ppp+ -p tcp --dport 0:65535 --sport 53 -j ACCEPT $iptables -A OUTPUT -o ppp+ -p tcp --sport 0:65535 --dport 53 -j ACCEPT $iptables -A INPUT -i ppp+ -p udp --dport 0:65535 --sport 53 -j ACCEPT $iptables -A OUTPUT -o ppp+ -p udp --sport 0:65535 --dport 53 -j ACCEPT # forward vpn---&gt;internet $iptables -A FORWARD -i ppp+ -o $EXTIF -p ALL -j ACCEPT $iptables -A FORWARD -i $EXTIF -o ppp+ -p ALL -j ACCEPT #$iptables -A FORWARD -j LOG --log-level 7 --log-prefix "Dropped by firewall: " #$iptables -A INPUT -j LOG --log-level 7 --log-prefix "Dropped by firewall: " #$iptables -A OUTPUT -j LOG --log-level 7 --log-prefix "Dropped by firewall: " } flush() { echo "flushing rules...." $iptables -P FORWARD ACCEPT $iptables -F INPUT $iptables -P INPUT ACCEPT } case "$1" in start|restart) flush load ;; stop) flush ;; *) echo "usage: start|stop|restart." ;; esac </code></pre> <p>If I uncomment the squid prerouting lines the internet stops working.</p> <p>I am not sure what I have missed. Do you think it could be a Squid config thing? </p>
2189
41
2010-09-13T20:59:41.050
2010-09-13T20:59:41.050
IPTables issue with Squid as transparent proxy
[ "10.04", "transparent-proxy" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Have you adjusted your <code>http_port</code> setting for interception caching?</p>\n\n<pre><code>-http_port 3128\n+# FIXME enable the transparent option for interception caching\n+http_port 3128 transparent\n</code></pre>\n\n<p>Here are the rules I use. The are a bit more complicated, but they make it easier to add an exception to the interception proxy if I need one.</p>\n\n<pre><code># Creating chain 'tproxy' under 'PREROUTING' in table 'nat'\n/sbin/iptables -t nat -N tproxy\n\n# rules for source or destination addresss that will not be forced through the proxy.\n/sbin/iptables -t nat -A tproxy -s 10.2.4.56 -j RETURN \n/sbin/iptables -t nat -A tproxy -s 10.2.4.86 -j RETURN \n/sbin/iptables -t nat -A tproxy -s 10.2.4.19 -j RETURN \n/sbin/iptables -t nat -A tproxy -s 10.2.4.85 -j RETURN \n/sbin/iptables -t nat -A tproxy -s 10.2.4.150 -j RETURN \n/sbin/iptables -t nat -A tproxy -d 10.2.0.0/16 -j RETURN\n\n# redirect anything to the proxy that is not returned\n/sbin/iptables -t nat -A PREROUTING -p tcp -j REDIRECT --to-ports 8888 \n\n# rules to send port 80 traffic on incoming interfaces vlan0004, vlan0006 to \n# tproxy chain.\n/sbin/iptables -t nat -A PREROUTING -i vlan0004 -p tcp --dport 80 -j tproxy \n/sbin/iptables -t nat -A PREROUTING -i vlan0004 -p tcp --dport 8888 -j tproxy \n/sbin/iptables -t nat -A PREROUTING -i vlan0006 -p tcp --dport 80 -j tproxy \n/sbin/iptables -t nat -A PREROUTING -i vlan0006 -p tcp --dport 8888 -j tproxy \n</code></pre>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-11T13:22:26.257", "id": "4050", "postId": "4013", "score": "0", "text": "The transparent attribute for the http_port was the problem. Then just needed \"$iptables -t nat -A PREROUTING -i $INTIF -p tcp --dport 80 -j REDIRECT --to-port 8888\" for basic firewall settings. Thanks so much.", "userDisplayName": null, "userId": "2189" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-11T01:07:14.427", "id": "4013", "lastActivityDate": "2010-09-11T01:16:37.833", "lastEditDate": "2010-09-11T01:16:37.833", "lastEditorDisplayName": null, "lastEditorUserId": "1197", "ownerDisplayName": null, "ownerUserId": "1197", "parentId": "4010", "postTypeId": "2", "score": "6" }
[ { "accepted": true, "body": "<p>Have you adjusted your <code>http_port</code> setting for interception caching?</p>\n\n<pre><code>-http_port 3128\n+# FIXME enable the transparent option for interception caching\n+http_port 3128 transparent\n</code></pre>\n\n<p>Here are the rules I use. The are a bit more c...
null
null
null
null
null
4011
1
4012
2010-09-10T23:16:33.130
6
2086
<p>I'm about to (at least, want to..) buy a laptop with an ATI Radeon HD 4250, and I haven't a good opinion on ATI's drivers. How is the actual performance of the open/proprietary driver (currently I have nVidia, and I'm very satisfied)?</p> <p>The intended use for the laptop is: watching videos, programming in Java/PHP/maybe Qt... but, I like to know if Compiz runs well. Yes, I'm a hardcore (?) programmer that uses Compiz. :P</p> <p>Someone has this GPU? Experiences? Thoughts?</p> <p>Thanks! :D</p>
499
3037
2011-01-18T00:27:50.937
2012-12-27T18:50:57.473
ATI proprietary driver performance?
[ "drivers", "ati", "performance" ]
4
2
CC BY-SA 2.5
[ { "creationDate": "2010-09-11T14:39:23.907", "id": "4057", "postId": "4011", "score": "0", "text": "a hardcore programmer? Is that when we code naked while standing on a bed of spikes? with just one hand, and the other in the mouth of a lion?", "userDisplayName": null, "userId": "1958" ...
{ "accepted": true, "body": "<p>Im using an Packard Bell easynote TJ75 with a ati mobility radeon HD5650, and its not bad at all.</p>\n\n<p>Compiz benchmark is around 500~600 frames/sec, i can play good World of Warcraft or Call of duty MW 4 (under wine), for example (well, there is some slowdown sometimes).</p>\n\n<p>BTW, im using the experimental drivers:</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\nhttp://keyserver.ubuntu.com:11371/pks/lookup?op=get&amp;search=0x3B22AB97AF1CDFA9\n</code></pre>\n\n<p>Sometimes compiz has some issue (for example, does not load the windows icons, minimixe, maximize and close), but i dont know if this is really related with the ati card.</p>\n\n<p>I have an ati on my desktop too, with ubuntu 9.10 no kind of driver used to works, with ubuntu 10.04 it works perfectly.</p>\n\n<p>Here's a screenshot for you, with the compiz expo effect:\n<img src=\"https://i.stack.imgur.com/VREAP.png\" alt=\"alt text\"></p>\n\n<p>As you see, ati card and drivers does not work bad at all.</p>\n", "commentCount": "3", "comments": [ { "creationDate": "2010-09-11T13:37:06.240", "id": "4053", "postId": "4012", "score": "0", "text": "You said: Sometimes compiz has some issue (...)\ni used to have some issues like this with nVidia older drivers, so i think it's driver related, with particulars cards..\nSo, thanks! it was very usefull your opinion, and happy to know that the ati drivers aren't to bad :P\nare you using the propietary drivers? how about stability/crashes/etc?", "userDisplayName": null, "userId": "499" }, { "creationDate": "2010-09-11T16:11:37.710", "id": "4063", "postId": "4012", "score": "0", "text": "As i sais, sometime happen that compiz has some issue, as the windows control, but i simply stop and restart compiz to solve, and really dont know if is a driver or compiz issue at all. Its almost 2 year im using ubuntu with ati drivers (in my answer, there is the repository of the drivers i use, are proprietaty development drivers) and i never had a crash that forced me to restart the system.", "userDisplayName": null, "userId": "829" }, { "creationDate": "2010-09-11T16:13:27.720", "id": "4064", "postId": "4012", "score": "0", "text": "Another thing, i have to notice you about 1 bug with 3d rendering: https://bugs.launchpad.net/ubuntu/+source/desktop-effects/+bug/137388", "userDisplayName": null, "userId": "829" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-10T23:41:47.840", "id": "4012", "lastActivityDate": "2010-09-10T23:51:21.240", "lastEditDate": "2010-09-10T23:51:21.240", "lastEditorDisplayName": null, "lastEditorUserId": "829", "ownerDisplayName": null, "ownerUserId": "829", "parentId": "4011", "postTypeId": "2", "score": "3" }
[ { "accepted": true, "body": "<p>Im using an Packard Bell easynote TJ75 with a ati mobility radeon HD5650, and its not bad at all.</p>\n\n<p>Compiz benchmark is around 500~600 frames/sec, i can play good World of Warcraft or Call of duty MW 4 (under wine), for example (well, there is some slowdown sometimes)...
null
null
null
null
null
4014
1
4020
2010-09-11T03:37:15.137
80
294070
<p>Short of rebooting, how can I release and renew my DHCP lease? It would be useful to know a GUI and terminal method.</p> <p>I'd especially like to know if there is a means to do this without requiring admin privileges.</p>
1859
null
null
2022-12-13T13:20:06.690
How do I renew my DHCP lease?
[ "networking" ]
10
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>In the network drop-down selector of the system tray you can press the network you are already connected to. This will make <a href=\"https://wiki.archlinux.org/title/NetworkManager\" rel=\"nofollow noreferrer\">NetworkManager</a> ask for a new lease from a DHCP server.</p>\n<p><img src=\"https://i.stack.imgur.com/GkZPq.png\" alt=\"NetworkManager tray screenshot\" /></p>\n<p>This also works for wired networks, but I don't think it works for PPP connections (mobile broadband).</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 4.0", "creationDate": "2010-09-11T10:17:03.347", "id": "4020", "lastActivityDate": "2022-05-16T21:34:06.253", "lastEditDate": "2022-05-16T21:34:06.253", "lastEditorDisplayName": null, "lastEditorUserId": "5740", "ownerDisplayName": null, "ownerUserId": "455", "parentId": "4014", "postTypeId": "2", "score": "17" }
[ { "accepted": null, "body": "<p>Having just upgraded to Maverick Meerkat Beta 1, something broke in my standard, vanilla eth0 configuration which I've not debugged yet. The quick and dirty <a href=\"http://linux.die.net/man/8/dhclient\" rel=\"nofollow\">workaround has been</a></p>\n\n<pre><code>sudo dhclien...
null
null
null
null
null
4019
1
4021
2010-09-11T08:03:15.940
0
724
<p>While I can see there is a lot of info available on setting up the headphones, but before I buy one I would like to know from the community if anyone tried setting up a bluetooth headphone on Ubuntu Lucid and which brands work well with Ubuntu.</p> <ul> <li>Not looking for anything expensive</li> <li>Should be easy to configure repeatably</li> </ul>
584
41
2010-09-13T11:56:10.343
2021-04-23T05:46:25.873
Which bluetooth headphones work best?
[ "10.04", "bluetooth", "headphones" ]
1
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Any should be fine now.</p>\n\n<p>There are however few important things to remember:</p>\n\n<ol>\n<li>Blueman (<code>sudo aptitude install blueman</code>) is better than default bluetooth applet</li>\n<li>Cheap bluetooth adapters usually do not work well.</li>\n<li>If you want to listen to music, you should get stereo headset that support A2DP profile.</li>\n<li>Switch from stereo to headset mode is not automatic but it is easily done with \npavucontrol (<code>sudo aptitude install pavucontrol</code>, last tab)</li>\n</ol>\n\n<p>Other than that it all works out of the box.</p>\n", "commentCount": "0", "comments": [], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-11T11:27:47.573", "id": "4021", "lastActivityDate": "2010-09-11T11:27:47.573", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "329", "parentId": "4019", "postTypeId": "2", "score": "1" }
[ { "accepted": true, "body": "<p>Any should be fine now.</p>\n\n<p>There are however few important things to remember:</p>\n\n<ol>\n<li>Blueman (<code>sudo aptitude install blueman</code>) is better than default bluetooth applet</li>\n<li>Cheap bluetooth adapters usually do not work well.</li>\n<li>If you wa...
null
null
null
null
null
4026
1
4074
2010-09-11T14:52:07.670
2
565
<ul> <li><p>I am trying to install Ubuntu 10.04 on my machine which already has Windows Vista and Fedora installed.</p></li> <li><p>I use GRUB to get the boot menu. The GRUB screen looks something like this (has a fedora logo at the bottom)</p> <p><img src="https://i.stack.imgur.com/Md7Za.png" alt="alt text"></p></li> <li><p>The problem is that when I insert the CD and try to boot, it takes me directly to the GRUB menu for Fedora/Vista, nothing for Ubuntu.</p></li> <li><p>So, I tried Ubuntu's CD boot helper to help me boot from the CD, and I get this error</p> <p><img src="https://i.stack.imgur.com/HATv1.png" alt="alt text"></p></li> <li><p>The BIOS says that I should press <kbd>F2</kbd> for setup and <kbd>F12</kbd> for boot options. I tried them. Nothing happens except that it goes straight to the GRUB menu.</p></li> </ul> <p><strong>What should I do?</strong></p>
686
67335
2014-08-05T05:06:03.897
2014-08-05T05:06:03.897
need help booting the machine using the Ubuntu 10.04 installer CD
[ "system-installation", "10.04" ]
3
1
CC BY-SA 2.5
[ { "creationDate": "2010-09-11T17:32:39.663", "id": "4065", "postId": "4026", "score": "0", "text": "Try fanatically and repetitively pressing F2 to get to setup, it usually works for me just to press repeatedly!", "userDisplayName": null, "userId": "455" } ]
{ "accepted": true, "body": "<p>It was a stupid problem.</p>\n\n<p>My machine has function keys that need to be pressed in combination of <kbd>Fn</kbd> key (opposite to what is there in most laptops). So, I was trying just that (<kbd>Fn</kbd>+<kbd>F2</kbd>, <kbd>Fn</kbd>+<kbd>F12</kbd>).</p>\n\n<p>Turns out while booting, you need to press <kbd>F2</kbd> without the <kbd>Fn</kbd> key.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-13T16:11:40.880", "id": "4148", "postId": "4074", "score": "0", "text": "please mark this (your) answer as solution", "userDisplayName": null, "userId": "1990" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-12T18:29:03.207", "id": "4074", "lastActivityDate": "2010-09-12T18:29:03.207", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "686", "parentId": "4026", "postTypeId": "2", "score": "2" }
[ { "accepted": null, "body": "<p>What you want is for your computer not to even get to GRUB. You want it to check for a CD in the drive before it goes to the hard disc (and loads GRUB).</p>\n\n<p>This is done in a computer's 'BIOS'. Just after you turn the machine on, look for a screen, usually with the manu...
null
null
null
null
null
4028
1
null
2010-09-11T16:13:47.480
3
1962
<p>I have a Tenda TWL541U wireless usb card and I cannot make it work with Ubuntu 10.10 64 bits. I've tried the Windows XP drivers with ndiswrapper to no avail. In Windows 7 I've made it work with using the Vista 64 driver. Does anyone can help? I'm quite a noob in Ubuntu.</p>
2206
235
2011-01-17T18:19:11.253
2011-01-17T18:19:11.253
Drivers for the Tenda twl541u wireless card?
[ "10.10", "wireless", "drivers", "usb" ]
2
0
CC BY-SA 2.5
[]
null
[ { "accepted": null, "body": "<p>May be <a href=\"http://www.alstevens.co.uk/how-to-install-wireless-usb-drivers-for-ubuntu/\" rel=\"nofollow\">this</a> will work.</p>\n", "commentCount": "1", "comments": [ { "creationDate": "2010-09-11T18:45:05.590", "id": "4069", "post...
null
null
2013-03-14T17:09:50.197
null
null
4029
1
null
2010-09-11T16:47:52.860
3
301
<p>An error occurred in the partitioning stage of an Ubuntu 10.10 installation on my computer that caused me to restart and now all of my other partitions are gone.</p> <p>Is there a way to recover these files? </p>
1010
1010
2010-09-11T17:23:46.280
2010-09-19T19:31:58.920
Ubuntu Installation Wiped Whole Drive
[ "partitioning" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2013-04-13T11:33:10.197", "id": "353126", "postId": "4029", "score": "0", "text": "Possible Duplicate: http://askubuntu.com/q/3883/83046", "userDisplayName": null, "userId": "64171" } ]
null
[ { "accepted": null, "body": "<p>It is possible that your partition table was corrupted but your partitions are still there.</p>\n\n<p>There is a tool available in the Ubuntu LiveCD called gpart that can recover your partition table. </p>\n\n<p><a href=\"http://www.brzitwa.de/mb/gpart/index.html\" rel=\"nofo...
null
null
2013-03-14T17:09:55.390
null
null
4033
1
4035
2010-09-11T19:18:37.370
5
494
<p>I'm building a security-intensive (stores credit card numbers, etc) using Python and Django with UWSGI (written in C), NGINX, and PIL (Python Imaging Library). I'm trying to work my way up in the Ubuntu world to be less of an ignoramus, so I just bought the <strong>Official Ubuntu Server Book</strong>. Just reading this book isn't going to make me even an amateur level server admin compared to the peeps on here though, so I have to ask:</p> <p><strong>Which flavor of Ubuntu</strong> would be an optimal route to go down with the above requirements, and <strong>more importantly, why</strong>? I've read good things about Hardy, but I know not the reasons why it's "good".</p>
2209
null
null
2010-09-14T08:29:00.527
Which Ubuntu version to use for my Python web app?
[ "server", "security", "8.04" ]
4
0
CC BY-SA 2.5
[]
{ "accepted": true, "body": "<p>Hardy 8.04 and Lucid 10.04 are both Long-Term Support (LTS) releases and will be supported for quite a while.</p>\n\n<p>Both are getting updates and security fixes until 2013 and 2015 respectively. Contrary to answer by Source Lab, LTS server editions are maintained for <strong>5 years</strong>.</p>\n\n<p><strong>Hardy</strong> has python <strong>2.5</strong> as default whereas <strong>lucid</strong> has <strong>2.6</strong> as default. If not all of your dependencies are proven to be reliable with 2.6 I would recommend sticking with Hardy for now.</p>\n", "commentCount": "2", "comments": [ { "creationDate": "2010-09-11T22:00:24.253", "id": "4075", "postId": "4035", "score": "2", "text": "It may be more relevant that lucid dropped support for Python 2.4 and 2.5, while hardy supports both 2.4 and 2.5 (but not 2.6).", "userDisplayName": null, "userId": "136" }, { "creationDate": "2010-09-11T22:00:46.083", "id": "4076", "postId": "4035", "score": "0", "text": "To clarify the 3 year/5 year point: it's true that desktop editions are maintained for three years. Server editions are something different, and are maintained for longer. (I know you know this, @Dima, but it wasn't clear to me and I had to look it up :D)", "userDisplayName": null, "userId": "2213" } ], "communityOwnedDate": null, "contentLicense": "CC BY-SA 2.5", "creationDate": "2010-09-11T20:02:28.273", "id": "4035", "lastActivityDate": "2010-09-11T20:02:28.273", "lastEditDate": null, "lastEditorDisplayName": null, "lastEditorUserId": null, "ownerDisplayName": null, "ownerUserId": "72", "parentId": "4033", "postTypeId": "2", "score": "6" }
[ { "accepted": null, "body": "<p>Basically I would use the latest <a href=\"https://wiki.ubuntu.com/LTS\" rel=\"nofollow\">LTS</a> release for a server, as of writing that would be 10.04 (Lucid Lynx). The reason is quite simple! On a server you properly want to use a system that doesn't need to be upgraded i...
null
null
null
null
null
4037
1
null
2010-09-11T20:21:44.123
21
24795
<p>The wireless connection in my house unfortunately often disappears, requiring a wireless router reboot.</p> <p>Making this worse is that my ubuntu media pc, does not automatically reconnect to the wireless network when it's been gone, and then comes up about a minute later. The network in question is setup as "connect automatically" in the network settings.</p> <p>If I manually select my wireless network, using the wireless icon in the topright of my screen, everything works fine, until the next time that wireless goes down.</p> <p>I'm looking for a way so I don't have to remember to do this manually all the time.</p>
2210
235
2010-09-16T20:57:51.153
2023-09-24T20:42:48.593
Automatically reconnect wireless connection
[ "wireless" ]
9
4
CC BY-SA 2.5
[ { "creationDate": "2010-09-11T21:57:34.907", "id": "4073", "postId": "4037", "score": "0", "text": "I have the exact same problem. I'd be satisfied with a solution that used, e.g. a cron script every 5 minutes asking for Network Manager to reconnect, if it's not connected already.", "userDi...
null
[ { "accepted": null, "body": "<p>You might want to have a look at using wpa_supplicant instead of network-manager, but that doesn't really matter when on a media-center. wpa_supplicant isn't as flexible as network-manager but afaik it doesn't give up after trying three times. have a look at <a href=\"https:/...
null
null
null
null
null
4041
1
null
2010-09-11T20:55:51.150
2
2045
<p>How can I set up my PC the Remote Desktop is enabled from the moment it is booted, regardless of who is logged on?</p> <p>Currently, I have to open vino-preferences so I can access my PC from another computer. But if my wife then logs on, I can't see either my account or my wife's.</p> <p>Can it be set up as a service, so it is enabled when I turn on the computer?</p>
175
null
null
2010-10-02T17:03:22.913
Enable Remote Desktop for the whole PC
[ "remote-desktop", "vino" ]
2
1
CC BY-SA 2.5
[ { "creationDate": "2010-09-11T23:41:02.507", "id": "4078", "postId": "4041", "score": "0", "text": "Sry i don't understand `But if my wife then logs on, I can't see either my account or my wife's.` What do you mean with account?", "userDisplayName": null, "userId": "1990" } ]
null
[ { "accepted": null, "body": "<p>Assuming you are talking about Ubuntu's built in VNC service, (when you say remote deskop I always think Windows RDP,) You need to look at your setting at </p>\n\n<p><strong>System -> Preferences -> Remote Desktop</strong></p>\n\n<p>There you should see all the settings you...
null
null
2013-03-14T17:10:02.257
null
null