Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 198 online users. » 0 Member(s) | 197 Guest(s) Bing
|
Latest Threads |
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 141
|
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 75,671
|
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 31,672
|
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,670
|
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,081
|
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 40,690
|
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 104,928
|
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 45,427
|
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 35,793
|
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 40,326
|
|
|
Enlightenment E17 for FC6 |
Posted by: modernbob - 2007-03-01, 01:59 AM - Forum: Fedora Core Release 6
- Replies (2)
|
 |
I recently starting exploring different windows managers and wanted to try Enlightenment on fc6. While looking for information about E16 I came across the following website that has a yum repo for E17 which is updated weekly. Check it out it's pretty neat.
[/url]http://sps.nus.edu.sg/~didierbe/index.html
To aquire Enlightenment E17 for FC6
Download and run the following RPM to install the yum repo:
[url=http://sps.nus.edu.sg/~didierbe/share/dc-f....fc6.noarch.rpm]http://sps.nus.edu.sg/~didierbe/share/dc-f....fc6.noarch.rpm
Then open a terminal session and type: yum install enlightenment
Then log out of the current session you are in and log back in changing your session to Enlightenment!
Check out the links and other information on the main page. Also it's important to remember that this is not released yet although it has been in development for a while now.
[img]<___base_url___>/uploads/emoticons/default_rolleyes.gif[/img]
|
|
|
dual boot |
Posted by: jooman360 - 2007-02-28, 04:59 AM - Forum: Fedora 7
- Replies (6)
|
 |
i just got the latest version of fedora , i had xp installed and then installed fedora , and i installed the grub loader , but it
boots to windows every time. can any one explain to me how to get the grub loader to work. my mother board i pretty new
so it should work with the bios
|
|
|
how do I scp a file |
Posted by: anyweb - 2007-02-27, 01:52 PM - Forum: Remote Access
- Replies (4)
|
 |
first of all what is scp ?
here's a quote direct from the top of the command
Quote:SCP(1) BSD General Commands Manual SCP(1)
NAME
scp - secure copy (remote file copy program)
SYNOPSIS
scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]
[-l limit] [-o ssh_option] [-P port] [-S program]
[[user@]host1:]file1 [...] [[user@]host2:]file2
it's the same as cp (copy) except secure as you are doing it over an ssh connection. When you start an scp session to a target box, you will be prompted for the users ssh password, this is normal and signifys to you that this is a secure transfer.
here's the usage
Code: scp -prP port file user@ip:./
where port=the ssh listening port on the target linux box
where file=the file you want to send to the target
where user=the username you ssh in as
where ip=the ip address of the target box
where :./=the home directory of the user you are ssh'ing as
and
-p =Preserves modification times, access times, and modes from the original file.
-P=capital P for port as -p is already taken from above.
-r=recursively copy entire directories.
so a real example of the above would be like
Quote:[anyweb@localhost ~]$ scp -prP 1234 SC_160_P_ESD1.zip anyweb@213.64.12.34:./anyweb@213.64.12.34's password:
SC_160_P_ESD1.zip 100% 29MB 255.2KB/s 01:58
thanks to P38 and jY for the advice.
cheers
anyweb
|
|
|
Chroot'ing All Users |
Posted by: znx - 2007-02-26, 07:27 PM - Forum: Security and Firewalls
- Replies (2)
|
 |
When you begin to actively give shell access, one of the things you worry about is that user stealing information, running services you don't want or even cracking your system (why did you give them access!). Of course this is also provides security to your users, as if a user password is cracked, the cracker only has access to the chroot!
The goal of this mini-howto is to provide you a method to lock each use in their own personal chroot home. Hopefully by doing this we will reduce the risk of the users exploiting some mistake/hole in your system configuration.
So on to the installation of the chroot. It might be an idea to use a separate partition for the chroot build, the reason for this is that you can alter the mount options on the chroot enviroment for securing it even further.
Code: # mkdir -p /usr/chroot/system
Build the chroot environment in here (I will not go into this as it can be a long process). Ensure that you do not install SUID applications, as these can be used to exploit the system.
To allow the system to use one chroot environment for multiple users we need to use a clever automount trick (thanks to this page for this process!).
You will need autofs installed.
Code: # mkdir /usr/chroot/mount
Edit the /etc/auto.master
Code: /usr/chroot/mount /etc/auto.chroot
Then make the new chroot autofs configuration file /etc/auto.chroot:
Code: * -fstype=bind / /usr/chroot/system \
/home/& /home/& \
/tmp /home/&/tmp \
/dev/pts /dev/pts
If you decided to make the chroot on a different partition then you can do:
Code: /dev/CHROOTPARTITION /usr/chroot ext3 nosuid 1 2
Then you ensure that no SUID can be active, so even if a program has exploit it should allow the user to gain extra privileges.
Now you can setup how to chroot the user after they are logged in, the easiest method for this is mod_chroot.
Edit the file /etc/security/chroot.conf
Code: znx /usr/chroot/mount/znx
Now you just edit the corresponding PAM file for the service you want to chroot users.
Add into /etc/pam.d/sshd to enable this for sshd.
Code: session required pam_chroot.so
You should ensure that you copy the /etc/passwd, /etc/group and /etc/shadow regularly (like everytime you bother to update the chroot environment) to the chroot.
Code: cp /etc/passwd /etc/group /etc/shadow /usr/chroot/system/etc
Of course setting up a chroot is a complex process so I might be tempted into expanding this to demonstrate how!
Enjoy. Many thanks to [/url][url=http://sickadmin.wikiwall.org/OneChrootPerUser]http://sickadmin.wikiwall.org/OneChrootPerUser this site for the very cool technique!
|
|
|
Uninstalling Nvidia driver is Fedora Core 6 |
Posted by: abhishek77 - 2007-02-24, 07:40 PM - Forum: nVidia Problems
- Replies (5)
|
 |
I installed nvidia driver with the help of this link.
[/url][url=http://www.mjmwired.net/resources/mjm-fedora-fc6.html#nvidia]http://www.mjmwired.net/resources/mjm-fedora-fc6.html#nvidia
Now i have a problem. During startup process, the screen goes blank for a while and it then turns white, pink etc However also during startup, it does ask for any key to be pressed within a certain amount of time so on pressing a key it gives an option of OS on the system. It shows 2 linux installations, thats what i think it is. Selecting the top one causes the above problem, selecting the lower one works fine and loads the system. What could be the problem? is there a way to unistall it and then i test if this problem occurs again? I mean i want to check if it is the nvidia driver that is causing the problem.
Below is the code generated during installation. Any help would be appreciated.
Code: [root@x1-6-00-c0-9f-40-e0-ad ~]# rpm --import RPM-LIVNA-GPG-KEY
error: RPM-LIVNA-GPG-KEY: import read failed(-1).
[root@x1-6-00-c0-9f-40-e0-ad ~]# yum install kmod-nvidia
Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
core 100% |=========================| 1.1 kB 00:00
updates 100% |=========================| 1.2 kB 00:00
extras 100% |=========================| 1.1 kB 00:00
Reading repository metadata in from local files
Parsing package install arguments
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for kmod-nvidia to pack into transaction set.
kmod-nvidia-1.0.9746-1.2. 100% |=========================| 18 kB 00:00
---> Package kmod-nvidia.i686 0:1.0.9746-1.2.6.19_1.2911.fc6 set to be installed
--> Running transaction check
--> Processing Dependency: kernel-i686 = 2.6.19-1.2911.fc6 for package: kmod-nvidia
--> Processing Dependency: nvidia-kmod-common >= 1.0.9746 for package: kmod-nvidia
--> Restarting Dependency Resolution with new changes.
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for xorg-x11-drv-nvidia to pack into transaction set.
xorg-x11-drv-nvidia-1.0.9 100% |=========================| 34 kB 00:00
---> Package xorg-x11-drv-nvidia.i386 0:1.0.9746-7.lvn6 set to be updated
---> Downloading header for kernel to pack into transaction set.
ftp://ftp.software.umn.edu/linux/fedora/core/updates/6/i386/kernel-2.6.19-1.2911.fc6.i686.rpm: [Errno 4] IOError: [Errno ftp error] 421 There are too many connected users, please try later.
Trying other mirror.
kernel-2.6.19-1.2911.fc6. 100% |=========================| 216 kB 00:05
---> Package kernel.i686 0:2.6.19-1.2911.fc6 set to be installed
--> Running transaction check
--> Populating transaction set with selected packages. Please wait.
---> Package kernel.i686 0:2.6.18-1.2798.fc6 set to be erased
--> Running transaction check
Dependencies Resolved
=============================================================================
Package Arch Version Repository Size
=============================================================================
Installing:
kmod-nvidia i686 1.0.9746-1.2.6.19_1.2911.fc6 livna 2.3 M
Removing:
kernel i686 2.6.18-1.2798.fc6 installed 44 M
Installing for dependencies:
kernel i686 2.6.19-1.2911.fc6 updates 16 M
xorg-x11-drv-nvidia i386 1.0.9746-7.lvn6 livna 4.9 M
Transaction Summary
=============================================================================
Install 3 Package(s)
Update 0 Package(s)
Remove 1 Package(s)
Total download size: 24 M
Is this ok [y/N]: y
Downloading Packages:
(1/3): kmod-nvidia-1.0.97 100% |=========================| 2.3 MB 00:05
(2/3): xorg-x11-drv-nvidi 100% |=========================| 4.9 MB 00:10
(3/3): kernel-2.6.19-1.29 100% |=========================| 16 MB 05:14
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
Installing: kernel ######################### [1/4]
Cleanup : kernel ######################### [2/4]
Installing: kmod-nvidia ######################### [3/4]
Installing: xorg-x11-drv-nvidia ######################### [4/4]
FATAL: Module nvidia not found.
Removed: kernel.i686 0:2.6.18-1.2798.fc6
Installed: kmod-nvidia.i686 0:1.0.9746-1.2.6.19_1.2911.fc6
Dependency Installed: kernel.i686 0:2.6.19-1.2911.fc6 xorg-x11-drv-nvidia.i386 0:1.0.9746-7.lvn6
Complete!
[root@x1-6-00-c0-9f-40-e0-ad ~]#
|
|
|
FC6 + Tecra M1 != works |
Posted by: BigDog - 2007-02-24, 01:48 PM - Forum: Xorg Problems
- Replies (2)
|
 |
I'm trying to install Zod on a Toshiba Tecra M1, and everything goes fine until it boots after the installation. I get the little "X" when it starts to load, but then the screen just sits there and glows. No text, no logon, no nuthin', and it doesn't respond to anything I do.
Any ideas? I've tried everything I can think of, and have tried it three times this morning...
TIA,
-- BigDog
|
|
|
chcon operation failed |
Posted by: cloudclone - 2007-02-24, 05:27 AM - Forum: How Do I?
- No Replies
|
 |
when i try input command chcon -t textrel_shlib_t /usr/lib/codecs/drv*
it shows me many like
chcon: /usr/lib/codecs/drvc.so : operation not supported
all says operation not supported.
What can i do? thanks.
|
|
|
|