Unanswered Questionshttp://linuxexchange.org/questions/unanswered/?type=rssopen questions without an accepted answerenSat, 12 Nov 2016 10:32:39 -0500G.729 codec in linphonehttp://linuxexchange.org/questions/3625/g729-codec-in-linphone<p>Running Manjaro, I installed linphone along with all required libraries from AUR. The application works well except for the fact that the codec list is incomplete. The G.729 codec, for instance is not available.</p> <p>The log file indicates a few problems:</p> <pre><code>... message: 2016-11-12 12:20:39:455 Loading ms plugins from [/usr/lib/mediastreamer/plugins] message: 2016-11-12 12:20:39:456 Loading plugin /usr/lib/mediastreamer/plugins/libmsbcg729.so.0 ... error: 2016-11-12 12:20:39:456 ms_filter_register(): registration of 'MSBCG729Enc' filter has failed: no fallback factory has been defined error: 2016-11-12 12:20:39:456 ms_filter_register(): registration of 'MSBCG729Dec' filter has failed: no fallback factory has been defined message: 2016-11-12 12:20:39:456 libmsbcg729 debug plugin loaded message: 2016-11-12 12:20:39:456 Plugin loaded (/usr/lib/mediastreamer/plugins/libmsbcg729.so.0) ... message: 2016-11-12 12:20:39:456 Codec G729/8000 fmtp=[annexb=no] number=18, enabled=0) added to the list of possible codecs. ... message: 2016-11-12 12:20:39:457 Could not find encoder for G729 message: 2016-11-12 12:20:39:457 Could not find decoder for G729 ... </code></pre> <p><code>ldconfig -p|grep 729</code></p> <pre><code>libbcg729.so.0 (libc6,x86-64) =&gt; /usr/lib/libbcg729.so.0 libbcg729.so (libc6,x86-64) =&gt; /usr/lib/libbcg729.so </code></pre> <p>Any idea as to why I need to do for G.729 to be enabled? Thanks for your help.</p> <p><code>Linux Elqui 4.4.30-1-MANJARO #1 SMP PREEMPT Tue Nov 1 05:47:13 UTC 2016 x86_64 GNU/Linux</code></p>EricSat, 12 Nov 2016 10:32:39 -0500http://linuxexchange.org/questions/3625/g729-codec-in-linphonecodecsipvoipHow mmpstrucdata and mmrfc5424addhmac works?http://linuxexchange.org/questions/3543/how-mmpstrucdata-and-mmrfc5424addhmac-works<p>I am trying to log messages with structured data . But it is showing null value for structured data. I am working with rsyslog 8.9.0.Can someone exlain me how these two modules mmpstrucdata and mmrfc5424addhmac will be effected?</p>LilyChadhaMon, 11 May 2015 05:59:31 -0400http://linuxexchange.org/questions/3543/how-mmpstrucdata-and-mmrfc5424addhmac-workslinuxexchangesyslogdebianlogslinuxUnable to get structured data in logged messages even after adding mmpstrucdata and mmrfc5424addhmac?(RFC5424)http://linuxexchange.org/questions/3542/unable-to-get-structured-data-in-logged-messages-even-after-adding-mmpstrucdata-and-mmrfc5424addhmacrfc5424<p>I am trying to log messages with structured data . But it is showing null value for structured data. I am working with rsyslog 8.9.0.Can someone tell me either i need to load some module or modify source to get structure data SD-IDs in logged message.</p> <h1>Template:</h1> <p>"&lt;%PRI%&gt;%TIMESTAMP:::daterfc3339%%HOSTNAME%%syslogtag%%APPNAME%%PROCID% %MSGID% %msg% %STRUCTURED-DATA%n”</p> <p>getting message format as below: &lt;142&gt; 2015-01-29T06:43:53.081641-05:00 localhost login[2116]: login 2116 - [2116 : 2116 INFO]SERIAL Login from IP:127.0.0.1 user:admin -</p> <h1>configuration file --rsyslog.conf:</h1> <p>$ModLoad imuxsock # provides support for local system logging $ModLoad imklog # provides kernel logging support (previously done by rklogd) $ModLoad mmpstrucdata $ModLoad mmrfc5424addhmac</p> <p>GLOBAL DIRECTIVES</p> <p>$ActionFileDefaultTemplate RSYSLOG_DebugFormat <em>.</em> /var/log/debugfmt.log;RSYSLOG_DebugFormat</p> <p>After loading mmpstrucdata and mmrfc5424addhmac i am getting structured data null.</p>LilyChadhaMon, 11 May 2015 05:58:27 -0400http://linuxexchange.org/questions/3542/unable-to-get-structured-data-in-logged-messages-even-after-adding-mmpstrucdata-and-mmrfc5424addhmacrfc5424linuxexchangesyslogdebianlinuxMake Android Applicationhttp://linuxexchange.org/questions/3526/make-android-application<p>Anybody can give me open source software to make android application ? </p>Azhar HamratWed, 29 Apr 2015 04:58:44 -0400http://linuxexchange.org/questions/3526/make-android-applicationsoftwarehow to define variable in sshhttp://linuxexchange.org/questions/3525/how-to-define-variable-in-ssh<p>I need to use <code>ssh</code> to send command to different computers to run programs. Can I define a variable of <code>Directory</code> and <code>program</code> in front of this shell script? Then, I do not need to write them every time?</p> <p><code>host_list=("c15-0330-10.ad.mtu.edu" "c15-0330-11.ad.mtu.edu" "c15-0330-12.ad.mtu.edu")</code> <code># I have multiple programs</code> <code># program=c("L_1","L_2","L_3")</code> <code>ssh -f "${host_list[0]}" 'set Directory="/home/campus27/zwang10/Desktop/AWRR/program/power/vmodel_1/nprot/K_10"; cd $Directory &amp;&amp; nohup Rscript L_1.R&gt; L_1_sh.txt;echo "The job L_1 is finished" |mutt "zwang10@mtu.edu" -s "The job L_1 is finished"'; ssh -f "${host_list[1]}" 'set Directory="/home/campus27/zwang10/Desktop/AWRR/program/power/vmodel_1/nprot/K_10"; cd $Directory &amp;&amp; nohup Rscript L_2.R&gt; L_2_sh.txt;echo "The job L_2 is finished" |mutt "zwang10@mtu.edu" -s "The job L_2 is finished"'; ssh -f "${host_list[2]}" 'set Directory="/home/campus27/zwang10/Desktop/AWRR/program/power/vmodel_1/nprot/K_10"; cd $Directory &amp;&amp; nohup Rscript L_3.R&gt; L_3_sh.txt;echo "The job L_3 is finished" |mutt "zwang10@mtu.edu" -s "The job L_3 is finished"';</code></p>zwang10Thu, 23 Apr 2015 17:12:38 -0400http://linuxexchange.org/questions/3525/how-to-define-variable-in-sshterminalshell-scriptsshSAMBA PDC Roaming Profiles Issuehttp://linuxexchange.org/questions/3521/samba-pdc-roaming-profiles-issue<p>Hi all</p> <p>I am facing a problem.</p> <p>I have configured SAMBA PDC on RHEL 6. Everything is going very smooth. Users are being logged in properly &amp; their network drives (i-e; z: drives) are being shown. But either i login to Windows XP or Windows 7, user's profile does not get loaded. I get an error message, "You are logged in with a temporary profile". It would be so nice of you if anyone among you could guide me properly for how to resolve this issue.</p> <p>A swift response would be highly appreciated.</p> <p>Thanks/Regards</p> <p>THE CODE IS AS UNDER:</p> <p>[global] add group script = /usr/sbin/groupadd %g add machine script = /usr/sbin/useradd -s /bin/false -d /var/lib/nobody %u add user script = /usr/sbin/useradd -m %u add user to group script = /usr/sbin/groupmod -G %g %u cups options = raw delete user script = /usr/sbin/userdel -r %u</p> <pre><code> dns proxy = no domain logons = yes domain master = yes hosts allow = x.x. idmap gid = 15000-25000 idmap uid = 15000-25000 log file = /var/log/samba/%m.log logon drive = z: logon home = \\%L\%U logon path = \\%L\profiles\%U logon script = logon.bat max log size = 50 netbios name = abc os level = 65 passdb backend = tdbsam passwd chat = *New*Unix*Password* %n\n *ReType*new*Unix*password* %n\n *passwd:*all*authentication*tokens*updated*successfully* passwd program = /usr/bin/passwd %u preferred master = yes printcap name = cups printing = cups security = user server string = abc Samba Server socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192 time server = yes unix password sync = no workgroup = abc </code></pre> <p>[homes] comment = Home Directories valid users = %U browseable = no read only = no</p> <h1>valid users = %s</h1> <p>[netlogon] comment = Network Logon Services path = /var/lib/samba/netlogon browseable = no guest ok = yes admin users = root</p> <p>[profiles] comment = Roaming Profiles path = /home/samba/profiles browseable = no read only = no writable = yes</p> <p>[printers] comment = All Printers path = /var/spool/samba browseable = no printable = yes create mask = 0600 guest ok = yes</p> <p>[print$] comment = Printer Drivers Share path = /var/lib/samba/drivers write list = root</p> <p>[public] comment = Public Stuff path = /home/samba/public read only = no public = yes create mask = 0777 directory mask = 0777</p> <p>[WingLvlShare] comment = Wing Level Sharing path = /home/samba/wing-level read only = no writable = yes public = no create mask = 0770 directory mask = 0770</p>Yawar_AzizMon, 13 Apr 2015 03:06:42 -0400http://linuxexchange.org/questions/3521/samba-pdc-roaming-profiles-issuesambaIs it possible to get jailbreak that is untethered on ios?http://linuxexchange.org/questions/3495/is-it-possible-to-get-jailbreak-that-is-untethered-on-ios<p>I had been wondering in the event you can get an jailbreak for my i-phone 3gs 5.1 I understand I dont need to do this although you could get a tethered</p>QumzWed, 04 Mar 2015 01:41:34 -0500http://linuxexchange.org/questions/3495/is-it-possible-to-get-jailbreak-that-is-untethered-on-ioshardwareloggedfs crashes system with “access: Transport endpoint is not connected”http://linuxexchange.org/questions/3488/loggedfs-crashes-system-with-access-transport-endpoint-is-not-connected<p>I'm trying to use loggedfs to monitor my system changes, and it works great for some time, but then, eventually, it crashes and my fish shell starting to output "access: Transport endpoint is not connected" everytime I try to enter some command. To fix this, I have to login from other terminal as a root and run <code>fusermount -zu &lt;homeforlder&gt;</code> command to resolve that. Where should I look to find what causes such behavior of the system? Can someone point me where to look? Thx.</p> <p>Command I run: <code>loggedfs -f -p /home -c /home/sandric/loggedfs.xml</code></p> <p>P.S. I actually working on web-frontend to loggedfs <a href="https://github.com/sandric/loggedfs-web">here</a> and it crashes there, so if anyone can point it as an issue there, I will be appreciated too.</p>sandricFri, 20 Feb 2015 00:12:37 -0500http://linuxexchange.org/questions/3488/loggedfs-crashes-system-with-access-transport-endpoint-is-not-connectedlinuxA query?Green Hostinghttp://linuxexchange.org/questions/3478/a-querygreen-hosting<p>Fine, I simply purchased a domain-name from domain.com that was irish And understand im on the best way to get it hosted, questioning Understand this is about 4 pages website, would you guys understand where I could get even free hosting or affordable sponsor????</p>FrogicapTue, 13 Jan 2015 04:35:59 -0500http://linuxexchange.org/questions/3478/a-querygreen-hostingshell-scriptubuntu 14.4http://linuxexchange.org/questions/3474/ubuntu-144<p>Hello, I have an old compaq laptop that w/ not boot from a dvd so I downloaded the desktop image. Now how do I run it? 10.10 is on the comp. now. Thank you, drmark</p>drmarkTue, 30 Dec 2014 08:41:40 -0500http://linuxexchange.org/questions/3474/ubuntu-144ubuntuTry to open muse scorehttp://linuxexchange.org/questions/3466/try-to-open-muse-score<p>I recently installed Knoppix on hard drive instead of windows and I then downloaded musescore to the desktop. when i try to open the folder there was no reaction the only thing that oipens is the manual. when i right click on it and try to open with a program i dont know which one to use. can you tell me what im doing wrong. greatly appreciated<br> </p>Rosaleen BoyleMon, 24 Nov 2014 18:23:43 -0500http://linuxexchange.org/questions/3466/try-to-open-muse-scoreinstallwhy my LFS system displays the my host system kernel version?http://linuxexchange.org/questions/3458/why-my-lfs-system-displays-the-my-host-system-kernel-version<p>Hello,</p> <p>i am using Slackware 14.1 64 bit which is my host system.i build LFS/BLFS 7.6 on another partition,when i getting into my LFS/BLFS system i run "uname -r" then i getting my host kernel version "3.10.17" but my LFS/BLFS kernel version is "3.16.2".please help me how to solve this issue.thanks in advance.</p>GautamaSun, 16 Nov 2014 13:02:02 -0500http://linuxexchange.org/questions/3458/why-my-lfs-system-displays-the-my-host-system-kernel-versionkernellfsslackwarelinuxReplace ubuntu with puppyhttp://linuxexchange.org/questions/3457/replace-ubuntu-with-puppy<p>Hi, I have an emachines desktop computer. Windows xp became corrupted and lost a file so I couldn't boot windows. I installed ubuntu via usb stick to replace xp. Ubuntu loads, and will work, but really slow, slow, slow. I think the emachines desktop has sufficient ram and memory to run ubuntu, but it is too slow to be of use. I would like to replace ubuntu with puppy linux, but I can't get puppy installed. I tried using a usb stick since the cd/dvd drive doesn't work. Thanks in advance for your help. Regards, John</p>jnybob11Sun, 16 Nov 2014 07:48:41 -0500http://linuxexchange.org/questions/3457/replace-ubuntu-with-puppyusbubuntuwireless lost in Mint 14http://linuxexchange.org/questions/3453/wireless-lost-in-mint-14<p>My Dell Inspiron 1011 (32 bit)has been faultless for many years, but the wireless broadband has disappeared in Linux, but it's there in WinXP. I tried running Mint 14 live, but still no wireless. I click the network icon, but no broadband networks appear; in Windows there are loads. I see no way to enable/disable wireless. Ethernet works. I've tried many distros and Manjaro and Lubuntu LXLE12.04.3 (LXF177) connect with wireless so I'm happily using Lubuntu. I'm non-expert, and I'm curious as to how to get my wireless back in my favourite distro, Mint 14 or whatever. The hardware: Board: Dell Wireless 1397 WLAN Mini-Card Rev 5.00 Chipset: BCM4315/BCM22062000 MAC address: 0C 60 76 4E EC 58</p>jamesSat, 08 Nov 2014 13:49:49 -0500http://linuxexchange.org/questions/3453/wireless-lost-in-mint-14wifii need to know when a linux distro was installed on the systemhttp://linuxexchange.org/questions/3452/i-need-to-know-when-a-linux-distro-was-installed-on-the-system<p>Please give an example as well instead of just the syntax</p>piyush128kkTue, 04 Nov 2014 16:55:31 -0500http://linuxexchange.org/questions/3452/i-need-to-know-when-a-linux-distro-was-installed-on-the-systeminstallHOW TO USE ALL INODES IN MY SYSTEMhttp://linuxexchange.org/questions/3447/how-to-use-all-inodes-in-my-system<p>MY UBUNTU PC HAS THE FREE INODES I WANT TO USE ALL OF THEM WITH A AUTOMATIC SHELL SCRIPT. HERE ONE THING I DON'T WANT TO CREATE ANY FILE THAT MEANS WITHOUT CREATING ANY FILE I HAVE TO USE ALL FREE INODES IS THERE ANY COMMAND ? OR SCRIPT?</p>ashokkrishnaFri, 24 Oct 2014 10:36:39 -0400http://linuxexchange.org/questions/3447/how-to-use-all-inodes-in-my-systemshell-scriptsecuritydebianbashlinuxWhat Are Facebook Credits?http://linuxexchange.org/questions/3437/what-are-facebook-credits<p>Though it is a virtual currency, Credits cost money to buy. As such, it is hard to imagine why anyone would give away free Credits.</p>audreyTue, 07 Oct 2014 04:21:41 -0400http://linuxexchange.org/questions/3437/what-are-facebook-creditsnetworkingHow do I install a Canon Mp130 printer on Linux Minthttp://linuxexchange.org/questions/3436/how-do-i-install-a-canon-mp130-printer-on-linux-mint<p>How do I install this printer on Linux Mint. I've downloaded the recommended driver (ip1500). This is the file: bjfilter-pixmaip1500-2.50-2.i386.rpm. Everything set up okay using add printer in Mint. But when I did a test page, nothing happened except a stall at 29 percent.</p>RIMSKISat, 04 Oct 2014 13:49:25 -0400http://linuxexchange.org/questions/3436/how-do-i-install-a-canon-mp130-printer-on-linux-mintdriverCan I learn about web development without going colleges ?http://linuxexchange.org/questions/3435/can-i-learn-about-web-development-without-going-colleges<p>I am not good at studies so I know that i will not get any good colleges and I cant clear iit exam. So I decided that after 12th I will do the basic course of web development. And I am too interested in this field. Because I know that this is the only thing I am interested in So tell me which city should I go to learn web development if my decision is right please guide me. </p>automa675Sat, 20 Sep 2014 07:09:24 -0400http://linuxexchange.org/questions/3435/can-i-learn-about-web-development-without-going-collegesweb-meetingCompare two CSV fileshttp://linuxexchange.org/questions/3434/compare-two-csv-files<p>Hi, I have to compare two .csv files and get the output in other file in the given format.</p> <p>First column in provided files would be unique.</p> <p>If a new line is added I want A followed by "," and then followed by entire new row. If a line is modified I want C followed by "," and then followed by entire modified row. If a line is deleted I want D followed by "," and then followed by entire deleted row.</p> <p>File 1</p> <p>aa, bb, cc, dd, ee</p> <p>bb, ww, ee, tt, yy</p> <p>cc, vv, vv, vv, vv</p> <p>File 2 bb, ww, ee, tt, y1</p> <p>cc, vv, vv, vv, vv</p> <p>nn, bb, nn, cc, bb</p> <p>So output be like</p> <p>D, aa, bb, cc, dd, ee</p> <p>C, bb, ww, ee, tt, y1</p> <p>A, nn, bb, nn, cc, bb</p>apoorva joshiThu, 18 Sep 2014 03:10:44 -0400http://linuxexchange.org/questions/3434/compare-two-csv-filescentoslinuxCD drive not being read in Ubuntu 14.04http://linuxexchange.org/questions/3416/cd-drive-not-being-read-in-ubuntu-1404<p>I have recently upgraded from Ubuntu 12.04 to 14.04 (64 bit) in a System 76 laptop. The CD drive will no longer mount or recognize any CD - music, DVD or blank. I have reloaded the codecs and libdvdcss libdvdread4 libdvdnav4. No luck.</p> <p>If someone could help me with a step-by-step solution to this issue, I would appreciate it very much</p>ArdshielTue, 19 Aug 2014 09:00:16 -0400http://linuxexchange.org/questions/3416/cd-drive-not-being-read-in-ubuntu-1404cdubuntuError on retagging questionshttp://linuxexchange.org/questions/3415/error-on-retagging-questions<p>I get an error whenever I'm trying to retag some question: </p> <pre><code>500 Server Error sorry, system error system error log is recorded, error will be fixed as soon as possible please report the error to the site administrators if you wish </code></pre> <p>Is this a known issue? </p>landroniTue, 19 Aug 2014 02:38:16 -0400http://linuxexchange.org/questions/3415/error-on-retagging-questionsmetaosqaUnder what license are the user contributions?http://linuxexchange.org/questions/3407/under-what-license-are-the-user-contributions<p>Under what license do users make their contributions on LE? </p> <p>On StackExchange they use: </p> <blockquote> <p>user contributions licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">cc by-sa 3.0</a> with <a href="http://blog.stackoverflow.com/2009/06/attribution-required/">attribution required</a></p> </blockquote>landroniMon, 18 Aug 2014 16:15:06 -0400http://linuxexchange.org/questions/3407/under-what-license-are-the-user-contributionsmetaOpen office pkg issue in yumhttp://linuxexchange.org/questions/3392/open-office-pkg-issue-in-yum<p>Hi, I have configure yum &amp; adding the rpm packages of openoffice in /var/ft/pub/rhel but when I was listing the packages by using yum list all the it will not show in the list. what is problem regarding to list in primary.xml. help me?</p>kalalharshalThu, 14 Aug 2014 03:06:38 -0400http://linuxexchange.org/questions/3392/open-office-pkg-issue-in-yumnetworkbridge drops fragmented packetshttp://linuxexchange.org/questions/3390/bridge-drops-fragmented-packets<p>We have got a problem with kernel 3.4.56 as it does not forward fragmented packets on a bridge.</p> <p>We are using bridge to connect Wi-fi interface wlan0 and Ethernet interface eth1.</p> <p>The command "echo 0 &gt; /proc/sys/net/bridge/bridge-nf-call-iptables" give then ping 192.168.3.56 -s 2100 is working fine but when The command "echo 1 &gt; /proc/sys/net/bridge/bridge-nf-call-iptables" give then This is not working.</p>chiragpatwariWed, 13 Aug 2014 05:24:40 -0400http://linuxexchange.org/questions/3390/bridge-drops-fragmented-packetsbridgesquid proxy blocks battle.nethttp://linuxexchange.org/questions/3379/squid-proxy-blocks-battlenet<p>I have a fully working squid setup, i can browse, download, the only problem i'm having is logging in to battle.net. (the windows client, not the website - that one works so it's not due to the login servers being down...).</p> <p>i'm using a little cleaned up config:</p> <pre><code>http_port 8888 refresh_pattern ^ftp: 1440 20% 10080 refresh_pattern ^gopher: 1440 0% 1440 refresh_pattern -i (/cgi-bin/|\?) 0 0% 0 refresh_pattern . 0 20% 4320 acl localnet src 192.168.1.0/24 # RFC 1918 possible internal network acl SSL_ports port 443 acl Safe_ports port 80 # http acl Safe_ports port 21 # ftp acl Safe_ports port 443 # https acl Safe_ports port 70 # gopher acl Safe_ports port 210 # wais acl Safe_ports port 1025-65535 # unregistered ports acl Safe_ports port 280 # http-mgmt acl Safe_ports port 488 # gss-http acl Safe_ports port 591 # filemaker acl Safe_ports port 777 # multiling http acl CONNECT method CONNECT http_access allow manager localhost http_access deny manager http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access allow localhost http_access allow localnet http_access deny all </code></pre> <p>however, this results in the following loggings:</p> <pre><code>TCP_MISS/200 12095 GET <a href="http://eu.patch.battle.net:1119/hero/blob/game">http://eu.patch.battle.net:1119/hero/blob/game</a> - HIER_DIRECT/213.248.127.133 application/octet-stream </code></pre> <p>(multiple lines of this one )</p> <p>The ports used by battle.net which should be available: 80, 443, 1119, 3724 &amp; 6881-6999</p> <p>according to me, the config does allow these ports ? </p> <p>Is there a problem in my config, or could it just be because i'm currently testing this from a remote location through a ssh tunnel ?</p> <p>extra: i don't have permission to create new tags yet, could someone be so nice as to create these: jessie &amp; squid3 this way i can properly tag my question :-)</p>shardikTue, 29 Jul 2014 09:07:32 -0400http://linuxexchange.org/questions/3379/squid-proxy-blocks-battlenetdebianwebiste not working in ubuntuhttp://linuxexchange.org/questions/3375/webiste-not-working-in-ubuntu<p>hi,</p> <p>m facing problem with one website (freelancer.in) in my network. m using Ubuntu 14.04.website not loading but if i used proxy site then its working. please tell me solution<br> </p>PaddyFri, 18 Jul 2014 04:00:55 -0400http://linuxexchange.org/questions/3375/webiste-not-working-in-ubuntuubuntu-10.04CentOS, Help me solve this problem about openldaphttp://linuxexchange.org/questions/3374/centos-help-me-solve-this-problem-about-openldap<p>Now, I have completed to install openldap and samba doing Primary Domain Controller for my company. I have problem as: PC joined domain then can not install new software althought use root -user. How to configure to user root or users of domain admin can install or config at pc(personal computer joined PDC) as the same windows can do. Thanks for help! best regards!</p>PhamThu, 17 Jul 2014 05:25:06 -0400http://linuxexchange.org/questions/3374/centos-help-me-solve-this-problem-about-openldapcentosI'm a mechanical engineer and I've a big interview coming up as a developer in a big IT company.. what should I prepare??http://linuxexchange.org/questions/3364/im-a-mechanical-engineer-and-ive-a-big-interview-coming-up-as-a-developer-in-a-big-it-company-what-should-i-prepare<p>The company expects at least 1 programming language, I'm aware of C but I'm not proficient. What kind of questions I can expect in technical round and which are the toughest programs in C that they may ask? Somebody please suggest me or send me some useful link. Thanx</p>_pathakSun, 13 Jul 2014 15:46:20 -0400http://linuxexchange.org/questions/3364/im-a-mechanical-engineer-and-ive-a-big-interview-coming-up-as-a-developer-in-a-big-it-company-what-should-i-preparequestionisanswerjavascriptprogrammingCan't get 1920x1080 rez on xubuntu 14.04 LTShttp://linuxexchange.org/questions/3356/cant-get-1920x1080-rez-on-xubuntu-1404-lts<p>Hi, I just got a new computer and the screen I bought is brand new, however I am unable to get 1080p The only rez I can get is 4:3... Not a single 16:9 is avaible. I also use HDMI cable, and this is what I get when I type xrandr BTW:</p> <p>"</p> <blockquote> <p>xrandr: Failed to get size of gamma for output default Screen 0: minimum 640 x 480, current 1024 x 768, maximum 1024 x 768 default connected 1024x768+0+0 0mm x 0mm 1024x768 <br> 61.0* 800x600 61.0 640x480 60.0 <br> 1920x1080_60.00 (0x5c) 148.5MHz h: width 1920 start 2008 end 2052 total 2200 skew 0 clock<br> 67.5KHz v: height 1080 start 1084 end 1089 total 1125 clock<br> 60.0Hz "</p> </blockquote>LinucNerdFri, 13 Jun 2014 00:48:07 -0400http://linuxexchange.org/questions/3356/cant-get-1920x1080-rez-on-xubuntu-1404-ltsscreennvidia