answersLogoWhite

0

Iron is a tradition metal with two oxidation states, so two ionic compounds could exist. ( do not know if they really do )

FeCl2 = ferrous chloride, or called in the modern sense, Iron(II)chloride

and FeCl3 = ferric chloride, or in the modern sense, Iron(III)chloride

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Chemistry
Related Questions

Do vampires exixts?

Yes, I am one. Seriously, I like blood.


Could you use average number of neutrons instead of atomic number to build up a periodic table good as that of mendeleyev?

it won't be possible since some elements exixts as isotopes


How do advertisement differ from other kinds of texts?

an advertisement pushes one to want to buy their product and/or take notice that it exixts. literature besides ads can be for entertainment purposes, learning how to speak another language, to many more uses.


Is a alein real?

Some people thinks that aliens are real but personally i don't think they exist because in our solar system there are 8 planets. Some of them are very hot and some of them are very cold and some planet like Mars has no sutaible condition for the growth of organism and plants so there life is not possible. That means aliens do not exixts and its just a made up stories for kids just like mermaids


Dose life exixts on other planets?

In my own words, I can say that there is at least one plantet in alot of solor systems. In every Galaxy, there are about 70 trillion stars. each one is a solar system. In the entire Outer space, We cannot even begin to think how many galaxies there are in the universe. How many planets does that make? I would think there has to be at least a cell somwhere in that. Regaurding harsh enviornments? Things can evolve to cope with the enviornment, and there are probaly planets out there like earth, that could support creatures like on our planet.


What to say when a job application ask about your relevant experience?

Here is the perfect place to list any voluteer work you may have done. If you have helped out at your school for sporting events, or even just babysat your neighbor's poodle, any job experience is helpful. Just because your didn't receive a formal paycheck, doesn't mean it doesn't count as work experience. Place the emphasis on the things that you have accomplished. When you give a clear road map, an employer can see a perfect match of skills and responsibilities if it exixts, or can make the bridge to what you could do.


How do you get to a fairy wonderland?

you go into space then go 30miles and turn right and then go 15 miles and turn left. five minutes later you are there! (you can only see it if you are a fairy though...) glad i helped! :)


How do you join a Linux computer to a domain group?

First, make sure kerberos is installed: # rpm -qa | grep krb this should return at least 3 packages: krb5-devel, krb5-libs and krb5-workstation Next, make sure the ldap development libraries are installed: # rpm -qa | grep ldap-devel If either of these returns nothing, you'll need to install them - which you can do from the Redhat CD. make sure there's an entry for your active directory DC in your /etc/hosts file: 1.2.3.4 addc.example.com addc Next, edit your /etc/krb5.conf to match your site. Everything should be fairly self-explanitory - and everything is case sensitive. Do not comment this file. Once you've gotten to this point, you can try: # /usr/kerberos/bin/kinit user@DOMAIN.COM replacing *user* with a real user and DOMAIN.COM with a real domain (which must be UPPERCASE). If things are working, you'll be prompted for a password. If you enter the correct password, you'll come back to a bash shell, if not, you should be presented with: "kinit(v5): Preauthentication failed while getting initial credentials" or some such. Note: If the clock time on the Linux machine is more than 5 minutes off from the time on the windows machine no ticket information will work. There are three wys to deal with this: 1. Have the Linux server act as a network time server, with the windows machine as a client 2. Have the windows machine act as a time server for the Linux client 3. Make both systems pull the time from the same 3rd server ( some are listed here - http://ntp.isc.org/bin/view/Servers/NTPPoolServers ) Next, uninstall samba if it's installed: # rpm -e samba get the latest version of samba: $ wget "http://us1.samba.org/samba/ftp/samba-latest.tar.gz" things to do { 01.$ tar -zxvf samba*.tar.gz 02. 03.$ CD samba-3.0.13 04. 05.$ ./configure --prefix=/usr/local/samba --with-ldap --with-ads --with-krb5 --with-pam --with-winbind 06. 07.# make && make install } In your smb.conf: netbios name = LINUX_SERVER_NAME realm = DOMAIN.COM ads server = 123.123.123.123 security = ADS encrypt passwords = yes start samba: # /etc/RC.d/init.d/smb start To add the Linux computer to the AD, you need to log into the DC and add it as a user with such privledges, so (from the Linux system): # /usr/local/samba/bin/net ads join -U Administrator it should prompt you for Administrator's password. Note that Administrator should be a user with the right to add a computer to the AD. you should see something like: Joined 'LINUX_MACHINE_NAME' to realm 'DOMAIN.COM' To verify this worked, go to the windows DC and open Active Directory->Users and Computers and look for your Linux machine to be listed there. That's all you absolutely need to connect to the AD. If you want to map users to the AD (which is probably why you're doing this), open /etc/nsswitch.conf and change this: passwd: files shadow: files group: files to this: passwd: compat winbind shadow: compat group: compat winbind start the winbind daemon: # winbindd make sure it's running: # PS -ae | grep winbindd if nothing gets returned, you probably didn't configure samba with kerberos and ldap support. If it shows winbindd running, you're all set. To make sure everything starts on reboot: open /etc/RC.d/init.d/smb and /etc/RC.d/init.d/winbindd and make sure the line: # chkconfig: 345 NN NN exixts (NN will be different numbers pertaining to priority), it should be on line 3 of both files. if these lines don't exist, add them. If they read: # chkconfig: - NN NN change the - to 345 save and close those files and run chkconfig: # chkconfig smb reset # chkconfig winbindd reset you can check the runlevels they will start at with # chkconfig smb --list # chkconfig winbindd --list in your smb.conf [global] section: (for name resolution) Code: wins support = Yes name resolve order = wins lmhosts hosts bcast wins server = wins_server_ip_address 01. wins support = Yes 02. name resolve order = wins lmhosts hosts bcast 03. wins server = wins_server_ip_address