By arbee
Source: DoItYourself.com
By arbee
Source: DoItYourself.com
Peazip is one of the most versatile file compression and archiving utilities out there—possibly the most versatile—and it’s free. It’s also quite easy to use and offers the same features found in programs such as WinZip and WinRAR such as context menu integration, passwords, command line usage, etc.
Peazip supports every compressed archive format I’m aware of: 7Zip, ARC, GZ, TAR, ACE, RAR, etc. There’s also support for both ISO and UDF disc images and Linux package formats such as DEB, RPM, PET/PUP, and SLP. As a bonus, you can open Mac HFS DMG files. There are more, but the point is that there’s little out there in the way of compressed file you can’t browse and extract from.
While I’ve always appreciated the effort that goes into this piece of free software, I’ve also installed, then uninstalled Peazip several times over the years because of operational and performance issues. This has left me using WinRAR, which while a bit old-school looking, is rock-solid and fast. Version 5 of Peazip seems quite a bit more stable, but it still has a tendency to not close and launch 100% smoothly when you’re dealing with multiple instances. Also, the progress bar is still inaccurate, claiming far less progress than as actually been made. Several times, it was only 25% across when the task completed.
To read this article in full or to leave a comment, please click here
Source: FULL ARTICLE at PCWorld
By greggome
Source: DoItYourself.com
Ann Arbor based health care analytics company ArborMetrix has raised $7 million in a Series B round of funding. This round of funding was led by RPM Ventures with existing investor Arboretum Ventures. The Wolverine Fund also participated in this round. Tony Grover of RPM will be joining ArborMetrix on the board of directors. ArborMetrix is relocating their headquarters from the north side of Ann Arbor to downtown. …read more
Source: FULL ARTICLE at Forbes Health
By sng1952
I would like some feed back Please Frozen and Dead in Ontario
sng1952
Source: DoItYourself.com
Today i’ve finished my small Shellscript for installing Skype in Plasma Active. Its tested with the Plasma Active Mer Image (i686). But it should work in other architectures too.
What does the Script?
It downloads the latest Skype Version (dynamic package) and tries to find a already installed Version of Skype. To do that it searches in the RPM-Database and also in /usr/share/skype. Then it removes the old ones, and installs the new (the downloaded) version.
The script places the files on the same place like the RPM package does it. So it should be compatible.
While my tests i haven’t found any troublemakers. So please, if you find anything, just drop me a note: saigkill@open-slx.com.
So have fun with it 🙂
Aah.Forgotten to say where. Just type in your Plasma Active Device:
curl –output skype-installer http://saigkill.homelinux.net/pub/skype-installer
Then a chmod +x skype-installer and you can run it with ./skype-installer
If you like the script, you can anything 🙂
Technorati Tags:Technology, News, Mobile App, Tablet, Tablets
From: http://feedproxy.google.com/~r/homelinux/kde/~3/qAtDSk-7Kkg/skype-installer-for-plasma-active
By Dan Caplinger, The Motley Fool
Filed under: Investing
The new earnings season is about to begin, but a few companies on off-quarter fiscal years are just now getting around to reporting their quarterly results. RPM International is about to release its quarterly earnings report. The key to making smart investment decisions with stocks releasing their quarterly reports is to anticipate how they’ll do before they announce results, leaving you fully prepared to respond quickly to whatever inevitable surprises arise. That way, you’ll be less likely to make an uninformed knee-jerk reaction to news that turns out to be exactly the wrong move.
Companies that stand to benefit from a rising housing market have been increasingly popular lately, and RPM‘s extensive lineup of waterproofing and weatherproofing products for everything from driveways and wood decks to roofing sealants and caulk definitely qualifies it as a play on home ownership. Let’s take an early look at what’s been happening with RPM International over the past quarter and what we’re likely to see in its quarterly report on Thursday.
Stats on RPM International
|
Analyst EPS Estimate |
$0.06 |
|
Change From Year-Ago EPS |
20% |
|
Revenue Estimate |
$841.4 million |
|
Change From Year-Ago Revenue |
8.8% |
|
Earnings Beats in Past 4 Quarters |
2 |
Source: Yahoo! Finance.
Will RPM International be loss-proof this quarter?
Analysts have gotten a little less optimistic about RPM‘s prospects in recent months, as they’ve reduced their earnings-per-share calls by a penny for the most recent quarter and by $0.03 for the full 2013 fiscal year. The stock has posted a modest advance of about 6% so far this year, but that’s well below the overall market‘s performance, let alone that of some high-flying housing-related stocks.
RPM has benefited greatly from better prospects in the housing industry. As results from the homebuilding sector have gotten stronger, demand for RPM’s sealants and coatings has followed suit, sending share price higher. In addition to providing consumer products like Rust-O-Leum and DAP, the company also provides a wide variety of materials for industrial companies and commercial builders. The industrial segment makes up two-thirds of RPM‘s overall business.
But RPM has plenty of competition to deal with. Both Sherwin-Williams and PPG Industries dwarf RPM in size, although both of those companies are much more focused on the paint sector, which has its own specific industry dynamics. Nevertheless, just as PPG and Sherwin-Williams have had to deal with the ups and downs of the titanium dioxide market — a key pigment for paint production — RPM also mentions it as a key driver of its raw-materials costs, in addition to certain resins and solvents related to other products.
In its quarterly report, watch for RPM to discuss why its revenue growth has lagged behind that of PPG and Sherwin-Williams over the past year. Without a satisfactory explanation, it’ll be hard to justify paying 25 times trailing earnings for the stock, even with a …read more
Source: FULL ARTICLE at DailyFinance
I’ve recently spent some time setting up TLS/SSL encryption (SSSD won’t send a password in clear text when an user will try to authenticate against your LDAP server) on an OpenLDAP istance and as you may know the only way for doing that on a RHEL / CentOS environment is dealing with a Mozilla NSS database (which is, in fact, a SQLite database). I’ve been reading all the man pages of the relevant tools available to manipulate Mozilla NSS databases and I thought I would have shared the whole procedure and commands I used to achieve my goal. Even if you aren’t running an RPM based system you can opt to use a Mozilla NSS database to store your certificates as your preferred setup.
Re-create *.db files
mkdir /etc/openldap/certs
modutil -create -dbdir /etc/openldap/certs
Setup a CA Certificate
certutil -d /etc/openldap/certs -A -n “My CA Certificate” -t TCu,Cu,Tuw -a -i /etc/openldap/cacerts/ca.pem
where ca.pem should be your CA’s certificate file.
Remove the password from the Database
modutil -dbdir /etc/openldap/certs -changepw ‘NSS Certificate DB’
Creates the .p12 file and imports it on the Database
openssl pkcs12 -inkey domain.org.key -in domain.org.crt -export -out domain.org.p12 -nodes -name ‘LDAP-Certificate’
pk12util -i domain.org.p12 -d /etc/openldap/certs
where domain.org.key and domain.org.crt are the names of the certificates you previously created at your CA’s website.
List all the certificates on the database and make sure all the informations are correct
certutil -d /etc/openldap/certs -L
Configure /etc/openldap/slapd.conf and make sure the TLSCACertificatePath points to your Mozilla NSS database
TLSCACertificateFile /etc/openldap/cacerts/ca.pem
TLSCACertificatePath /etc/openldap/certs/
TLSCertificateFile LDAP-Certificate
Modify the trust flags if necessary
certutil -d /etc/openldap/certs -M -n “My CA Certificate” -t “TCu,Cu,Tuw”
Delete a certificate from the database
certutil -d /etc/openldap/certs -D -n “My LDAP Certificate”
On /etc/openldap/ldap.conf
BASE dc=domain,dc=org
URI ldaps://ldap.domain.orgTLS_CACERTDIR /etc/openldap/certs
TLS_REQCERT allow
On /etc/sssd/sssd.conf
ldap_tls_reqcert = allow
ldap_uri = ldaps://ldap.domain.org
ldapsearch -x -b 'dc=domain,dc=org' -D "cn=Manager,dc=domain,dc=org" '(objectclass=*)' -H ldaps://ldap.domain.org -W -v
Troubleshooting
If anything goes wrong you can run SLAPD with the following args for its debug mode:
/usr/sbin/slapd -d 256 -f /etc/openldap/slapd.conf -h “ldaps:/// ldap:///”
By zigizag
i am kind of new here and i have a few quesions:
1.on my Redhat OS where are all of the RPM located? where is Wireshark located?
2. does any body has a link to downloading Wireshark for linux Redhat 2.6?
3.I didnt find instructions how to install it on redhat, jow to install RPM inluding Makefile
hope to get answers..
Thanks
…read more
Source: FULL ARTICLE at The UNIX and Linux Forums
By Eric Bleeker, CFA, The Motley Fool
Filed under: Investing
In the following video, senior technology analyst Eric Bleeker looks at one of the most struggling areas in technology: mobile advertising.
Three years ago, as mobile was exploding, everyone wanted a piece of the market. After all, soon everyone would soon have a smartphone in his pocket, how could this not be the next tech gold rush? Google bought AdMob and Apple bought Quattro and created its iAd agency.
Yet enthusiasm for mobile advertising has waned. Two companies that specialize in the field, Velti and Millennial Media , are two of the worst performing stocks across the past year. Overall, smartphone advertising rates stand at an RPM — the price paid per thousand page impressions — of $1.31, according to eMarketer, which is well below the $4.70 average on desktops. Apple quickly moved the minimum price for iAd campaigns from $1 million down to $100,000.
Eric notes that all hope isn’t lost. While mobile advertising in apps and banner ads might be in trouble, mobile search advertising could be in comparable good shape. Google recently launched its Enhanced Campaigns program, which will spur more adoption of mobile search advertising.
Yet, in the end, Eric notes that the rise and fall of mobile ad companies is a warning sign. Trends in technology are difficult to predict. A can’t-miss technology like mobile and smartphones sparks as many losing ideas around it as it does winning ones.
To see his full thoughts, watch the video.
After its recent sell-off, is there reason to sell Apple, or is this an opportunity to be greedy and buy more when others are fearful? The Motley Fool’s new research report on the company gives you the right information so you can make a decision whether Apple has a place in your portfolio. Best of all, it comes with continuing updates and exclusive reports. To get started, just click here now.
var FoolAnalyticsData = FoolAnalyticsData || []; FoolAnalyticsData.push({ eventType: “TickerReportPitch”, contentByline: “Eric Bleeker, CFA“, contentId: “cms.23554”, …read more
Source: FULL ARTICLE at DailyFinance
By kamauv234
$ ls -l /u01/app
-rw-r--r-- 1 appusr appdba 4 Feb 20 21:35 test
-rw-r--r-- 1 appusr appdba 4 Feb 20 21:35 test1
-rw-r--r-- 1 appusr appdba 4 Feb 20 21:35 test
– I want to make it as a rpm package for all the files under this folder (/u01/app)
– Make it as a relocatable package (it can be install in different directory)
– Sometimes appusr (user) group can be different in some of the servers (not appdba). So that time it will get the appusr group and change the permission accordingly
Pls share the spec file and provide your suggestions. Thanks !
Regards
Kannan
…read more
Source: FULL ARTICLE at The UNIX and Linux Forums
By mastansaheb
I would like to know how to build an RPM package. Could you please let me know how to do it with the procedure.
Regards,
Mastan
…read more
Source: FULL ARTICLE at The UNIX and Linux Forums