Debian :: Can't Get Basic Apps

Jun 2, 2011

I'm trying to get compiz setup but it is not having any affect at all. I installed it and went to the synaptic system manager and added all the compiz plugins that were there. I restarted several times before and after going to the synaptic system manager. It said installed successfully, however it has no effect so it isn't "on" whatsoever. I have watched ..... tutorials on how to set it up. It looked easy enough but did not work for me. I have tried commands from tutorials but I don't know enough or how to edit folder contents. I think they were old tutorials anyways, I am running the newest squeeze debian distro. The 3d desktop was one reason I wanted to try linux. If I can't get the basic apps like this to work then there is no reason for me to use linux.

View 14 Replies


ADVERTISEMENT

Debian :: Unable To Install Proftpd-basic?

Sep 7, 2011

I am unable to install proftpd-basic:

The following NEW packages will be installed:

proftpd-basic{a}
The following partially installed packages will be configured:
proftpd proftpd-mod-ldap proftpd-mod-mysql proftpd-mod-pgsql
0 packages upgraded, 1 newly installed, 0 to remove and 13 not upgraded.

[Code].....

View 1 Replies View Related

Debian :: How To Use IPtables - Basic Firewall Setup

May 16, 2010

Recently I have been working on iptables and trying to understand how to use it. Here's a little script I have written to setup a basic firewall for myself:

Code:
#!/bin/bash
if [ `id -u` -ne 0 ]; then
echo "You need root privilege"
exit 1
fi

PROG=/sbin/iptables
$PROG -F
function sethttp {
echo "Opening http port..."
$PROG -A INPUT -p tcp --dport 80 -j ACCEPT
}

function sethttps {
echo "Opening https port..."
$PROG -A INPUT -p tcp --dport 443 -j ACCEPT
}

function settorrent {
echo "Opening torrent port..."
$PROG -A INPUT -p tcp --dport 52413 -j ACCEPT
}

while getopts "hst" option; do
case "$option" in
h) sethttp;;
s) sethttps;;
t) settorrent;;
*) echo "DOH!"
esac
done

$PROG -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
$PROG -A OUTPUT -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
$PROG -A INPUT -i lo -j ACCEPT
$PROG -A OUTPUT -o lo -j ACCEPT
$PROG -A INPUT -j DROP
$PROG -A FORWARD -j REJECT
echo "Done setting up the firewall! Enjoy :)"
exit 0

OK, this can take 3 arguments that open ports 80, 443 and 52413. And at the end, some default rules are applied. But here's the thing I don't understand:
if I don't give the argument for port 80, I can still view web pages... and also, when I remove the line:

Code:
$PROG -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

Whether I say it to open port 80 or not, I can't view any web pages.

View 1 Replies View Related

Debian :: No Graphical Interface After Power Mac G4 Basic Installation

Mar 2, 2011

I made a basic installation of Debian on my Power Mac G4. It worked well, but now, when I start up, after introducing my password, I have something like this

myname@debian:~$

What shall I do now? I hoped for a graphical interface...

View 3 Replies View Related

Debian Multimedia :: Basic Networking - Referring To Computers By Name

May 16, 2011

Sorry if this is a dumb question, there's a lot about networking that I don't get yet. I've got two computers using the same wireless router. They both get their IP addresses via DHCP from the router (I assume). If I want to connect from one machine to another, I can use the IP address (which works), but it's a pain checking what the IP address is, I guess it depends on which one connects first? So it might work today but tomorrow the IP addresses are reversed and the same command wouldn't work.

What I'd like to do is just refer to the other computer by name, but of course I haven't got a DNS server just for these two computers, and I don't think the router can do it (can it?) so is there a way to do it? Is it really just a case of switching off DHCP and giving each computer a fixed and unique IP address, and then entering some name in the hosts file for the two computers? Although then there's nothing to guarantee that the name in the hosts file actually matches the hostname of the computer at that IP I suppose.

View 5 Replies View Related

Debian Hardware :: Basic Optical Mouse Support?

Feb 5, 2011

Alright, on my desktops I have always used a Microsoft basic USB optical mouse, as well as on my laptop. I recently bought a pack of three keyboards and three mice, and Squeeze hates the mice. Below is the connection output from both mice. The new mice will work for about a minute, disconnect, then reconnect. The older v1.10 mouse works flawlessly.

New Mouse:
[ 2852.268048] usb 2-1: new low speed USB device using ohci_hcd and address 4
[ 2852.476163] usb 2-1: New USB device found, idVendor=045e, idProduct=0084

[code]....

View 14 Replies View Related

General :: Debian Without Basic Commands: 'No Such File Or Directory'?

Nov 10, 2010

My new VPS is running Debian 5.0 (bash 3.2.29), and some commands seems to be missing. For example the ps command is not here, neither is ls (but dir works). Is there a package missing or what's the deal?

:~# type ps
ps is hashed (/bin/ps)
:~# ps

[code]....

View 1 Replies View Related

Debian :: OpenVPN And Loose The Basic Internet Connection In The Browser

Sep 6, 2011

I have succesflly installed OpenVPN server and clients(followed tuts). Everything is great, however when I have openvpn connection established on the clients I loose the basic internet connection in the browser, but my clients can see the vpn server(even I can ssh to the server via the openvpn client ip). I am guessing that all the traffic is routed through the server. I am just not knowledgable enough with routing , iptables and internet sharing. I am using tun based setup on OpenVPN. I am just not even sure if this is a server or a client issue, sorry for ignorance and illeteracy.

View 5 Replies View Related

Debian Multimedia :: Using Basic Functions Freezes Nautilus And Desktop

Jul 10, 2015

By pressing 'properties' on a folder it freezes and I have to do killall nautilus && nautilus to get it working again. I have found no fix when googling (saying some packages that isn't installed is the problem).

It just takes a really long time to load based on the CPU usage.

View 10 Replies View Related

Debian Multimedia :: Lower Level Way To Change Basic X Cursor?

May 9, 2010

I have a minimal debian install, with not much more than enough to run scrotwm, I want to change the basic arrow cursor to a png I have. Is there a simpler lower level way of achieving this without having to install and modify an existing cursor theme. I installed x11-apps just to get xcursorgen... though idk if this has been an essential step or not. Anyway, I have run it on my arrow.png/arrow.cursor to create a "default" cursor file... though am lost as to where to go from there. I have no idea where the existing default cursor is located, though i suspect it's a font cursor not a icon cursor...

View 1 Replies View Related

Debian Multimedia :: Basic Qt App Doesn't Redraw Window Properly

Jan 25, 2011

When I run it, the window shows up but Qt doesn't draw in the background. I end up with phantoms from windows behind it: URL...The window will draw the background correctly when I resize it -- MOST of the time. And sometimes there will be a noticeable delay between resizing and drawing in the window.Am I missing some libraries? Is this a bug? Maybe there's something else I can look up to find a solution?

I'm running sid, my window manager is fluxbox, and my video card is a GeForce FX Go5200 64M.I should note that this works perfectly well on another computer I have that's running sid as well.

View 2 Replies View Related

Software :: Basic Qt App Doesn't Redraw Window Properly (debian)?

Jan 24, 2011

I've compiled a basic Qt app as given in this tutorial: [URL]... When I run it, the window shows up but Qt doesn't draw in the background. I end up with phantoms from windows behind it: [URL]..The window will draw the background correctly when I resize it -- MOST of the time. And sometimes there will be a noticeable delay between resizing and drawing in the window.

Am I missing some libraries? Is this a bug? Maybe there's something else I can look up to find a solution?I'm running Debian sid, my window manager is fluxbox, and my video card is a GeForce FX Go5200 64M. I should note that this works perfectly well on another computer I have that's running Debian sid as well.

View 4 Replies View Related

Debian :: Cannot Change Back To Basic Blue Grub Boot Splash?

Dec 17, 2010

I get the new boot splash with the nice little rocket and all but I seriously dislike it. While I don't stare at my computer as it boots, I do happen to see it from time to time. Unfortunately, I always see this new little rocket and I wonder where my traditional Debian blue with the swirl went. Yes, I know I am using Grub-Pc now, and I have tried to edit my /etc/grub.d file by renaming the wallpaper line to my preference.

But all my config file sees is "background-grub.png" which is the little rocket ship. So, I give. What is the secret code to unlock my grub config file or do I seriously have to muck around with Plymouth in order to have a choice in the matter? Just for those of you who contemplate counseling me on better time management instead of wasting my precious time over such a silly little thing, I agree. Not to mention that I use Debian because I like to build my system.

View 7 Replies View Related

Ubuntu :: Hidden Mimized Apps \ Reach Apps That Minimized Them Self And Are Not Shown In The Top Menu?

Apr 30, 2011

Some minimized apps no longer appear in the top menu and by that are no longer accessible.For example firefox with the minimize addon or Jungel Disk backup service.How can I reach apps that minimized them self and are not shown in the top menu?

View 2 Replies View Related

Debian :: Using KDE Apps In GNOME?

May 24, 2011

it was difficult for me to get it set up. So, when Squeeze became the stable release, I strayed. Tried Ubuntu, Mandriva, PCLOS, Mepis, both KDE and Gnome, and after using Lenny for several months, they all sucked. So I'm back, and although it took me several hours, over a few days, and 50 searches, I have Squeeze set up just how I want. I love how fast and stable it is!!

I've become a big fan of Gnome over the past year, because of how simple, fast and stable it is. But, there are a few KDE apps I prefer over the ones available for Gnome. I want to install K3b, KTorrent, digiKam/showFoto, and probably Amarok (although I haven't given Rythembox a fair chance). I realize this will install the KDE base, but other than the space taken up, is there any disadvantage to doing this? If there's a chance it will affect the speed and stability of the system, I'll learn to live without them.

Is there a way to extract the MD5 SUM from a .iso I download in Gnome?? K3b does it automatically before the burn. Does Brasero do this and I'm just missing it?

I've tried using Transmission a few times before to download torrents, but never with success, yet with KTorrent, I just click on the file and it starts downloading it.

View 8 Replies View Related

Debian :: Compiling The Apps For I686?

Dec 21, 2010

If I wanted to avoid installing certain i386 apps from the repository, could I somehow compile my own (generic compiling, or for deb packages) with an i686 architecture in mind?Would this be congruent with the rest of the Debian OS, or would the extra instructions cause instability (if even possible)?

View 14 Replies View Related

Debian :: Adobe Air Apps Cannot Be Installed In Sid

Jul 7, 2010

I have read this simple instruction to get me tweetdeck into my desktop computer (AMD Athlon X2, 2GB ram, 160gb HDD - Debian SID)[URL]

I'm not sure what happened but installing Adobe Air in Debian is like installing in Windows XP -- I used the .bin file instead of the .deb because the .deb say's Adobe Air is 32 bit application.

So it is installed (sucessful or not I still don't know) -=- I go to tweetdeck site and got to its desktop page where there should be an install button -- however, there aren't any or it wont show -- it partially show like a running circle but it's not running. Then when I click on it -- it disappears.

I tried installing other air app like livebrush but the same -- the button is not shown. My Sid is updated as of now. I also have google chrome browser -- the behavior is the same as with iceweasel v3.5.10

View 10 Replies View Related

Debian :: Running Too Many Apps On My DockStar?

Feb 4, 2011

What are the ways to check the CPU/memory utilization on my headless torrent box on Seagate DockStar? Besides rtorrent and sabnzbd, I also have Asterisk running on it for occasional telephone calls.

View 1 Replies View Related

Debian Configuration :: How To Troobleshoot Apps

Mar 7, 2011

actually i got some apps doesn't working, i need to know where the error logs are stored i'm using gome as desktop environement, those apps are: gcompris and controlaula

View 7 Replies View Related

Debian Multimedia :: Get 'no Device' When Trying To Use TV Apps

Apr 23, 2011

I'm having a problem getting a winTV card working. Looks like the card installs correctly and I know the card works ok. I get "no device" when trying to use TV apps (kdetv, tvtime, xawtv). They look for the device at video0 but mine gets configured as video1. How can I change that? I have tried using ivtv-ctl -d /dev/video1 to change the device but that didn't help.

View 2 Replies View Related

Debian :: No Sound In Games And Apps

Mar 8, 2010

I installed Debian lenny amd64 a couple days ago and I have only got a few things figured out thus far. I got libdvdcss, and adobe flash along with some neat little games and apps. Well I had no sound at all because I couldn't get my audigy ls working with lenny so I'm useing my onboard sound (a realtek). I changed all my sound options to ALC 880 Analog now I have sound for movies and mp3's but not in games or on the web (ie ....., farmville).

View 4 Replies View Related

Debian :: Apps Shut Down Mysteriously ?

Apr 23, 2009

Running Lenny in my plain vanilla x86 box since Lenny went final. No video card. System is completely up to date with the 26-2 kernel. All apps are Deb stable from repos.

chkrootkit, rkhunter, and clamav have all been run within the last 24 hours (clean). Firestarter is the firewall.

I left the box with about 10 apps running over all 4 virtual desktops (KDE). Came back in a couple of hours to find all apps closed except Gkrellm. Boinc, which had been dormant for lack of work, had gotten some jobs and was running in background. All apps reopened normally except Iceweasel did show the "closed unexpectedly" notification. I don't use a screensaver.

System did not shutdown and auto reboot. Uptime clock and syslog had chugged along right through it. Syslog seemed normal except for the exerpts below that looked curious to me.

View 3 Replies View Related

Debian :: Lenny Freezes With Certain Apps?

Jan 25, 2010

lenny freezes 100%, ie only help is to turn off power, reboot and fsck.this happens often with firefox loading a pdf-link. Firefox 3.5.7 has newest nppdf.so, libjavaplugin and libflashplayer.Where do i look first? which log files? I have 2Gb main mem.

View 6 Replies View Related

Debian :: Log Off/log On As Different User Breaks X Apps Under 5.0.1?

Jun 26, 2009

I've just installed Debian 5.0.1 (i386; network install) and I've run into a bizarre issue that I have no idea how to troubleshoot. If I log on as (e.g.) User1, log off, and then try to log on again as User2, X-based (i.e. not terminal) software will fail to load until I reboot. After logging on as User2, all X software (including the Gnome interface) will display its interface for a fraction of a second before vanishing from the screen and the task bar. One time the Gnome interface wouldn't load after log-on: the taskbar and menubar repeatedly flashed on and off the screen as Gnome repeatedly tried and failed to load.

View 1 Replies View Related

Debian :: Upgraded Kernel - Now Can't Use Certain Apps

Aug 25, 2010

I recently upgraded my Debian kernel to 2.6.35 via backports and reinstalled my graphic driver. But when I try to use certain apps, it just sits there in the taskbar trying to load for a couple minutes, then automatically closes itself. Specifically I've noticed the nvidia x-server menu and open office doing this, while they both worked fine before I upgraded the kernel. some apps will do this, while others will work fine.

View 3 Replies View Related

Debian :: Characters Corrupted When Using Console Apps?

Jul 4, 2010

I'm having a problem with getting the console to display special characters. I can type special characters in on the command line but they arent outputted properly when using something like aptitude or man. What I find strange is that in X the same programs work fine.

Heres the locale settings:
LANG=en_GB.UTF-8
LC_CTYPE="en_GB.UTF-8"
LC_NUMERIC="en_GB.UTF-8"

[Code].....

Unfortunately I dont know how to find the font settings.

View 4 Replies View Related

Debian :: Failed To Install Apps On Testing?

Sep 10, 2011

I have tried to install some applications on my Debian Testing but I've got this common error after fetching packages from internet:

dpkg: warning: 'ldconfig' not found in PATH or not executable.
dpkg: warning: 'start-stop-daemon' not found in PATH or not executable.
dpkg: error: 2 expected programs not found in PATH or not executable.
Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin.
E: Sub-process /usr/bin/dpkg returned an error code (2)

View 6 Replies View Related

Debian :: KDE - Removing Unwanted Apps Safely?

Dec 1, 2010

I've just installed Squeeze with KDE. I was wondering what is the best way to remove some unwanted apps without breaking everything (I want to get rid of Kopete and a few other apps like Dragon Player as I don't use them)?
I tried to: apt-get remove kopete
but it said it wanted to remove a whole bunch of other stuff as well. (I'm a recent Fedora convert).

View 2 Replies View Related

Debian Multimedia :: Qt Apps Crash / No UI Controls

Nov 25, 2015

Qt apps like vlc, kolourpaint, qbittorrent are missing the windows controls like menus. Smplayer crash on opening a video(any format). I'm using mate with marco wm, I also tried openbox but is the same.

View 1 Replies View Related

Debian Hardware :: ALSA - No Sound In Certain Apps

Nov 15, 2015

So I've got a new system on which I had to re-install Debian, and I've been trying to fix the sound today, but it doesn't seem to work... I've kept the same ALSA configuration (except a minor adjustment to the card number as this system appears to have two cards instead of one), but it doesn't seem to work as expected. I got this weird error while running an app that uses ALSA:

Code: Select allALSA sound driver initializing...
ALSA lib pcm_dmix.c:1024:(snd_pcm_dmix_open) unable to open slave
    --> (Device: default)...Failed: Operation not permitted

In VLC it works fine, provided that I manually choose the right device under Audio -> Audio Device.here's my /etc/asound.conf:

Code: Select alldefaults.ctl.card 1

pcm.dsp {
    type plug
    slave.pcm "dmix"

[code]....

View 12 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved