Zero Replieshttp://linuxexchange.org/questions/zeroreply/?type=rssopen questions with zero answersenSat, 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-mmrfc5424addhmacrfc5424linuxexchangesyslogdebianlinuxhow 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-issuesambaloggedfs 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-scoreinstallwireless 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-14wifiCompare 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-filescentoslinuxOpen 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-battlenetdebianCentOS, 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-openldapcentosCan'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-ltsscreennvidiaubuntu12.04LTS+NComputing =>odd keybindinghttp://linuxexchange.org/questions/3300/ubuntu1204ltsncomputing-odd-keybinding<p>I have installed ubuntu12.04 LTS on proxmox and run NComputing on it it . It will connect well but navigaion keys works diffrently. up-key will take screenshot left-key will erase all the text have been written and ... while with the VNC viewre ubuntu12.04 will works correctly. so by connecting to NComputing programmers cant write code becuase of navigation keys Can anyone help me? Thanks in advance.</p>esxzawqSun, 16 Mar 2014 06:47:03 -0400http://linuxexchange.org/questions/3300/ubuntu1204ltsncomputing-odd-keybindingubuntuI need to compile backprots-20131206 into ath10k device driverhttp://linuxexchange.org/questions/3267/i-need-to-compile-backprots-20131206-into-ath10k-device-driver<p>Hi , there</p> <p>I need to compile source code backports-20131206 into wireless AP device driver as ath10k I used</p> <pre><code>make clean make defconfig-ath10k make </code></pre> <p>but I found there are no ath.ko mac80211.ko ath9k.ko ath10k_core.ko rt2x00lib.ko</p> <p>rt2x00mmio.ko rt2x00pci.ko rt2800lib.ko rt2800pci.ko</p> <p>These are device driver for ath10k, how &amp; where can I use the source code to compile</p> <p>into ath10k for these device driver for wireless AP.</p> <p>Thanks</p>AngelaSun, 05 Jan 2014 20:13:11 -0500http://linuxexchange.org/questions/3267/i-need-to-compile-backprots-20131206-into-ath10k-device-driverwirelessKDE - Desktop effects does not change to OpenGL from XRenderhttp://linuxexchange.org/questions/3243/kde-desktop-effects-does-not-change-to-opengl-from-xrender<p>In the Desktop Effects -&gt; Advanced whenever I change the "Compositing type" from XRender to OpenGL, after a screen flicker it changes back to XRender.</p> <p>OS: Debian Squeeze</p> <p>KDE version: 4.4.5</p> <p>GPU : SiS 661/741/760 PCI AGP or 662/761Gx PCIE VGA Adapter</p> <p>RAM: 1.2 GB</p> <p>CPU : Intel Core 2 Duo 3 Ghz</p>abhidSat, 02 Nov 2013 14:50:49 -0400http://linuxexchange.org/questions/3243/kde-desktop-effects-does-not-change-to-opengl-from-xrenderdebiankde4desktop-managercopying a file on a jfs filesystem, does not follow acl guidelineshttp://linuxexchange.org/questions/3190/copying-a-file-on-a-jfs-filesystem-does-not-follow-acl-guidelines<p>Hi everyone, I have a jfs filesystem</p> <pre><code>/dev/md2 on /mnt/hd2 type jfs (rw) </code></pre> <p>to which i am trying to copy some folders into target folder <code>/mnt/hd2/videos/movies/</code>.</p> <p>note: I am actually not using this target folder directly, but a symbolic link in my home folder that points to the target folder.</p> <p>Now, the folder <code>/mnt/hd2/videos/movies/</code> has default group acl enabled:</p> <pre><code>nass@stargaze:/mnt/hd2/videos$ getfacl Movies/ # file: Movies/ # owner: nass # group: shares # flags: -s- user::rwx group::rwx other::r-x default:user::rwx default:group::rwx default:group:shares:rwx default:mask::rwx default:other::r-x </code></pre> <p>I copied the folders from a temporary folder and expected to get the group write permission to be set as well, instead the folder looks like this:</p> <pre><code>drwxr-sr-x+ 2 nass shares 24 Aug 6 01:12 The_Movie/ </code></pre> <p>I had set acls on the "videos" folder initially, and all the subfolders have inherited the default from that top folder. What have I missed?</p>synthnassizerMon, 05 Aug 2013 18:36:43 -0400http://linuxexchange.org/questions/3190/copying-a-file-on-a-jfs-filesystem-does-not-follow-acl-guidelinesfilesystemLexmark 515 printerhttp://linuxexchange.org/questions/3136/lexmark-515-printer<p>Need help setting up my Lexmark 515 printer.</p> <p>The software seems to recognize it but cannot print with it and the que is getting longer and longer. Don't know how to delete the que. Help.</p>rawjvhTue, 16 Jul 2013 17:01:08 -0400http://linuxexchange.org/questions/3136/lexmark-515-printerubuntuFTDI driver installation issueshttp://linuxexchange.org/questions/3100/ftdi-driver-installation-issues<p>Hi, I am trying to install a VCP driver for FT232R chip from ftdichips.com. Unfortunatey there is no installation manual/guidelines for linux driver available. When I try to build the source of the driver by</p> <pre><code>sudo make </code></pre> <p>it outputs the following error:</p> <pre><code>fatal error: /lib/modules/3.0.0-12-generic/build/include/linux/modversions.h: No such file or directory </code></pre> <p>I think it might be because I have my linux headers in diffrent directory installed? In which case I would have to create a symlink? OS: Ubuntu 11.10</p> <p>Thank you</p>astralmasterTue, 14 May 2013 14:37:36 -0400http://linuxexchange.org/questions/3100/ftdi-driver-installation-issuesdriverubuntuKeyboard keys wrong on Gnome and Xfce-4, but not KDEhttp://linuxexchange.org/questions/3091/keyboard-keys-wrong-on-gnome-and-xfce-4-but-not-kde<p>When I log onto our Linux server (Redhat 16) using xterm and run the gnome or xfce-4 desktops the keys no longer are entered in correctly - (e.g. when pressing the "d" key - "s" is displayed). And that is for the whole keyboard! The keys are mapped correctly for KDE desktop.<br> </p> <p>There is no problem running the gnome desktop on my other (Solaris) machines using the same account (I use NIS and export the user accounts to all machines - sort of a simple cluster) so I don't think it could be anything on the user's account.</p> <p>Roger</p>Roger PFri, 12 Apr 2013 17:49:56 -0400http://linuxexchange.org/questions/3091/keyboard-keys-wrong-on-gnome-and-xfce-4-but-not-kdegnomeLenovo R-60 Win XP doesnt start from Ubuntu start menuhttp://linuxexchange.org/questions/3077/lenovo-r-60-win-xp-doesnt-start-from-ubuntu-start-menu<p>Lenovo R-60 Win XP doesnt start after Ubuntu additional installation . Possible premise is partition alteration. "Unsupported file format " on the screen. Pls help to fix.</p>goldapFri, 15 Mar 2013 09:06:32 -0400http://linuxexchange.org/questions/3077/lenovo-r-60-win-xp-doesnt-start-from-ubuntu-start-menuubuntuSetting up Kerberos in NIS for Linux OEL5xhttp://linuxexchange.org/questions/2974/setting-up-kerberos-in-nis-for-linux-oel5x<p>I had configured the users as NIS in my Oracle Enterprose Linux 5x server. Users are looking good but I am facing issues with kerberos. I am getting a "kshd: Login denied " while trying to login to my server using kerberos.</p> <p>kinit user@DOMAIN.COM # Alows me to login krsh -l user MyLinuxServer 'ls -l /tmp/Filename' <strong>kshd: Login denied.</strong></p> <p>Any help or documents on configuring kerberos on NIS based Linux would be appreciated.</p>BalualwaysTue, 20 Nov 2012 10:44:21 -0500http://linuxexchange.org/questions/2974/setting-up-kerberos-in-nis-for-linux-oel5xlinuxZpanel customization.http://linuxexchange.org/questions/2973/zpanel-customization<p>I would like to know is it possible to customize Zpanel for creating a hosting control panel for me. I went through the documentation and all, got a rough idea about. Hope it is created in php. isn't it ? I just wanted to know whether I can create a new Panel such as "Paul Panel" bu modifying it.</p> <p>IS IT POSSIBLE ?</p>Paul DevasiaSun, 18 Nov 2012 22:09:56 -0500http://linuxexchange.org/questions/2973/zpanel-customizationcontrolrdesktop to update windows machine remotlyhttp://linuxexchange.org/questions/2968/rdesktop-to-update-windows-machine-remotly<p>I want to use psexec for managing remote systems(install some software on the remote system).I see a requirement that file and printer sharing to be enabled in the remote system,,for psexec to be working. I would like to take remote session into Windows ,using rdesktop and using -s flag of rdesktop ,want to execute a batch file or command like 'netsh' to open ports in remote machine so that the requirements for psexec are fulfilled and I can use psexec to exercise any intended management controls</p>RatnamMon, 12 Nov 2012 06:58:05 -0500http://linuxexchange.org/questions/2968/rdesktop-to-update-windows-machine-remotlylinuxeliminate duplicate mailshttp://linuxexchange.org/questions/2946/eliminate-duplicate-mails<p>Dear Sirs,</p> <p>We have a new mailserver running on linux.</p> <p>In which I have sent up a mail id called backup@aekays.com for the purpose of having a copy of all the mails sent and received through this server.</p> <p>I have set this id of backup@aekays.com as mail archiver. </p> <p>But I used to receive duplicate mails if a mail is sent to the local users, if the local user is in "CC" or in TO"</p> <p>Can any one provide me a solution for this.</p> <p>Thanks in advance. T.Thirumurthi 09943976211 Tamilnadu, India.</p>thirumurthiSat, 06 Oct 2012 07:52:50 -0400http://linuxexchange.org/questions/2946/eliminate-duplicate-mailssendmailCertWatch indicates expired cert but can't fix ithttp://linuxexchange.org/questions/2937/certwatch-indicates-expired-cert-but-cant-fix-it<p>One of our servers running Fedora 16 started sending the following message to root in an email:</p> <pre><code>################# SSL Certificate Warning ################ Certificate for hostname 'server11.&lt;servername&gt;.com', in file (or by nickname): /etc/pki/tls/certs/localhost.crt The certificate needs to be renewed; this can be done using the 'genkey' program. Browsers will not be able to correctly connect to this web site using SSL until the certificate is renewed. ########################################################## Generated by certwatch(1) </code></pre> <p>Because it is a self-signed cert you really can not use genkey to renew, so I tried issuing a new self-signed cert with:</p> <pre><code>grep SSLCertificate /etc/httpd/conf.d/ssl.conf </code></pre> <p>and grabbed the location of the certs</p> <pre><code>SSLCertificateFile /etc/pki/tls/certs/localhost.crt SSLCertificateKeyFile /etc/pki/tls/private/localhost.key </code></pre> <p>Then I checked the permissions of these files with</p> <pre><code>la /etc/pki/tls/certs/localhost.crt /etc/pki/tls/private/localhost.key </code></pre> <p>Then I created the cert with</p> <pre><code>openssl req -new -days 365 -x509 -nodes -out /etc/pki/tls/certs/localhost.crt -keyout /etc/pki/tls/private/localhost.key </code></pre> <p>When prompted I entered</p> <pre><code>Generating a 2048 bit RSA private key ..........................................+++ .................+++ writing new private key to '/etc/pki/tls/private/localhost.key' ----- You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) [XX]:US State or Province Name (full name) []:&lt;MyState&gt; Locality Name (eg, city) [Default City]:&lt;MyCity&gt; Organization Name (eg, company) [Default Company Ltd]:&lt;MyCompany&gt; Organizational Unit Name (eg, section) []:&lt;MyDepartment&gt; Common Name (eg, your name or your server's hostname) []:server11.&lt;servername&gt;.com Email Address []:&lt;Admin Email&gt; </code></pre> <p>I then checked the files again with </p> <pre><code>la /etc/pki/tls/certs/localhost.crt /etc/pki/tls/private/localhost.key </code></pre> <p>All looked OK and the new files were there with the right permissions. So all seemed to work out fine but I'm still receiving the cert expiration warning. What am I missing?</p>Patrick NelsonTue, 02 Oct 2012 11:09:46 -0400http://linuxexchange.org/questions/2937/certwatch-indicates-expired-cert-but-cant-fix-itsecurityapache-httpddriver for Bluetooth 4.0. Does existing driver( which supports 3.0 ) wil support Bluetooth 4.0?http://linuxexchange.org/questions/2925/driver-for-bluetooth-40-does-existing-driver-which-supports-30-wil-support-bluetooth-40<p>Hi Guys ,<br> </p> <pre><code>Hi Guys , I have a embedded system with linux fedora 12 os and has Bluetooth 3.0 . The embedded system is used to make BT connection. Everythng works fine </code></pre> <p>Now , I have been asked by management to give rough estimate of how much time it will take to upgrade it to BT4.0. Since we do not have BT 4.0 chip , I am not sure how to give them the estimate. In my embeded system. I have following packages installed , so I am wondering does these existing package wil support BT4.0, if not , could guys please point me to from where I will get drivers and how to install in fedora 12.</p> <p>bluez-4.58-1.fc12.i686 <br> bluez-alsa-4.58-1.fc12.i686 <br> bluez-libs-devel-4.58-1.fc12.i686 <br> bluez-compat-4.58-1.fc12.i686 <br> </p> <p>And on doing <br> lsmod | grep "blue" <br> </p> <p>I got following messsage</p> <p>bluetooth 74189 7 rfcomm,sco,bnep,l2cap,btusb <br> rfkill 13401 3 cfg80211,bluetooth</p> <p>dmesg | grep Linux Linux version 2.6.32.26-175.fc12.i686.PAE (mockbuild@x86-17.phx2.fedoraproject.org) (gcc version 4.4.4 20100630 (Red Hat 4.4.4-10) (GCC) ) #1 SMP Wed Dec 1 2</p> <p>Thanks and reagrds, Sam</p> <p>bluez-4.58-1.fc12.i686</p> <p>bluez-alsa-4.58-1.fc12.i686</p> <p>bluez-libs-devel-4.58-1.fc12.i686</p> <p>bluez-compat-4.58-1.fc12.i686</p> <p>And on doing </p> <p>lsmod | grep "blue"</p> <p>I got following message <br> </p> <p>bluetooth 74189 7 rfcomm,sco,bnep,l2cap,btusb rfkill 13401 3 cfg80211,bluetooth</p> <p>dmesg | grep Linux <br> </p> <p>Linux version 2.6.32.26-175.fc12.i686.PAE (mockbuild@x86-17.phx2.fedoraproject.org) (gcc version 4.4.4 20100630 (Red Hat 4.4.4-10) (GCC) ) #1 SMP Wed Dec 1 2</p> <p>Thanks and regards,</p> <p>Sam</p>SampratMon, 24 Sep 2012 06:49:06 -0400http://linuxexchange.org/questions/2925/driver-for-bluetooth-40-does-existing-driver-which-supports-30-wil-support-bluetooth-40bluetoothfedoralinux